/* ══════════════════════════════════════════════════
   CONTENT PROTECTION
══════════════════════════════════════════════════ */
*,
*::before,
*::after {
  -webkit-user-select: none;
  -moz-user-select:    none;
  -ms-user-select:     none;
  user-select:         none;
}

/* Allow text selection only inside form inputs & textareas */
input, textarea, [contenteditable] {
  -webkit-user-select: text;
  user-select:         text;
}

/* Block long-press save / drag on all images */
img {
  -webkit-user-drag:   none;
  user-drag:           none;
  pointer-events:      none;
  -webkit-touch-callout: none; /* iOS long-press menu */
}

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #070707;
  --charcoal: #111111;
  --card:     #161616;
  --gold:     #C9A84C;
  --gold-lt:  #E8D49A;
  --gold-dk:  #8B6914;
  --white:    #F5F0E8;
  --muted:    #6B6559;
  --border:   rgba(201,168,76,0.18);
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); }

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

/* ── CUSTOM CURSOR ── */
#cursor, #cursor-dot {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#cursor {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), background 0.3s;
}
#cursor-dot { width: 5px; height: 5px; background: var(--gold); }
#cursor.hover { width: 60px; height: 60px; background: rgba(201,168,76,0.08); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.5s var(--ease), background 0.5s, transform 0.4s var(--ease);
}
nav.nav-hidden { transform: translateY(-100%); }
.nav-links { margin-left: auto; }
nav.scrolled {
  padding: 14px 60px;
  background: rgba(7,7,7,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav.solid {
  background: rgba(7,7,7,0.98);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.5));
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 11px 24px;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Free Quote Button — arrow style */
.nav-quote-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-lt); text-decoration: none; font-weight: 400;
  margin-left: 24px; white-space: nowrap;
  transition: color 0.3s;
}
.nav-quote-btn::after {
  content: '\2197\FE0E';
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}
.nav-quote-btn:hover { color: #fff; }
.nav-quote-btn:hover::after { transform: rotate(45deg); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--gold);
  transition: transform 0.4s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU BACKDROP ── */
.mobile-menu-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu-backdrop.open { display: block; opacity: 1; }

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  display: none; /* hidden on desktop, enabled by media query */
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: #0e0e0e;
  border-left: 1px solid rgba(201,168,76,0.12);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }

/* Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  flex-shrink: 0;
}
.mobile-menu-logo {
  height: 28px;
  width: auto;
  opacity: 0.9;
}
.mobile-menu-close {
  width: 32px; height: 32px;
  background: none;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s;
  flex-shrink: 0;
}
.mobile-menu-close:hover { border-color: var(--gold); }
.mobile-menu-close svg { width: 12px; height: 12px; stroke: var(--muted); stroke-width: 1.5; }

/* Nav links */
.mobile-nav-links {
  flex: 1;
  padding: 12px 0;
}
.mobile-menu a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  padding: 14px 28px;
  transition: color 0.25s, padding-left 0.25s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
  padding-left: 34px;
}
.mobile-menu a.mobile-link-gold {
  color: var(--gold);
  font-weight: 400;
}

/* Collections accordion */
.mobile-accordion { border-bottom: 1px solid rgba(255,255,255,0.04); }
.mobile-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  transition: color 0.25s;
  text-align: left;
}
.mobile-accordion-btn:hover { color: var(--gold); }
.mobile-accordion-arrow {
  width: 10px; height: 6px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(245,240,232,0.4);
}
.mobile-accordion-btn[aria-expanded="true"] .mobile-accordion-arrow { transform: rotate(180deg); }
.mobile-accordion-btn[aria-expanded="true"] { color: var(--gold); }
.mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-accordion-panel.open { max-height: 200px; }
.mobile-accordion-panel a {
  font-size: 12px !important;
  padding: 11px 28px 11px 42px !important;
  color: rgba(245,240,232,0.45) !important;
  letter-spacing: 0.14em !important;
  border-bottom: 1px solid rgba(255,255,255,0.03) !important;
}
.mobile-accordion-panel a:last-child { border-bottom: none !important; }
.mobile-accordion-panel a:hover { color: var(--gold) !important; padding-left: 48px !important; }

