:root {
  --display-font: "Lora", serif;
  --bg: #0c0b0d;
  --bg-elevated: #141216;
  --panel: #18161a;
  --text: #ebe6e8;
  --muted: #9a9399;
  --accent: #8b2942;
  --accent-soft: #b84d63;
  --border: #2e2a32;
  --header-bg: rgba(10, 9, 11, 0.92);
  --glow: rgba(139, 41, 66, 0.25);
  --body-grid-line: rgba(255, 255, 255, 0.25);
  --hero-fallback: linear-gradient(
    135deg,
    #1a0f14 0%,
    #0c0b0d 40%,
    #151018 100%
  );
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--body-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--body-grid-line) 1px, transparent 1px);
  background-size: 4px 4px;
}

h1,
h2,
h3 {
  font-family: var(--display-font);
  letter-spacing: 0.04em;
}

.mist {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(139, 41, 66, 0.12), transparent 55%);
  opacity: 0.9;
}

.top-bar,
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem 0.65rem 1.5rem;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.top-bar-tools {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
  justify-content: flex-end;
  flex-wrap: wrap;
  justify-self: end;
}

.theme-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 999px;
}

.theme-toggle__track {
  position: relative;
  width: 3.65rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle__icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.32rem;
  pointer-events: none;
}

.theme-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  opacity: 0.4;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.theme-toggle__icon svg {
  width: 0.75rem;
  height: 0.75rem;
  display: block;
}

html:not([data-theme="light"]) .theme-toggle__icon--moon {
  opacity: 0.95;
  color: var(--accent-soft);
}

html:not([data-theme="light"]) .theme-toggle__icon--sun {
  opacity: 0.35;
}

[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 0.95;
  color: var(--accent-soft);
}

[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 0.35;
}

.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  right: auto;
  z-index: 2;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: left 0.22s ease, right 0.22s ease;
}

[data-theme="light"] .theme-toggle__thumb {
  left: auto;
  right: 3px;
}

.theme-toggle:hover .theme-toggle__track {
  border-color: var(--accent-soft);
}

.logo-script {
  justify-self: start;
  font-family: "Cinzel", serif;
  font-size: clamp(0.55rem, 2.1vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  line-height: 1.1;
  text-shadow: 0 0 28px rgba(139, 41, 66, 0.35);
}

.logo-image {
  display: block;
  height: clamp(26px, 4.2vw, 42px);
  width: auto;
  max-width: min(72vw, 360px);
  object-fit: contain;
}

.nav-primary {
  position: relative;
}

.nav-primary-list,
.menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-primary-list a,
.menu-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-page .nav-primary {
  width: 100%;
}

.admin-page .nav-primary-list {
  justify-content: flex-end;
}

.admin-public-link {
  position: fixed;
  top: 0.85rem;
  right: 1.25rem;
  z-index: 40;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-public-link:hover {
  color: var(--text);
}

.admin-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-back-link:hover {
  color: var(--text);
}

.nav-primary-list a:hover,
.menu-list a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
}

.hero-banner {
  position: relative;
  isolation: isolate;
  width: 100%;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: min(64vh, 560px);
  background: var(--hero-fallback);
  background-size: cover;
  background-position: center;
}

.hero-visual.hero-visual--has-image {
  background-color: #0a090b;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 6, 9, 0.92) 0%,
    rgba(8, 6, 9, 0.55) 42%,
    rgba(8, 6, 9, 0.2) 72%,
    rgba(8, 6, 9, 0.5) 100%
  );
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: min(64vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1.25rem 2.1rem;
  text-align: center;
}

.hero-overlay-inner {
  max-width: 560px;
}

.hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  line-height: 1.12;
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #f5f0f2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}

.hero-deck {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(235, 230, 232, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
  justify-content: center;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-hero--outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.25);
}

.btn-hero--outline:hover {
  background: rgba(139, 41, 66, 0.45);
  border-color: var(--accent-soft);
}

.btn-hero--ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
}

.btn-hero--ghost:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.btn-hero--primary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  box-shadow: none;
  padding: 0.9rem 1.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.19em;
}

.btn-hero--primary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
}

.content-band {
  padding-top: 2.75rem;
}

.content-band--tight {
  padding-top: 2.25rem;
}

.content-band--contact {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 0.5rem;
  margin-top: 30px;
  background: transparent;
}

.content-band--contact::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, 680px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 77, 99, 0.55),
    transparent
  );
  opacity: 0.65;
}

