/* ═══════════════════════════════════════════════════════════════
   C0CTELARTE — STYLESHEET
   Mobile-First · Dark Mode · CSS3
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:          #0f0f0f;
  --bg-2:        #161616;
  --bg-3:        #1e1e1e;
  --gold:        #d4af37;
  --gold-light:  #e8c94f;
  --gold-dark:   #a88b20;
  --white:       #ffffff;
  --gray-1:      #f5f5f5;
  --gray-2:      #a0a0a0;
  --gray-3:      #4a4a4a;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;

  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.18);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.55);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

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

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(4rem, 10vw, 8rem);
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  margin-top: 1rem;
  color: var(--gray-2);
  font-size: 0.95rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ── SCROLL REVEAL ANIMATION STATES ─────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav-header.scrolled {
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--gold-light); }

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-2);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.5rem 1.2rem !important;
  border: 1px solid var(--gold-dark) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--gold) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Ancla el header encima del overlay cuando el menú está abierto.
   backdrop-filter en el padre rompe position:fixed de los hijos — se desactiva. */
.nav-header.menu-open,
.nav-header.menu-open.scrolled {
  background: rgba(8, 8, 8, 0.98) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.12) !important;
}

/* ── Mobile nav overlay ── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: #080808;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  z-index: 99;
  padding: 6rem 2.5rem 3rem;
  overflow-y: auto;
}

/* Logo decorativo dentro del overlay */
.nav-links.open::before {
  content: 'C0ctelArte';
  position: absolute;
  top: 1.4rem;
  left: 2.5rem;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  pointer-events: none;
}

/* Separadores entre ítems */
.nav-links.open li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-links.open li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Reset y estilo editorial para los links */
.nav-links.open a:not(.nav-cta) {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition), padding-left var(--transition);
}
.nav-links.open a:not(.nav-cta)::before {
  content: attr(data-index);
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  min-width: 1.5rem;
}
.nav-links.open a:not(.nav-cta)::after { display: none; }

.nav-links.open a:not(.nav-cta):hover,
.nav-links.open a:not(.nav-cta):focus {
  color: var(--white);
  padding-left: 0.5rem;
}

/* CTA al fondo, alineado a la izquierda */
.nav-links.open .nav-cta {
  display: inline-flex !important;
  align-self: flex-start;
  margin-top: 2rem;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* Animación de entrada escalonada */
@keyframes navItemIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-links.open li:nth-child(1) { animation: navItemIn 0.32s ease 0.08s both; }
.nav-links.open li:nth-child(2) { animation: navItemIn 0.32s ease 0.15s both; }
.nav-links.open li:nth-child(3) { animation: navItemIn 0.32s ease 0.22s both; }
.nav-links.open li:nth-child(4) { animation: navItemIn 0.32s ease 0.29s both; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: -15%;
  background-image: url('https://images.unsplash.com/photo-1470337458703-46ad1756a187?w=1600&q=85&fit=crop');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.05s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,15,15,0.85) 0%,
    rgba(15,15,15,0.65) 50%,
    rgba(15,15,15,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-2);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ══════════════════════════════════════════════════════════════
   GALERÍA
══════════════════════════════════════════════════════════════ */
.galeria {
  background: var(--bg-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.cocktail-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.55) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.card-image-wrap:hover img   { transform: scale(1.08); }
.card-image-wrap:hover .card-overlay { opacity: 1; }

/* Show overlay on touch devices always */
@media (hover: none) {
  .card-overlay { opacity: 1; }
}

.card-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.card-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.card-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

/* ══════════════════════════════════════════════════════════════
   RECETA INTERACTIVA
══════════════════════════════════════════════════════════════ */
.receta {
  overflow: hidden;
}

.receta-bg-accent {
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 65%);
  transform: translateY(-50%);
  pointer-events: none;
}

.receta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 7vw, 5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .receta-grid { grid-template-columns: 1fr 1fr; }
}

.receta-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.receta-img-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.receta-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.2;
}
.receta-img-badge span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}
.receta-img-badge strong {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
}

.receta-info .section-title {
  text-align: left;
  margin-top: 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.receta-intro {
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: var(--gray-2);
  font-size: 0.95rem;
  line-height: 1.8;
}

.receta-details {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.detail-block h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.ingredient-list {
  display: grid;
  gap: 0.5rem;
}
.ingredient-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-1);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.qty {
  color: var(--gold);
  font-weight: 500;
  min-width: 3.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.cristaleria-text {
  font-size: 0.9rem;
  color: var(--gray-2);
  line-height: 1.7;
}

/* Step reveal button */
.reveal-steps-btn {
  position: relative;
  overflow: hidden;
}
.reveal-steps-btn.active {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
}
.reveal-steps-btn.active:hover {
  background: rgba(212,175,55,0.08);
}
.reveal-steps-btn.active svg {
  transform: rotate(180deg);
}

/* Steps container */
.steps-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease,
              margin-top 0.4s ease;
  opacity: 0;
  margin-top: 0;
}
.steps-container.open {
  max-height: 800px;
  opacity: 1;
  margin-top: 1.75rem;
}

.steps-list {
  display: grid;
  gap: 1.25rem;
  list-style: none;
}
.steps-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.steps-list li div strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.steps-list li div p {
  font-size: 0.85rem;
  color: var(--gray-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════════════════════════ */
.servicios {
  background: var(--bg-2);
}

.servicios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.servicio-card {
  position: relative;
  padding: 2.25rem 2rem;
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.servicio-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.servicio-card--featured {
  background: linear-gradient(145deg, #1c1a10 0%, var(--bg-3) 100%);
  border-color: rgba(212, 175, 55, 0.25);
}

.servicio-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.servicio-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  color: var(--gold);
}
.servicio-icon svg {
  width: 28px;
  height: 28px;
}

.servicio-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.servicio-card p {
  font-size: 0.88rem;
  color: var(--gray-2);
  line-height: 1.7;
  flex-grow: 1;
}

.servicio-features {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.servicio-features li {
  font-size: 0.8rem;
  color: var(--gray-2);
  padding-left: 1rem;
  position: relative;
}
.servicio-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

/* ══════════════════════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════════════════════ */
.cta-strip {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: linear-gradient(135deg, #1a1600 0%, var(--bg) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 700px) {
  .cta-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-strip h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
}

.cta-strip p {
  color: var(--gray-2);
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

.btn-instagram {
  flex-shrink: 0;
}
.btn-instagram svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: #080808;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 2fr; gap: 2rem; }
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray-2);
  line-height: 1.7;
}

.footer-logo {
  font-size: 1.5rem;
}

.footer-social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--gray-2);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: grid;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--gray-2);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-newsletter p {
  font-size: 0.85rem;
  color: var(--gray-2);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.input-group {
  display: flex;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.input-group:focus-within { border-color: var(--gold-dark); }

.input-group input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--white);
  min-width: 0;
}
.input-group input::placeholder { color: var(--gray-3); }

.btn-subscribe {
  background: var(--gold);
  border: none;
  padding: 0 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: background var(--transition);
  flex-shrink: 0;
}
.btn-subscribe:hover { background: var(--gold-light); }
.btn-subscribe svg { width: 16px; height: 16px; }

.form-message {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  min-height: 1.2em;
  color: var(--gold);
  transition: opacity 0.3s ease;
}
.form-message.error { color: #e88; }

.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-3);
}