/* Footer row */
.mobile-menu-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mobile-theme-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
}
.mobile-theme-row:hover .mobile-theme-label { color: rgba(245,240,232,0.6); }
.mobile-theme-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  transition: color 0.25s;
}
.mobile-theme-btn { margin-left: auto !important; pointer-events: none; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.55;
  transition: transform 0.25s, opacity 0.25s;
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(2px);
  opacity: 1;
}
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(7,7,7,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-dropdown-panel::before {
  content: '';
  position: absolute; bottom: 100%; left: 0; right: 0;
  height: 22px;
}
.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
  display: block;
  padding: 13px 22px;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid var(--border);
  transition: color 0.25s, background 0.25s, padding-left 0.25s;
  white-space: nowrap;
  text-shadow: none;
}
.nav-dropdown-panel a:last-child { border-bottom: none; }
.nav-dropdown-panel a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.05);
  padding-left: 30px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 380px;
  display: flex; align-items: flex-end;
  padding: 0 60px 60px;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f0d08 0%, #111111 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.page-hero-line {
  position: absolute; top: 0; right: 160px; bottom: 0;
  width: 1px; background: var(--border);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.page-hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 30px; height: 1px; background: var(--gold);
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: #fff;
}
.page-hero-title em { font-style: italic; color: var(--gold-lt); }

/* ── SECTION BASE ── */
section { padding: 100px 60px; }
.section-tag {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.section-tag::before {
  content: ''; display: inline-block;
  width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold-lt); }

/* ── BUTTONS — Apple tinted glass style ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 16px;
  color: var(--gold-lt);
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: color 0.3s;
}
.btn-primary::after {
  content: '\2197\FE0E';
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}
.btn-primary:hover { color: #fff; }
.btn-primary:hover::after { transform: rotate(45deg); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color 0.3s;
}
.btn-ghost::after {
  content: '\2197\FE0E';
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.75);
  transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--gold-lt); }
.btn-ghost:hover::after { transform: rotate(45deg); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 16px;
  color: var(--gold-lt);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: color 0.3s;
}
.btn-outline::after {
  content: '\2197\FE0E';
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}
.btn-outline:hover { color: #fff; }
.btn-outline:hover::after { transform: rotate(45deg); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); }

.footer-inner {
  display: grid; grid-template-columns: 5fr 7fr;
  padding: 80px 60px; border-bottom: 1px solid var(--border);
}
.footer-left {
  padding-right: 80px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.footer-logo-main {
  height: 72px; width: auto; max-width: 100%;
  object-fit: contain; align-self: flex-start;
  opacity: 0.85; display: block; margin-bottom: 36px;
}
[data-theme="light"] .footer-logo-main { filter: brightness(0.15); }
.footer-eyebrow {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.footer-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--gold); }
.footer-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.2vw, 64px); font-weight: 300;
  line-height: 1.05; color: var(--white); flex: 1; margin-bottom: 44px;
}
.footer-headline em { font-style: italic; color: var(--gold-lt); }
.footer-left-img {
  width: 100%;
  max-width: 340px;
  margin-top: 0;
  margin-bottom: 36px;
  opacity: 0.88;
  border: 1px solid var(--border);
  align-self: flex-start;
  display: block;
}

.footer-cta-link {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  transition: gap 0.3s, color 0.3s;
  border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 5px;
  align-self: flex-start;
}
.footer-cta-link:hover { gap: 22px; color: var(--gold-lt); }

.footer-right { padding-left: 80px; display: flex; flex-direction: column; }
.footer-contact-block { display: flex; flex-direction: column; gap: 5px; margin-bottom: 28px; }
.footer-email {
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.footer-email:hover { color: var(--gold-lt); }
.footer-phone { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.footer-rule { height: 1px; background: var(--border); margin: 24px 0; }
.footer-row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; margin-bottom: 18px; }
.footer-row:last-child { margin-bottom: 0; }
.footer-row-label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); padding-top: 2px; }
.footer-row-content { font-size: 12px; color: rgba(245,240,232,0.55); line-height: 1.85; }
.footer-nav-links { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-links a { font-size: 12px; color: rgba(245,240,232,0.55); text-decoration: none; transition: color 0.3s; }
.footer-nav-links a:hover { color: var(--gold); }
.footer-social-links { display: flex; flex-direction: column; gap: 8px; }
.footer-social-links a { font-size: 12px; color: rgba(245,240,232,0.55); text-decoration: none; transition: color 0.3s; }
.footer-social-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px; gap: 40px;
}
.footer-bottom-copy { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; }
.footer-bottom-links { display: flex; justify-content: flex-end; gap: 24px; }
.footer-bottom-links a {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  padding: 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  appearance: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group select option { background: var(--card); }
.form-submit {
  background: none;
  border: none;
  outline: none;
  color: var(--gold-lt);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0;
  transition: color 0.3s;
  align-self: flex-start;
}
.form-submit::after {
  content: '\2197\FE0E';
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold);
  transition: transform 0.3s, border-color 0.3s;
}
.form-submit:hover { color: var(--white); }
.form-submit:hover::after { transform: rotate(45deg); border-color: rgba(201,168,76,0.7); }

/* Light theme */
[data-theme="light"] .form-submit { color: var(--gold) !important; }
[data-theme="light"] .form-submit::after { border-color: rgba(184,134,11,0.45) !important; color: var(--gold) !important; }
[data-theme="light"] .form-submit:hover { color: var(--gold-dk) !important; }
[data-theme="light"] .form-submit:hover::after { border-color: var(--gold) !important; }

