/* ============================================
   DEOTROS — Landing Page
   Design: Noche de Directo — Humo y Neón
   HTML + CSS Vanilla
   ============================================ */

/* === FONTS === */
@font-face {
  font-family: 'Oswald';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/static/landing/fonts/oswald-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Oswald';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/static/landing/fonts/oswald-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/static/landing/fonts/sourcesans-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('/static/landing/fonts/sourcesans-light.woff2') format('woff2');
}
@font-face {
  font-family: 'Caveat';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/static/landing/fonts/caveat-regular.woff2') format('woff2');
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: #111008;
  color: #b5ab98;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* === UTILITY === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.font-display { font-family: 'Oswald', sans-serif; }
.font-accent  { font-family: 'Caveat', cursive; }
.font-body    { font-family: 'Source Sans 3', sans-serif; }

.guitar-string {
  height: 1px;
  background: linear-gradient(90deg, transparent, #c49a3c, transparent);
  opacity: 0.4;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.2; }
  50%      { transform: translateY(-30px); opacity: 0.6; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(17, 16, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 154, 60, 0.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) {
  .navbar .container { height: 80px; }
}
.navbar-logo {
  display: flex;
  align-items: center;
}
.navbar-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .navbar-logo img { height: 48px; }
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8a8070;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c49a3c;
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: #c49a3c;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Mobile menu button */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #b5ab98;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.mobile-toggle:hover { color: #c49a3c; }
@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(17, 16, 8, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 154, 60, 0.1);
  padding: 1.5rem 0;
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8a8070;
  padding: 0.75rem 0;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: #c49a3c; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(17,16,8,0.6),
    rgba(17,16,8,0.4),
    rgba(17,16,8,1)
  );
}
.hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(17,16,8,0.5),
    transparent,
    rgba(17,16,8,0.5)
  );
}
.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-spotlight-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(196,154,60,0.08) 0%, transparent 70%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  animation: fadeInScale 1s ease 0.4s both;
}
.hero-logo {
  width: 280px;
  height: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  drop-shadow: 0 0 40px rgba(196,154,60,0.3);
}
@media (min-width: 640px) { .hero-logo { width: 400px; } }
@media (min-width: 768px) { .hero-logo { width: 520px; } }
@media (min-width: 1024px) { .hero-logo { width: 650px; } }

.hero-quote {
  margin-top: 1.5rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-quote .guitar-string {
  width: 200px;
  margin: 0 auto 1.5rem;
}
@media (min-width: 768px) {
  .hero-quote .guitar-string { width: 256px; }
}
.hero-quote p {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  color: #eea830;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.3;
}
.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 0.8s ease 1.1s both;
}
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; justify-content: center; }
}
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 2px solid #c49a3c;
  color: #c49a3c;
  background: rgba(196,154,60,0.05);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #c49a3c;
  color: #111008;
  box-shadow: 0 0 30px rgba(196,154,60,0.3);
}
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8a8070;
  transition: color 0.3s ease;
}
.btn-secondary:hover { color: #e8e0d0; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
  color: rgba(196,154,60,0.5);
  font-size: 1.75rem;
}

/* === BAND SECTION === */
.band-section {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
}
.band-section .bg-glow {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: radial-gradient(ellipse at 20% 50%, rgba(196,154,60,0.06) 0%, transparent 50%);
}
.section-label {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: rgba(196,154,60,0.7);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .section-label { font-size: 1.5rem; } }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e8e0d0;
}
@media (min-width: 768px) { .section-title { font-size: 3.5rem; } }

.band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 4rem;
}
@media (min-width: 1024px) {
  .band-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.band-image-wrap {
  position: relative;
  overflow: hidden;
}
.band-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .band-image-wrap img { height: 500px; }
}
.band-image-wrap .overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #111008, transparent);
}
.band-image-wrap .overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,16,8,0.3), transparent);
}
.band-image-corner {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 96px;
  height: 96px;
  border-right: 2px solid rgba(196,154,60,0.3);
  border-bottom: 2px solid rgba(196,154,60,0.3);
}
.band-text blockquote {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  line-height: 1.5;
  color: rgba(196,154,60,0.9);
  border-left: 2px solid #7a3020;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .band-text blockquote { font-size: 1.875rem; }
}
.band-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #8a8070;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .band-text p { font-size: 1.125rem; } }
.band-accent-img {
  position: relative;
  overflow: hidden;
  height: 192px;
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 1024px) { .band-accent-img { width: 75%; } }
.band-accent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band-accent-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,16,8,0.5), rgba(17,16,8,0.3));
}

/* === QUOTE SECTION === */
.quote-section {
  position: relative;
  padding: 5rem 0 7rem;
  overflow: hidden;
}
.quote-section .bg-img {
  position: absolute;
  inset: 0;
}
.quote-section .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.quote-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,16,8,0.75);
}
.quote-section .bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(122,48,32,0.08) 0%, transparent 60%);
}
.quote-section .guitar-string {
  position: absolute;
  width: 100%;
  left: 0;
}
.quote-section .guitar-string.top { top: 0; }
.quote-section .guitar-string.bottom { bottom: 0; }
.quote-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.quote-content .quote-text {
  font-family: 'Caveat', cursive;
  font-size: 1.875rem;
  line-height: 1.3;
  color: #ddc292;
}
@media (min-width: 768px) { .quote-content .quote-text { font-size: 3rem; } }
@media (min-width: 1024px) { .quote-content .quote-text { font-size: 3.5rem; } }
.quote-content .quote-author {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 2rem;
  color: #6a6050;
}