.content-inner--contact {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.contact-panel {
  position: relative;
  padding: clamp(1.85rem, 4.5vw, 2.85rem) clamp(1.35rem, 3.5vw, 2.75rem);
  border-radius: 18px;
  background: var(--bg-elevated);
  border: 1px solid #000;
  box-shadow: none;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: none;
}

.band-heading--contact {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-kicker {
  margin: 0 0 0.45rem;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.band-title--contact {
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 40px rgba(139, 41, 66, 0.22);
}

.band-heading--contact .band-title--contact::after {
  content: "";
  display: block;
  width: 3.75rem;
  height: 2px;
  margin: 0.8rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-soft),
    var(--accent),
    var(--accent-soft),
    transparent
  );
  border-radius: 2px;
  margin-bottom: 10px;
}

.contact-lead--panel {
  margin: 1.05rem auto 1.9rem;
  padding: 0 0.25rem;
  text-align: center;
  max-width: 38ch;
  font-size: clamp(0.95rem, 1.45vw, 1.06rem);
  line-height: 1.7;
  color: var(--muted);
}

.content-inner {
  width: 100%;
}

.content-inner--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.band-heading {
  margin-bottom: 1.35rem;
}

.band-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-family: var(--display-font);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

#gallery .band-title {
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.band-sub {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.content-band--gallery {
  position: relative;
  padding-top: 3.25rem;
  padding-bottom: 2.25rem;
  background: radial-gradient(
    ellipse 90% 55% at 50% -10%,
    rgba(139, 41, 66, 0.14),
    transparent 58%
  );
}

.content-band--gallery::after {
  content: "";
  display: block;
  width: min(100%, 720px);
  height: 1px;
  margin: 1.75rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 77, 99, 0.55),
    var(--accent-soft),
    rgba(184, 77, 99, 0.55),
    transparent
  );
  opacity: 0.55;
  box-shadow: 0 0 12px rgba(139, 41, 66, 0.15);
}



.content-inner--gallery {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.band-heading--gallery {
  text-align: center;
  margin-bottom: 2.35rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.gallery-kicker {
  margin: 0 0 0.45rem;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.band-title--gallery {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: 0.2em;
  text-shadow: 0 0 42px rgba(139, 41, 66, 0.2);
}

.band-heading--gallery .band-title--gallery::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  margin: 0.85rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-soft),
    var(--accent),
    var(--accent-soft),
    transparent
  );
  border-radius: 2px;
}

.band-sub--gallery {
  margin-top: 1rem;
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  line-height: 1.65;
  color: var(--muted);
}

.content-band--booking {
  position: relative;
  padding-top: 1.75rem;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.content-inner--booking {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.booking-kicker {
  margin: 0 0 0.3rem;
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.band-title--booking {
  font-family: var(--display-font);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 28px rgba(139, 41, 66, 0.18);
}

.content-inner--booking .band-title--booking::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 1px;
  margin: 0.55rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-soft),
    var(--accent),
    transparent
  );
  border-radius: 2px;
}

.booking-deck {
  margin: 0.75rem auto 0;
  max-width: 42ch;
  font-size: clamp(0.82rem, 1.25vw, 0.92rem);
  line-height: 1.55;
  color: var(--muted);
}

.booking-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.booking-cta {
  min-width: unset;
  padding: 0.65rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.65rem);
}

.art-card {
  --lift: 6px;
  background: var(--bg-elevated);
  border: 1px solid #000;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  box-shadow: none;
  animation: gallery-card-in 0.58s cubic-bezier(0.33, 1, 0.68, 1) backwards;
  animation-delay: calc(0.055s * var(--i, 0));
}

.art-card:hover {
  transform: translateY(calc(-1 * var(--lift)));
  border-color: #000;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.art-card-visual {
  position: relative;
  overflow: hidden;
  border-radius: 13px 13px 0 0;
  background: var(--bg);
}

.art-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.art-card:hover .art-card-visual::after {
  opacity: 0;
}

.art-card-visual--placeholder::after {
  opacity: 0;
}

.art-image {
  height: 260px;
  margin: 0;
  background:
    linear-gradient(145deg, rgba(139, 41, 66, 0.28), rgba(20, 18, 22, 0.85)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      transparent 2px 10px
    );
}

.art-image-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.art-card:hover .art-image-photo {
  transform: scale(1.06);
}

.art-card h3,
.art-card p {
  padding: 0 1.05rem;
}