/* ── STATS STRIP ── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 44px 60px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.03); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px; font-weight: 300;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }

/* ── CLIENT STRIP ── */
.clients-strip {
  border-bottom: 1px solid var(--border);
  padding: 48px 60px;
  display: flex; flex-direction: column; gap: 20px;
}
.clients-strip-label {
  font-size: 8px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--muted); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.clients-strip-label::before,
.clients-strip-label::after { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--border); }
.clients-logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: nowrap; gap: 0; width: 100%;
}
.client-logo-item {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.75; transition: opacity 0.3s;
  cursor: default; min-width: 0;
}
.client-logo-item:last-child { border-right: none; }
.client-logo-item:hover { opacity: 1; }
.client-logo-item:nth-child(3) img { filter: brightness(0.55); }
.client-logo-item:nth-child(3):hover img { filter: brightness(0.75); }

/* Light theme — remove all overlays/filters from client logos */
[data-theme="light"] .client-logo-item { opacity: 1; }
[data-theme="light"] .client-logo-item img { filter: none !important; }
[data-theme="light"] .client-logo-item:hover { opacity: 1; }
.client-logo-item img {
  width: auto; height: auto;
  max-height: 42px; max-width: 130px;
  object-fit: contain;
}
.client-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: var(--white); letter-spacing: 0.1em;
  white-space: nowrap;
}
@media(max-width:860px) {
  .clients-strip { padding: 36px 24px; }
  .clients-logos { flex-wrap: wrap; }
  .client-logo-item { flex: 0 0 33.33%; padding: 20px 12px; border-right: none; border-bottom: 1px solid var(--border); }
  .client-logo-item:nth-child(3n) { border-right: none; }
  .client-logo-item img { max-height: 52px; }
  .client-logo-text { font-size: 15px; }
}

/* ═══════════════════════════════════
   THEME TOGGLE BUTTON
═══════════════════════════════════ */
/* ── THEME TOGGLE — rotating celestial dial ── */
.theme-toggle {
  width: 30px; height: 30px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  background: none; padding: 0;
  margin-left: 20px; flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s;
}
.theme-toggle:hover { border-color: var(--gold); }
.tt-dial {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(to right, #f5f0e8 50%, #0a0a0a 50%);
  transition: transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.tt-dial::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.4);
  z-index: 1;
}
[data-theme="light"] .tt-dial { transform: rotate(180deg); }

/* ═══════════════════════════════════
   LIGHT THEME VARIABLES
═══════════════════════════════════ */
[data-theme="light"] {
  --black:    #F5F0E8;
  --charcoal: #EDE8DF;
  --card:     #E4DDD3;
  --white:    #1C1812;
  --muted:    #7A6E60;
  --border:   rgba(110, 80, 28, 0.18);
  --gold:     #B8860B;
  --gold-lt:  #C9960A;
  --gold-dk:  #8B6914;
}

/* Smooth theme transitions */
body { transition: background-color 0.35s ease, color 0.35s ease; }

