/* ═══════════════════════════════════════════
   MONK BLUES BAND — style.css
   Vintage cálido · Blues · Ámbar & sepia
═══════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --bg:            #140d07;
  --bg-soft:       #1b120a;
  --bg-raised:     #241810;
  --surface:       rgba(255, 238, 214, 0.045);
  --surface-hover: rgba(255, 238, 214, 0.08);
  --border:        rgba(224, 169, 73, 0.16);
  --border-accent: rgba(224, 169, 73, 0.5);

  --text:       #f4ead7;
  --text-soft:  #c6ad8b;
  --text-muted: #8c7654;

  --amber:      #e0a949;
  --amber-deep: #c47a2c;
  --amber-soft: #efc888;
  --rust:       #bd5a2c;
  --cream:      #f4ead7;
  --amber-glow: rgba(224, 169, 73, 0.28);

  --max-width: 1180px;
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 24px 70px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.4);
  --ease:      0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ─── Background layers ─── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* warm vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, transparent 45%, rgba(0,0,0,0.55) 100%);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 22s ease-in-out infinite alternate;
}
.orb-1 {
  width: 760px; height: 760px; top: -240px; left: -220px;
  background: radial-gradient(circle, rgba(224, 169, 73, 0.16), transparent 70%);
}
.orb-2 {
  width: 560px; height: 560px; bottom: 6%; right: -140px;
  background: radial-gradient(circle, rgba(189, 90, 44, 0.15), transparent 70%);
  animation-delay: -11s;
}
@keyframes orb-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(50px, 36px) scale(1.1); }
}

/* ─── Layout ─── */
.container {
  position: relative;
  z-index: 1;
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section { padding: 110px 0; position: relative; }

.section-dark {
  background: linear-gradient(180deg, transparent, rgba(36, 24, 16, 0.7) 18%, rgba(36, 24, 16, 0.7) 82%, transparent);
}

/* ─── Section headers ─── */
.section-header { margin-bottom: 56px; max-width: 720px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--amber);
  display: block;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 18px;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--amber-soft); }

.section-text {
  color: var(--text-soft);
  max-width: 640px;
  font-size: 1.04rem;
  font-weight: 300;
}

/* ─── Topbar ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: rgba(20, 13, 7, 0.7);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease), box-shadow var(--ease);
}
.topbar.scrolled {
  background: rgba(20, 13, 7, 0.94);
  box-shadow: 0 1px 40px rgba(0,0,0,0.55);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ─── Brand ─── */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  transition: opacity var(--ease);
}
.brand:hover { opacity: 0.85; }

.brand-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  color: var(--amber);
  position: relative;
  animation: spin 9s linear infinite;
}
.brand-mark::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
@keyframes spin { to { transform: rotate(360deg); } }