.art-card h3 {
  margin: 0.95rem 0 0.2rem;
  font-size: 1.02rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.art-card p {
  margin: 0 0 1.05rem;
  color: var(--accent-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (prefers-reduced-motion: reduce) {
  .art-card {
    animation: none;
  }

  .art-card:hover {
    transform: none;
  }

  .art-card:hover .art-image-photo {
    transform: none;
  }
}

.section-heading .about-tagline,
.band-heading .about-tagline {
  margin: 0.45rem 0 0;
  color: var(--accent-soft);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.about-bio {
  max-width: 65ch;
}

.about-bio p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-bio p + p {
  margin-top: 1.1rem;
}

.content-band--about {
  padding-top: 3rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.content-band--about::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, 720px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-soft),
    transparent
  );
  opacity: 0.45;
  margin-top: 20px;
}

.content-inner--about {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.band-heading--about {
  text-align: center;
  margin-bottom: 2rem;
}

.about-kicker {
  margin: 0 0 0.4rem;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.band-heading--about .band-title {
  margin-top: 0;
}

.about-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(1.75rem, 5vw, 3rem);
}

.about-copy {
  flex: 1 1 280px;
  min-width: 0;
}

.about-photo {
  margin: 0 0 0 auto;
  flex: 0 0 auto;
  width: 300px;
  max-width: min(300px, 100%);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-lead {
  margin: 0 0 1.35rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--accent);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
}

.about-copy .about-bio {
  max-width: none;
}

@media (max-width: 720px) {
  .about-layout {
    flex-direction: column;
    gap: 1.75rem;
  }

  .about-photo {
    align-self: center;
    max-width: 280px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .band-heading--about {
    margin-bottom: 1.5rem;
  }
}

.contact-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 62ch;
}

.contact-links {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem 0.85rem;
  width: 100%;
}

.contact-links li {
  min-width: 0;
  display: flex;
  justify-content: stretch;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-width: 0;
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #000;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  backdrop-filter: none;
  box-shadow: none;
  transform: translateY(0);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.contact-link:hover {
  border-color: #000;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.contact-link:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 11px;
  color: var(--accent-soft);
  background: transparent;
  border: 1px solid #000;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.contact-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.contact-link:hover .contact-icon {
  color: var(--accent-soft);
  background: transparent;
  border-color: #000;
  transform: scale(1.04);
}

.contact-icon--linkedin {
  color: #8eb8d9;
  background: transparent;
  border-color: #000;
}

.contact-link:hover .contact-icon--linkedin {
  color: #3a6d9e;
  background: transparent;
  border-color: #000;
}

.contact-handle {
  min-width: 0;
  word-break: break-word;
  text-align: left;
}

@media (min-width: 700px) {
  .contact-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-link:hover {
    transform: none;
  }

  .contact-link:hover .contact-icon {
    transform: none;
  }
}

.btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 4px;
  background: linear-gradient(120deg, var(--accent), #5c1f32);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px var(--glow);
  font-size: 0.85rem;
}

.btn:hover {
  filter: brightness(1.06);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-soft);
  box-shadow: none;
}

.site-footer {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}

.admin-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.booking-main {
  max-width: 900px;
}

.booking-back-link {
  margin-bottom: 0.5rem;
}

.booking-page-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.25rem;
  padding: 0 0.25rem;
}

.booking-page-title {
  margin: 0 0 0.5rem;
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 4.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 36px rgba(139, 41, 66, 0.28);
  line-height: 1.2;
}

.booking-page-title::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 2px;
  margin: 0.7rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-soft),
    var(--accent),
    transparent
  );
  border-radius: 2px;
}

.booking-page-lead {
  margin: 1.1rem auto 0;
  max-width: 40ch;
  font-size: clamp(0.95rem, 2.2vw, 1.06rem);
  line-height: 1.72;
  color: var(--muted);
}

.booking-page-highlights {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.booking-page-highlights li {
  padding: 0.45rem 0.95rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid rgba(139, 41, 66, 0.5);
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    rgba(139, 41, 66, 0.18),
    rgba(139, 41, 66, 0.04)
  );
  box-shadow:
    0 0 24px rgba(139, 41, 66, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.booking-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 16px;
  padding: clamp(1.35rem, 3.5vw, 1.85rem);
  border: 1px solid var(--border);
  background:
    linear-gradient(155deg, rgba(139, 41, 66, 0.09) 0%, transparent 48%),
    var(--bg-elevated);
  box-shadow:
    0 0 0 1px rgba(139, 41, 66, 0.1),
    0 24px 56px rgba(0, 0, 0, 0.4),
    0 0 100px rgba(139, 41, 66, 0.07);
}

.booking-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 80%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(139, 41, 66, 0.12) 0%,
    transparent 70%
  );
}