/* ── LIGHT: NAV LINKS ── */
[data-theme="light"] .nav-links a {
  color: rgba(28, 24, 18, 0.72) !important;
  text-shadow: none !important;
}
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active { color: var(--gold) !important; }
[data-theme="light"] .nav-dropdown-toggle { color: rgba(28, 24, 18, 0.72) !important; }
[data-theme="light"] .nav-dropdown:hover .nav-dropdown-toggle,
[data-theme="light"] .nav-dropdown-toggle:hover { color: var(--gold) !important; }
[data-theme="light"] .nav-dropdown-panel a {
  color: rgba(28, 24, 18, 0.65) !important;
}
[data-theme="light"] .nav-dropdown-panel a:hover {
  color: var(--gold) !important;
  background: rgba(122, 85, 0, 0.06);
}

/* ── LIGHT: NAV ── */
[data-theme="light"] nav.scrolled,
[data-theme="light"] nav.solid {
  background: rgba(245, 240, 232, 0.97);
  border-bottom-color: rgba(110, 80, 28, 0.18);
}
[data-theme="light"] .mobile-menu {
  background: #f5f0e8;
  border-left-color: rgba(110,80,28,0.15);
}
[data-theme="light"] .mobile-menu-header { border-bottom-color: rgba(110,80,28,0.12); }
[data-theme="light"] .mobile-menu-footer { border-top-color: rgba(110,80,28,0.12); }
[data-theme="light"] .mobile-menu-close { border-color: rgba(110,80,28,0.25); }
[data-theme="light"] .mobile-menu-close svg { stroke: rgba(80,55,10,0.5); }
[data-theme="light"] .mobile-menu a { color: rgba(28, 24, 18, 0.7) !important; border-bottom-color: rgba(0,0,0,0.06) !important; }
[data-theme="light"] .mobile-menu a:hover { color: var(--gold) !important; }
[data-theme="light"] .mobile-accordion-btn { color: rgba(28,24,18,0.7) !important; }
[data-theme="light"] .mobile-accordion-btn:hover,
[data-theme="light"] .mobile-accordion-btn[aria-expanded="true"] { color: var(--gold) !important; }
[data-theme="light"] .mobile-accordion { border-bottom-color: rgba(0,0,0,0.06); }
[data-theme="light"] .mobile-accordion-arrow { color: rgba(28,24,18,0.35); }
[data-theme="light"] .mobile-accordion-panel a { color: rgba(28,24,18,0.5) !important; border-bottom-color: rgba(0,0,0,0.04) !important; }
[data-theme="light"] .mobile-accordion-panel a:hover { color: var(--gold) !important; }
[data-theme="light"] .mobile-theme-label { color: rgba(28, 24, 18, 0.35); }
[data-theme="light"] .mobile-theme-row:hover .mobile-theme-label { color: rgba(28,24,18,0.6); }
[data-theme="light"] .mobile-menu-backdrop { background: rgba(0,0,0,0.3); }
[data-theme="light"] .nav-dropdown-panel {
  background: rgba(242, 236, 226, 0.99);
}

/* ── LIGHT: BUTTONS ── */
[data-theme="light"] .btn-primary,
[data-theme="light"] .btn-outline,
[data-theme="light"] .nav-quote-btn { color: var(--gold) !important; }
[data-theme="light"] .btn-primary::after,
[data-theme="light"] .btn-outline::after,
[data-theme="light"] .nav-quote-btn::after { border-color: rgba(184,134,11,0.45) !important; color: var(--gold) !important; }
[data-theme="light"] .btn-primary:hover,
[data-theme="light"] .btn-outline:hover,
[data-theme="light"] .nav-quote-btn:hover { color: var(--gold-dk) !important; }
[data-theme="light"] .btn-primary:hover::after,
[data-theme="light"] .btn-outline:hover::after,
[data-theme="light"] .nav-quote-btn:hover::after { transform: rotate(45deg); border-color: var(--gold) !important; }
[data-theme="light"] .btn-ghost { color: var(--gold) !important; }
[data-theme="light"] .btn-ghost::after { border-color: rgba(184,134,11,0.4) !important; color: var(--gold) !important; }
[data-theme="light"] .btn-ghost:hover { color: var(--gold-dk) !important; }
[data-theme="light"] .btn-ghost:hover::after { transform: rotate(45deg); }

/* ── LIGHT: SCROLLBAR ── */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--charcoal); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── LIGHT: NOISE — softer on light ── */
[data-theme="light"] body::before { opacity: 0.12; }

/* ── LIGHT: CURSOR ── */
[data-theme="light"] #cursor { border-color: var(--gold); }
[data-theme="light"] #cursor-dot { background: var(--gold); }