/* === REPERTOIRE SECTION === */
.repertoire-section {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
}
.repertoire-section .bg-img {
  position: absolute;
  inset: 0;
}
.repertoire-section .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.repertoire-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,16,8,0.85);
}
.repertoire-header {
  text-align: center;
  margin-bottom: 4rem;
}
.repertoire-header .subtitle {
  font-size: 1rem;
  color: #706858;
  margin-top: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .repertoire-header .subtitle { font-size: 1.125rem; } }
.album-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .album-tabs { gap: 0.75rem; } }
.album-tab {
  padding: 0.5rem 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid #302a1e;
  color: #706858;
  background: transparent;
  transition: all 0.3s ease;
}
@media (min-width: 768px) { .album-tab { font-size: 0.75rem; } }
.album-tab:hover {
  border-color: rgba(196,154,60,0.5);
  color: #c49a3c;
}
.album-tab.active {
  border-color: #c49a3c;
  color: #111008;
  background: #c49a3c;
  box-shadow: 0 0 20px rgba(196,154,60,0.3);
}
.song-list {
  max-width: 768px;
  margin: 0 auto;
}
.album-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.album-label .disc-icon {
  color: #c49a3c;
  font-size: 1.25rem;
}
.album-label .album-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c49a3c;
}
.album-label .album-year {
  font-size: 0.875rem;
  color: #6a6050;
}
.song-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #252015;
  transition: background 0.3s ease;
}
.song-item:hover {
  background: rgba(196,154,60,0.05);
}
.song-number {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  width: 2rem;
  text-align: right;
  color: #4a4238;
}
.song-name {
  font-size: 1rem;
  color: #a09888;
  transition: color 0.3s;
}
@media (min-width: 768px) { .song-name { font-size: 1.125rem; } }
.song-item:hover .song-name { color: #e8e0d0; }
.repertoire-footer {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  text-align: center;
  margin-top: 2rem;
  color: #6a6050;
}

/* === LIVE SECTION === */
.live-section {
  position: relative;
  overflow: hidden;
}
.live-bg {
  position: absolute;
  inset: 0;
}
.live-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.live-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    #111008,
    rgba(17,16,8,0.7),
    #111008
  );
}
.live-inner {
  position: relative;
  z-index: 10;
  padding: 6rem 0 10rem;
}
.live-header {
  text-align: center;
  margin-bottom: 4rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 5rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.stat-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #302a1e;
  background: rgba(17,16,8,0.6);
  backdrop-filter: blur(8px);
  transition: border-color 0.5s ease;
}
.stat-card:hover {
  border-color: rgba(196,154,60,0.4);
}
.stat-card .stat-icon {
  color: rgba(196,154,60,0.6);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.stat-card .stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #c49a3c;
}
@media (min-width: 768px) { .stat-card .stat-value { font-size: 2.5rem; } }
.stat-card .stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6a6050;
  margin-top: 0.25rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
.testimonial {
  padding: 2rem;
  border-left: 2px solid rgba(122,48,32,0.6);
}
.testimonial .testimonial-text {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #d0c8b8;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .testimonial .testimonial-text { font-size: 1.5rem; } }
.testimonial .testimonial-author {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6a6050;
}

/* === CONTACT SECTION === */
.contact-section {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
}
.contact-section .bg-glow-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(196,154,60,0.04) 0%, transparent 50%);
}
.contact-section .bg-glow-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(122,48,32,0.04) 0%, transparent 50%);
}
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-header .subtitle {
  font-size: 1rem;
  color: #706858;
  margin-top: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .contact-header .subtitle { font-size: 1.125rem; } }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 3fr 2fr; gap: 4rem; }
}

/* Form */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .contact-form .form-row { grid-template-columns: 1fr 1fr; }
}
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #706858;
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1a1810;
  border: 1px solid #302a1e;
  padding: 0.75rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: #d0c8b8;
  transition: border-color 0.3s ease;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #4a4238;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c49a3c;
}
.contact-form textarea { resize: none; }

/* Contact info */
.contact-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c49a3c;
  margin-bottom: 1rem;
}
.contact-info .contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #8a8070;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.contact-info .contact-link:hover { color: #c49a3c; }
.contact-info .contact-link svg { flex-shrink: 0; }
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #302a1e;
  color: #706858;
  transition: all 0.3s ease;
}
.social-link:hover {
  border-color: #c49a3c;
  color: #c49a3c;
  background: rgba(196,154,60,0.05);
}
.availability-box {
  padding: 1.5rem;
  border: 1px solid #252015;
  background: rgba(17,16,8,0.5);
}
.availability-box p {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  line-height: 1.5;
  color: #8a8070;
}

/* === FOOTER === */
.site-footer {
  position: relative;
  padding: 3rem 0;
  border-top: 1px solid #1e1c14;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
@media (min-width: 768px) { .footer-logo img { height: 40px; } }
.footer-quote {
  font-family: 'Caveat', cursive;
  font-size: 0.875rem;
  color: #4a4238;
  text-align: center;
}
.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #3a3428;
}

/* === SVG Icons inline === */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}