.booking-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.booking-form-section__title {
  margin: 0 0 0.7rem;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.booking-form-section__fields {
  display: grid;
  gap: 0.75rem;
}

.booking-panel .booking-form-section__fields input[type="text"],
.booking-panel .booking-form-section__fields textarea,
.booking-panel .booking-form-section__fields select {
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.booking-panel .booking-form-section__fields input[type="text"]:focus,
.booking-panel .booking-form-section__fields textarea:focus,
.booking-panel .booking-form-section__fields select:focus {
  outline: none;
  border-color: rgba(139, 41, 66, 0.65);
  box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.15);
}

.booking-panel .booking-extra {
  border-style: solid;
  border-color: rgba(139, 41, 66, 0.28);
  background: rgba(139, 41, 66, 0.04);
}

.booking-estimate--panel {
  margin: 0;
  padding: 1.05rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(139, 41, 66, 0.4);
  background: linear-gradient(
    135deg,
    rgba(139, 41, 66, 0.2),
    rgba(139, 41, 66, 0.06)
  );
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.booking-estimate--panel .booking-estimate-label {
  margin-bottom: 0.35rem;
}

.booking-estimate--panel .booking-estimate-value {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
}

.booking-form-actions {
  margin-top: 0.15rem;
  text-align: center;
}

.booking-reference-preview {
  margin-top: 0.75rem;
}

.booking-reference-preview__img {
  display: block;
  width: min(100%, 320px);
  max-height: 280px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.booking-reference-preview__name {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: var(--accent-soft);
}

.booking-submit-btn {
  margin-top: 0;
  padding: 0.85rem 1.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 22rem;
  width: 100%;
}

.booking-status-line {
  margin-top: 1rem;
  text-align: center;
}

.booking-submitted-panel {
  position: relative;
  overflow: hidden;
  margin: 0 auto 1rem;
  max-width: 700px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background:
    linear-gradient(155deg, rgba(139, 41, 66, 0.09) 0%, transparent 48%),
    var(--bg-elevated);
  box-shadow:
    0 0 0 1px rgba(139, 41, 66, 0.1),
    0 24px 56px rgba(0, 0, 0, 0.38),
    0 0 100px rgba(139, 41, 66, 0.07);
}

.booking-submitted-panel::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -22%;
  width: 56%;
  height: 75%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(139, 41, 66, 0.15) 0%, transparent 70%);
}

.booking-submitted-title {
  margin: 0.25rem 0 0.45rem;
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 4.1vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text);
}

.booking-submitted-lead {
  margin: 0.95rem auto 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.68;
}

.booking-submitted-success {
  margin: 1rem auto 1.05rem;
  max-width: 35rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(139, 41, 66, 0.45);
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(139, 41, 66, 0.23), rgba(139, 41, 66, 0.08));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text);
}