/* ── LIGHT: LOGO ── */
[data-theme="light"] .nav-logo-img { filter: invert(1) brightness(0.25) !important; }
[data-theme="light"] .footer-bottom-brand img { filter: brightness(0.15); }
[data-theme="light"] .footer-nav-links a,
[data-theme="light"] .footer-social-links a,
[data-theme="light"] .footer-row-label,
[data-theme="light"] .footer-row-content { color: #111; }
[data-theme="light"] .footer-nav-links a:hover,
[data-theme="light"] .footer-social-links a:hover,
[data-theme="light"] .footer-email:hover { color: var(--gold); }

/* ── LIGHT: ASK THE DESIGNER — warm linen background ── */
[data-theme="light"] #askDesigner { background: #E8E1D8; }
[data-theme="light"] .ad-left { border-right-color: rgba(0,0,0,0.08); }
[data-theme="light"] .ad-right { background: transparent; }
[data-theme="light"] .ad-msg.assistant .ad-msg-bubble { background: rgba(0,0,0,0.04); color: #1C1812; border-left-color: var(--gold); }
[data-theme="light"] .ad-msg.user .ad-msg-bubble { background: rgba(184,134,11,0.2); color: #1C1812; }
[data-theme="light"] .ad-input-pill { background: rgba(255,255,255,0.6); border-color: rgba(184,134,11,0.3); }
[data-theme="light"] .ad-input { color: #1C1812; }
[data-theme="light"] .ad-input::placeholder { color: #7A6E60; }
[data-theme="light"] .ad-chat-input-bar { border-top-color: rgba(0,0,0,0.08); }
[data-theme="light"] .ad-typing-wrap { background: rgba(0,0,0,0.04); }
[data-theme="light"] .ad-suggestions span { background: rgba(0,0,0,0.02); border-left-color: rgba(184,134,11,0.2); }
[data-theme="light"] .ad-suggestions span:hover { background: rgba(184,134,11,0.08); border-left-color: var(--gold); color: #1C1812; }
[data-theme="light"] #services-preview {
  background: #E8E1D8;
}

/* ── LIGHT: CARD & ELEMENT HOVER OVERRIDES ── */
[data-theme="light"] .sp-card:hover { background: #D8D0C6; }
[data-theme="light"] .job-card:hover { background: #D8D0C6; border-top-color: var(--gold); }
[data-theme="light"] .service-card:hover { background: #D8D0C6; }
[data-theme="light"] .value-card { background: var(--card); }
[data-theme="light"] .trait-card:hover { border-top-color: var(--gold); }
[data-theme="light"] .product-card:hover { border-color: rgba(122,85,0,0.35); }
[data-theme="light"] .f-tab:hover,
[data-theme="light"] .f-tab.active { background: rgba(184,134,11,0.15); border-color: rgba(184,134,11,0.4); color: var(--gold); }
[data-theme="light"] .filter-btn:hover,
[data-theme="light"] .filter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }
[data-theme="light"] .cl-card:hover { border-color: rgba(122,85,0,0.4); }
[data-theme="light"] .portfolio-item:hover .p-arrow { background: rgba(255,255,255,0.85); color: var(--gold); }
[data-theme="light"] .upload-zone:hover { background: rgba(184,134,11,0.06); border-color: rgba(184,134,11,0.5); }
[data-theme="light"] .jm-offer-card:hover { border-left-color: var(--gold); }
[data-theme="light"] .footer-nav-links a:hover,
[data-theme="light"] .footer-social-links a:hover { color: var(--gold); }
[data-theme="light"] .ad-input {
  background: rgba(255,255,255,0.5);
  color: var(--white);
}
[data-theme="light"] .ad-result-inner {
  background: rgba(255,255,255,0.6);
}

/* ── LIGHT: WAITING STRIP ── */
[data-theme="light"] #waitingStrip {
  background: var(--charcoal);
  border-bottom-color: var(--border);
}

/* ── LIGHT: CTA BAND — identical to dark mode ── */
[data-theme="light"] #cta-band {
  background: url('images/home/Mainbanner2901.jpg') center/cover no-repeat;
}
[data-theme="light"] #cta-band::before {
  background: linear-gradient(135deg, rgba(10,9,7,0.75) 0%, rgba(10,9,7,0.6) 50%, rgba(10,9,7,0.75) 100%);
  opacity: 1;
}
[data-theme="light"] #cta-band .section-tag { color: rgba(201,168,76,0.7) !important; }
[data-theme="light"] #cta-band .section-tag::before { background: rgba(201,168,76,0.4) !important; }
[data-theme="light"] #cta-band .cta-band-title { color: #F5F0E8 !important; }
[data-theme="light"] #cta-band .cta-band-title em { color: #E8D49A !important; }
[data-theme="light"] #cta-band .cta-band-sub { color: rgba(245,240,232,0.55) !important; }
[data-theme="light"] #cta-band .btn-primary { color: var(--gold-lt) !important; }
[data-theme="light"] #cta-band .btn-primary::after { border-color: rgba(201,168,76,0.4) !important; color: var(--gold-lt) !important; }
[data-theme="light"] #cta-band .btn-primary:hover { color: #fff !important; }
[data-theme="light"] #cta-band .btn-primary:hover::after { border-color: rgba(201,168,76,0.7) !important; }

/* ── LIGHT: HERO + DARK-SECTION BUTTONS — restore original gold-on-dark look ── */
[data-theme="light"] #hero .btn-ghost { color: rgba(255,255,255,0.75); }
[data-theme="light"] #hero .btn-ghost:hover { color: #E8D49A; }


/* ── LIGHT: IMAGE OVERLAYS — remove dark overlays from images ── */
[data-theme="light"] .style-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%);
}
[data-theme="light"] .modern-bg::before,
[data-theme="light"] .french-bg::before,
[data-theme="light"] .contemporary-bg::before { opacity: 0; }
[data-theme="light"] .hero-bg::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.7) 85%, rgba(0,0,0,0.88) 100%);
}
[data-theme="light"] .hero-bg::after {
  background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 55%);
}
[data-theme="light"] .dr-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
}
[data-theme="light"] .gallery-item .g-bg::before { opacity: 0; }
[data-theme="light"] .philosophy-img::before { opacity: 0; }
[data-theme="light"] .about-img::before { opacity: 0; }