.brand-word {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-word .b-amber { color: var(--amber); }
.brand-sub {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.42em;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ─── Nav links ─── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-link {
  position: relative;
  color: var(--text-soft);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 100px;
  transition: color var(--ease), background var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px;
  background: var(--amber);
  transition: transform var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,238,214,0.05); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  margin-left: 8px;
  background: var(--amber);
  color: #1a0f04 !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--amber-soft); }
.nav-cta::after { display: none; }

/* ─── Hamburger ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: background var(--ease);
}
.menu-toggle:hover { background: var(--surface-hover); }
.menu-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--amber); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--amber);
  color: #1a0f04;
  box-shadow: 0 0 0 0 var(--amber-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--amber-soft);
  box-shadow: 0 14px 36px rgba(224, 169, 73, 0.4);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  border-color: var(--border-accent);
  background: rgba(224, 169, 73, 0.04);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--amber);
  background: rgba(224, 169, 73, 0.1);
  transform: translateY(-3px);
}

/* ─── Marquee (ticker) ─── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-soft);
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.marquee-item::after {
  content: '✦';
  font-style: normal;
  font-size: 0.8rem;
  color: var(--amber);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 70px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: calc(92vh - 78px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--amber);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-eyebrow .eq { display: inline-flex; gap: 3px; align-items: flex-end; height: 16px; }
.hero-eyebrow .eq i {
  width: 3px;
  background: var(--amber);
  border-radius: 2px;
  animation: eq 1.1s ease-in-out infinite;
}
.hero-eyebrow .eq i:nth-child(1) { height: 7px;  animation-delay: 0s; }
.hero-eyebrow .eq i:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.hero-eyebrow .eq i:nth-child(3) { height: 9px;  animation-delay: 0.4s; }
.hero-eyebrow .eq i:nth-child(4) { height: 16px; animation-delay: 0.1s; }
@keyframes eq { 0%,100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 8.5vw, 7rem);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--text);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero h1 .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.24s; }
.hero h1 em { font-style: italic; color: var(--amber); }
@keyframes rise { to { transform: translateY(0); } }

.hero-body {
  font-size: 1.06rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fade-up 0.9s ease forwards 0.65s;
}
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* hero photo */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fade-up 1s ease forwards 0.4s;
}
.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: sepia(0.45) saturate(1.05) contrast(1.04) brightness(0.92);
  transition: filter 0.6s ease, transform 6s ease;
  transform: scale(1.04);
}
.hero-visual:hover .hero-photo img { filter: sepia(0.1) saturate(1.1); transform: scale(1.08); }
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,13,7,0.7));
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(20,13,7,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-accent);
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 0 rgba(189,90,44,0.7);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(189,90,44,0.6); }
  100% { box-shadow: 0 0 0 10px rgba(189,90,44,0); }
}
.hero-caption {
  position: absolute;
  bottom: 18px; left: 20px; right: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.hero-caption .cap-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
}
.hero-caption .cap-meta {
  font-family: "Oswald", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-soft);
  text-align: right;
}

/* floating vinyl deco */
.hero-vinyl {
  position: absolute;
  width: 130px; height: 130px;
  bottom: -34px; left: -34px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--amber) 0 14%, #1a120a 14% 18%, #120c06 18% 100%);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-sm);
  z-index: 3;
  animation: spin 7s linear infinite;
  background-image:
    repeating-radial-gradient(circle, rgba(0,0,0,0.5) 0 1px, transparent 1px 4px),
    radial-gradient(circle, var(--amber) 0 14%, #1a120a 14% 18%, #120c06 18% 100%);
}

/* ─── Chips & venues (La banda) ─── */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,238,214,0.03);
  color: var(--text-soft);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--ease);
}
.chip:hover {
  border-color: var(--amber);
  color: var(--text);
  background: rgba(224,169,73,0.1);
  transform: translateY(-2px);
}

.venues {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.venues-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
}
.venues-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.venue {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-soft);
}
.venue-sep { color: var(--amber); opacity: 0.6; }