.booking-submitted-success__icon {
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.booking-submitted-panel .booking-estimate {
  max-width: 400px;
  margin: 0.95rem auto 1.1rem;
}

.booking-submitted-next {
  max-width: 35rem;
  margin: 0.7rem auto 0;
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}

.booking-submitted-next__title {
  margin: 0 0 0.35rem;
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-submitted-next__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.booking-submitted-next__list li + li {
  margin-top: 0.3rem;
}

.booking-submitted-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.booking-submitted-actions .btn {
  margin-top: 0;
}

.booking-submitted-home {
  box-shadow: none;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem;
  background: var(--bg-elevated);
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.7rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

input,
button {
  font: inherit;
}

input[type="text"],
input[type="password"],
input[type="file"],
textarea,
select {
  width: 100%;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.55rem 0.65rem;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
}

.booking-extra {
  display: grid;
  gap: 0.7rem;
  padding: 0.8rem;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
}

.booking-extra[hidden] {
  display: none !important;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.art-admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.art-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 0.8rem;
}

.art-admin-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem;
  background: var(--panel);
}

.hero-pill {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.2rem 0.38rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(139, 41, 66, 0.75);
}

.art-admin-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}

.art-admin-card h3 {
  margin: 0;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
}

.art-admin-card p {
  margin: 0.2rem 0 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.art-admin-controls {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.art-admin-delete {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(12, 11, 13, 0.86);
  color: var(--text);
  cursor: pointer;
  line-height: 1;
}

.art-admin-delete:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.booking-row {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.95rem 1rem;
  margin-top: 0.85rem;
  background: var(--bg-elevated);
}

.booking-row-link {
  color: var(--text);
  text-decoration: none;
}

.booking-row-link:hover {
  color: var(--accent-soft);
  text-decoration: underline;
}

.booking-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.booking-row p {
  margin: 0.2rem 0;
  color: var(--muted);
}

.booking-row-actions {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking-status {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.42rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-status--pending {
  color: var(--muted);
}

.booking-status--completed {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}

.booking-estimate {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: var(--panel);
}

.booking-estimate-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-estimate-value {
  margin: 0.2rem 0 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.booking-detail-card {
  border-top: 1px solid var(--border);
  margin-top: 0.7rem;
  padding-top: 0.8rem;
}

.booking-detail-image-wrap {
  margin: 0.8rem 0;
}

.booking-detail-image {
  display: block;
  width: min(100%, 360px);
  border: 1px solid var(--border);
  border-radius: 8px;
  object-fit: cover;
}

.status {
  color: var(--accent-soft);
  min-height: 1.2rem;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .top-bar,
  .site-header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .logo-script {
    grid-row: 1;
    justify-self: center;
  }

  .top-bar-tools {
    grid-row: 2;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .nav-primary-list,
  .menu-list {
    display: none;
    position: absolute;
    left: 0;
    right: 300px;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
  }

  .nav-primary-list.open,
  .menu-list.open {
    display: flex;
  }

  .nav-primary-list a,
  .menu-list a {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-primary-list li:last-child a,
  .menu-list li:last-child a {
    border-bottom: none;
  }

  .header-link {
    display: none;
  }

  .hero-overlay {
    padding-bottom: 2.5rem;
    align-items: center;
    text-align: left;
  }

  .page-main {
    padding: 0 1rem 2.25rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .hero-deck {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .admin-main {
    padding: 0.8rem 0.9rem 2rem;
  }

  .panel {
    padding: 0.9rem;
  }

  .admin-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-actions .btn {
    text-align: center;
  }

  .booking-main {
    max-width: 100%;
  }

  .booking-row {
    padding-top: 0.75rem;
    margin-top: 0.75rem;
  }

  .booking-row-actions .btn {
    width: 100%;
    text-align: center;
  }

  .art-admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .art-admin-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  #save-order-btn {
    width: 100%;
    text-align: center;
  }

  .btn,
  .btn-hero {
    min-height: 36px;
    padding: 0.48rem 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .admin-public-link {
    top: 0.55rem;
    right: 0.8rem;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.25rem;
    background: rgba(12, 11, 13, 0.7);
    border: 1px solid var(--border);
    border-radius: 4px;
  }

  /* Public pages on phone: centered logo + theme; nav hidden */
  body:not(.admin-page) .top-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0.55rem 0.75rem;
    gap: 0.5rem;
    position: static;
    top: auto;
    z-index: auto;
    border-bottom: none;
    background: transparent;
    backdrop-filter: none;
  }

  body:not(.admin-page) .logo-script {
    justify-self: center;
    font-size: clamp(0.86rem, 4.2vw, 1rem);
    text-align: center;
  }

  body:not(.admin-page) .logo-image {
    height: clamp(20px, 7vw, 28px);
    max-width: 88vw;
  }

  body:not(.admin-page) .top-bar-tools {
    position: absolute;
    top: 0.55rem;
    right: 0.75rem;
    width: auto;
    justify-content: flex-end;
  }

  body:not(.admin-page) .nav-primary {
    display: none;
  }

  body:not(.admin-page) .menu-toggle {
    display: none !important;
  }

  body:not(.admin-page) .hero-visual,
  body:not(.admin-page) .hero-overlay {
    min-height: min(52vh, 430px);
  }

  body:not(.admin-page) .hero-overlay {
    padding: 1.2rem 1rem 1.5rem;
    text-align: center;
  }

  body:not(.admin-page) .hero-overlay-inner {
    margin-left: auto;
    margin-right: auto;
  }

  body:not(.admin-page) .hero-kicker,
  body:not(.admin-page) .hero-deck {
    display: none;
  }

  body:not(.admin-page) .hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  body:not(.admin-page) .hero-actions .btn-hero {
    width: auto;
    min-width: 0;
    padding: 0.6rem 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }
}

@media (max-width: 480px) {
  .top-bar,
  .site-header {
    padding: 0.6rem 0.75rem;
  }

  .logo-script {
    font-size: clamp(0.92rem, 5vw, 1.05rem);
  }

  .logo-image {
    height: clamp(18px, 8vw, 24px);
    max-width: 90vw;
  }

  .nav-primary-list a,
  .menu-list a {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .band-title {
    font-size: 1.15rem;
    letter-spacing: 0.1em;
  }

  body:not(.admin-page) .about-kicker,
  body:not(.admin-page) .gallery-kicker,
  body:not(.admin-page) .booking-kicker,
  body:not(.admin-page) .contact-kicker,
  body:not(.admin-page) .about-tagline,
  body:not(.admin-page) .art-card p {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
  }

  body:not(.admin-page) .band-sub,
  body:not(.admin-page) .about-lead,
  body:not(.admin-page) .about-bio p,
  body:not(.admin-page) .booking-deck,
  body:not(.admin-page) .contact-lead,
  body:not(.admin-page) .contact-handle {
    font-size: 1rem;
    line-height: 1.65;
  }

  body:not(.admin-page) .art-card h3 {
    font-size: 1rem;
  }

  body:not(.admin-page) .art-card p {
    font-size: 0.76rem;
  }

  body:not(.admin-page) .hero-visual,
  body:not(.admin-page) .hero-overlay {
    min-height: min(46vh, 360px);
  }

  body:not(.admin-page) .about-photo {
    max-width: 200px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .art-card h3,
  .art-card p {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* —— Light theme (toggle) —— */
[data-theme="light"] {
  color-scheme: light;
  --bg: #faf8f9;
  --bg-elevated: #ffffff;
  --panel: #f3eef1;
  --text: #1a1618;
  --muted: #5e565c;
  --accent: #8b2942;
  --accent-soft: #a33852;
  --border: #ddd8dc;
  --header-bg: rgba(255, 255, 255, 0.94);
  --glow: rgba(139, 41, 66, 0.12);
  --body-grid-line: rgba(0, 0, 0, 0.07);
  --hero-fallback: linear-gradient(
    135deg,
    #f0e8ec 0%,
    #faf8f9 45%,
    #ebe6e8 100%
  );
}

[data-theme="light"] body::before {
  opacity: 0.06;
}

[data-theme="light"] .mist {
  opacity: 0.45;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(139, 41, 66, 0.06),
    transparent 55%
  );
}

[data-theme="light"] .booking-page-title {
  text-shadow: 0 0 24px rgba(139, 41, 66, 0.12);
}

[data-theme="light"] .booking-page-highlights li {
  box-shadow:
    0 2px 12px rgba(139, 41, 66, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .booking-panel {
  box-shadow:
    0 0 0 1px rgba(139, 41, 66, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .booking-panel::before {
  opacity: 0.5;
}

[data-theme="light"] .booking-estimate--panel {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .booking-submitted-panel {
  box-shadow:
    0 0 0 1px rgba(139, 41, 66, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .booking-submitted-panel::before {
  opacity: 0.5;
}

[data-theme="light"] .booking-submitted-success {
  background: linear-gradient(130deg, rgba(139, 41, 66, 0.14), rgba(139, 41, 66, 0.05));
}

[data-theme="light"] .logo-script {
  text-shadow: none;
}

[data-theme="light"] .contact-link {
  border-color: #000;
  background: transparent;
  box-shadow: none;
}

[data-theme="light"] .contact-link:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
  border-color: #000;
}

[data-theme="light"] .contact-link:hover .contact-icon {
  color: var(--accent-soft);
}

[data-theme="light"] .contact-link:hover .contact-icon--linkedin {
  color: #3a6d9e;
}

[data-theme="light"] .btn-hero--primary {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(139, 41, 66, 0.08);
}

[data-theme="light"] .btn-hero--primary:hover {
  background: rgba(139, 41, 66, 0.14);
}

[data-theme="light"] .hero-banner .btn-hero--primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

[data-theme="light"] .hero-banner .btn-hero--primary:hover {
  background: rgba(255, 255, 255, 0.12);
}

[data-theme="light"] .btn-hero--outline {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .btn-hero--outline:hover {
  color: var(--text);
  background: rgba(139, 41, 66, 0.12);
  border-color: var(--accent-soft);
}