/* ── LIGHT: CAREERS CARD HOVER — match nav warm palette ── */
[data-theme="light"] .job-card:hover {
  background: var(--charcoal);
  border-color: rgba(122,85,0,0.35);
  border-top-color: var(--gold);
  transform: translateY(-3px);
}

/* ── SHARED SCRIPT STYLES ── */
@media (max-width: 860px) {
  nav { padding: 20px 24px; }
  nav.scrolled, nav.solid { padding: 12px 24px; }
  .nav-links, .nav-cta, .theme-toggle { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-menu-backdrop.open { display: block; }
  section { padding: 70px 24px; }
  .page-hero { padding: 0 24px 50px; height: 300px; }
  .page-hero-line { display: none; }
  .footer-inner { grid-template-columns: 1fr; padding: 52px 24px; }
  .footer-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 48px; margin-bottom: 48px; }
  .footer-right { padding-left: 0; }
  .footer-row { grid-template-columns: 100px 1fr; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; padding: 24px; gap: 16px; }
  .footer-bottom-links { justify-content: center; }
  .footer-bottom-brand { display: flex; justify-content: center; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { border-bottom: 1px solid var(--border); padding: 32px 24px; }
}

/* ── PRIVACY POLICY MODAL ── */
#privacyOverlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
#privacyOverlay.open { opacity: 1; pointer-events: all; }
#privacyCard, #termsCard {
  background: #111111;
  border: 1px solid rgba(201,168,76,0.18);
  max-width: 760px; width: 100%;
  max-height: 88vh;
  display: flex; flex-direction: column;
  transform: translateY(24px);
  transition: transform 0.35s var(--ease);
  position: relative;
}
#privacyOverlay.open #privacyCard { transform: translateY(0); }
.pp-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 40px 48px 28px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  flex-shrink: 0;
}
.pp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300;
  color: #F5F0E8; line-height: 1;
}
.pp-updated {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 8px;
}
.pp-close {
  background: none; border: 1px solid rgba(201,168,76,0.25);
  color: rgba(201,168,76,0.7);
  width: 36px; height: 36px; flex-shrink: 0;
  cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s;
  margin-left: 24px; margin-top: 4px;
}
.pp-close:hover { border-color: var(--gold); color: var(--gold); }
.pp-body {
  overflow-y: auto;
  padding: 36px 48px 48px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.2) transparent;
}
.pp-body::-webkit-scrollbar { width: 3px; }
.pp-body::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); }
.pp-section { margin-bottom: 32px; }
.pp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: #F5F0E8; margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.pp-section-title::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.pp-section p {
  font-size: 13px; font-weight: 300; line-height: 1.9;
  color: rgba(245,240,232,0.65); margin-bottom: 10px;
}
.pp-section ul {
  list-style: none; padding: 0; margin: 8px 0 10px 0;
  display: flex; flex-direction: column; gap: 6px;
}
.pp-section ul li {
  font-size: 13px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.65);
  display: flex; align-items: flex-start; gap: 10px;
}
.pp-section ul li::before {
  content: ''; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
}
.pp-contact-block {
  font-size: 13px; line-height: 2; color: rgba(245,240,232,0.65);
  border-left: 2px solid rgba(201,168,76,0.3);
  padding-left: 16px; margin-top: 10px;
}
.pp-contact-block a { color: var(--gold); text-decoration: none; }