/* ─── Members ─── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.member-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.member-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow), 0 0 40px rgba(224,169,73,0.14);
}
.member-photo { position: relative; height: 340px; overflow: hidden; }
.member-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.5) saturate(0.95) contrast(1.05) brightness(0.9);
  transition: filter 0.6s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.member-card:hover .member-photo img {
  filter: sepia(0.08) saturate(1.12) contrast(1.02);
  transform: scale(1.06);
}
.member-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,13,7,0.92));
}
.member-num {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 2;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--amber-soft);
  background: rgba(20,13,7,0.55);
  border: 1px solid var(--border);
  padding: 4px 9px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.member-role-tag {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.member-role-tag::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--amber);
}
.member-content { padding: 22px 24px 26px; }
.member-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.05;
}
.member-content > p {
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.68;
}
.member-card.is-wide { grid-column: span 1; }

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gphoto {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--bg-soft);
}
.gphoto img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.4) saturate(1) contrast(1.03) brightness(0.92);
  transition: filter 0.6s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.gphoto:hover img { filter: sepia(0.05) saturate(1.15); transform: scale(1.07); }
.gphoto::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,13,7,0.55));
  opacity: 0;
  transition: opacity var(--ease);
}
.gphoto:hover::after { opacity: 1; }
.gphoto .g-tag {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 2;
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
}
.gphoto:hover .g-tag { opacity: 1; transform: translateY(0); }
.gphoto.g-a { grid-column: span 7; min-height: 420px; }
.gphoto.g-b { grid-column: span 5; min-height: 420px; }
.gphoto.g-c { grid-column: span 5; min-height: 360px; }
.gphoto.g-d { grid-column: span 7; min-height: 360px; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  background: rgba(10, 6, 3, 0.92);
  backdrop-filter: blur(10px);
  padding: 5vh 5vw;
}
.lightbox.open { display: grid; animation: lb-fade 0.3s ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 100%; max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-accent);
}
.lightbox-close {
  position: absolute;
  top: 26px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  transition: background var(--ease), transform var(--ease);
}
.lightbox-close:hover { background: var(--amber); color: #1a0f04; transform: rotate(90deg); }

/* ─── Contact ─── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), transform var(--ease);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.contact-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.contact-card .cc-sub {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 26px;
}

/* phone rows */
.phone-list { display: grid; gap: 14px; }
.phone-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,238,214,0.03);
  border: 1px solid var(--border);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.phone-row:hover {
  background: rgba(224,169,73,0.08);
  border-color: var(--border-accent);
  transform: translateX(4px);
}
.phone-avatar {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(224,169,73,0.14);
  border: 1px solid var(--border-accent);
  color: var(--amber);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}
.phone-info { flex: 1; min-width: 0; }
.phone-info .pn {
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.phone-info .pt {
  font-size: 1.18rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.phone-wa {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 100px;
  background: var(--amber);
  color: #1a0f04;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--ease), transform var(--ease);
}
.phone-wa:hover { background: var(--amber-soft); transform: scale(1.05); }

/* link rows (instagram / email / location) */
.link-list { display: grid; gap: 14px; }
.link-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,238,214,0.03);
  border: 1px solid var(--border);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.link-row:hover {
  background: rgba(224,169,73,0.08);
  border-color: var(--border-accent);
  transform: translateX(4px);
}
.link-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(224,169,73,0.12);
  border: 1px solid var(--border);
  color: var(--amber);
}
.link-row .lt-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.link-row .lt-value { color: var(--text); font-size: 1rem; font-weight: 500; }
.link-row svg.arrow { margin-left: auto; color: var(--text-muted); transition: transform var(--ease), color var(--ease); }
.link-row:hover svg.arrow { color: var(--amber); transform: translateX(4px); }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 52px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber) 30%, var(--amber) 70%, transparent);
  opacity: 0.5;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color var(--ease);
}
.footer-brand:hover { color: var(--text); }
.footer-brand span { color: var(--amber); }
.footer p { color: var(--text-muted); font-size: 0.85rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  color: var(--text-soft);
  transition: all var(--ease);
}
.footer-social a:hover { background: var(--amber); color: #1a0f04; border-color: var(--amber); transform: translateY(-3px); }

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity var(--ease-out), transform var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay   { 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; }

/* ─── Responsive ─── */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .gphoto.g-a, .gphoto.g-b, .gphoto.g-c, .gphoto.g-d { grid-column: span 6; min-height: 300px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  .nav { flex-wrap: wrap; padding: 14px 0; }
  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px 0 6px;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; border-radius: 8px; padding: 12px 14px; }
  .nav-cta { margin-left: 0; text-align: center; justify-content: center; }
  .section { padding: 76px 0; }
  .members-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gphoto.g-a, .gphoto.g-b, .gphoto.g-c, .gphoto.g-d { grid-column: 1; min-height: 280px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-vinyl { width: 96px; height: 96px; bottom: -22px; left: -16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .phone-row { flex-wrap: wrap; }
  .phone-wa { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero h1 .line > span { transform: none; }
}