[data-theme="light"] #privacyCard,
[data-theme="light"] #termsCard { background: #F0EBE2; border-color: rgba(110,80,28,0.2); }
[data-theme="light"] .pp-title { color: #1C1812; }
[data-theme="light"] .pp-section-title { color: #1C1812; }
[data-theme="light"] .pp-section p,
[data-theme="light"] .pp-section ul li { color: rgba(28,24,18,0.7); }
[data-theme="light"] .pp-header { border-bottom-color: rgba(110,80,28,0.15); }
[data-theme="light"] .pp-contact-block { color: rgba(28,24,18,0.7); }

@media(max-width:600px){
  .pp-header { padding: 28px 24px 20px; }
  .pp-body { padding: 24px 24px 36px; }
  .pp-title { font-size: 28px; }
}

/* ══════════════════════════════════════════════════
   AMBIENT MUSIC BUTTON (site-wide)
══════════════════════════════════════════════════ */
#soundBtn {
  position: fixed; bottom: 30px; right: 24px; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(7,7,7,0.8); backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  cursor: pointer; transition: border-color 0.3s, box-shadow 0.3s;
  display: flex; align-items: center; justify-content: center;
}
#soundBtn:hover { border-color: var(--gold); }
#soundBtn.playing { border-color: rgba(201,168,76,0.5); box-shadow: 0 0 12px rgba(201,168,76,0.15); }
.sound-bars { display: flex; align-items: flex-end; gap: 3px; height: 18px; }
.sound-bar { width: 3px; border-radius: 2px; background: var(--muted); transition: background 0.3s; }
.sound-bar:nth-child(1) { height: 8px; }
.sound-bar:nth-child(2) { height: 14px; }
.sound-bar:nth-child(3) { height: 10px; }
.sound-bar:nth-child(4) { height: 6px; }
#soundBtn.playing .sound-bar { background: var(--gold); }
#soundBtn.playing .sound-bar:nth-child(1) { animation: bar1 0.9s ease-in-out infinite; }
#soundBtn.playing .sound-bar:nth-child(2) { animation: bar2 0.75s ease-in-out infinite; }
#soundBtn.playing .sound-bar:nth-child(3) { animation: bar3 1.1s ease-in-out infinite; }
#soundBtn.playing .sound-bar:nth-child(4) { animation: bar4 0.85s ease-in-out infinite; }
@keyframes bar1 { 0%,100%{height:8px}  50%{height:16px} }
@keyframes bar2 { 0%,100%{height:14px} 50%{height:5px}  }
@keyframes bar3 { 0%,100%{height:10px} 50%{height:18px} }
@keyframes bar4 { 0%,100%{height:6px}  50%{height:12px} }

/* ══════════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════════ */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(10,9,7,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
#cookieBanner.visible { transform: translateY(0); }
.cookie-left { flex: 1; }
.cookie-eyebrow {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}
.cookie-text a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
#cookieAccept {
  padding: 12px 28px;
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  white-space: nowrap;
}
#cookieAccept:hover { opacity: 0.85; }
#cookieDecline {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  padding: 12px 20px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
#cookieDecline:hover { border-color: var(--muted); color: var(--fg); }
@media(max-width:860px) {
  #cookieBanner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }
  .cookie-actions { width: 100%; }
  #cookieAccept, #cookieDecline { flex: 1; text-align: center; }
}
