/* =============================================
   NIKO ZUNIGA — Photography Portfolio
   Archetype: Dark Editorial Premium
   ============================================= */

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

:root {
  --bg:          #0a0906;
  --bg-2:        #111009;
  --bg-3:        #1a1814;
  --cream:       #f0ece5;
  --cream-2:     #c8c2b8;
  --cream-3:     #7a746c;
  --gold:        #c9a35a;
  --gold-2:      #a07c38;
  --line:        rgba(240,236,229,0.10);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h:       72px;
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

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

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal[data-split] { opacity: 1; transform: none; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-2);
  box-shadow: 0 8px 32px rgba(201,163,90,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240,236,229,0.35);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(240,236,229,0.06);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Section headers ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 3rem;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,9,6,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--cream-3);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}
/* ── Nav right group ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ── Lang switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream-3);
  padding: 0.2rem 0.1rem;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active { color: var(--gold); }
.lang-sep {
  font-size: 0.6rem;
  color: var(--line);
  user-select: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,9,6,0.30) 0%,
    rgba(10,9,6,0.55) 50%,
    rgba(10,9,6,0.85) 100%
  );
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle 800px at var(--mx, 30%) var(--my, 60%),
      rgba(201,163,90,0.18) 0%, transparent 60%),
    radial-gradient(circle 600px at calc(var(--mx, 30%) + 15%) calc(var(--my, 60%) - 15%),
      rgba(120,70,20,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--cream-2);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream-2), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.4); opacity: 0.1; }
}

/* =============================================
   FILOSOFIA
   ============================================= */
.filosofia {
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.filosofia-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.35;
  color: var(--cream);
  max-width: 780px;
  margin-inline: auto;
  position: relative;
}
.filosofia-quote em {
  font-style: italic;
  color: var(--gold);
}
.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0;
  color: var(--gold);
  opacity: 0.4;
  vertical-align: -0.4em;
  display: inline-block;
  margin-inline: 0.1em;
}
.quote-mark--close { vertical-align: -0.1em; }
.filosofia-firma {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--cream-3);
  text-transform: uppercase;
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio {
  padding-block: clamp(4rem, 10vw, 8rem);
}
.portfolio-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--cream-3);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn:hover { color: var(--cream); }
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.portfolio-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.portfolio-grid.active { display: grid; }

.photo-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-3);
  cursor: pointer;
}
.photo-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  will-change: transform;
}
@media (hover: hover) {
  .photo-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.15) brightness(1.05);
  }
  .photo-card:hover .photo-card-overlay { opacity: 1; }
}
.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,6,0.45);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-card-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
/* Card link "ver más" */
.photo-card-link-inner { display: block; width: 100%; height: 100%; }
.photo-card-overlay--always { opacity: 1; background: rgba(10,9,6,0.55); }
.ver-mas-label {
  font-size: 0.85rem !important;
  letter-spacing: 0.1em;
}
.photo-card--link:hover .photo-card-overlay--always { background: rgba(10,9,6,0.7); }
/* Placeholder cards */
.photo-card--placeholder {
  cursor: default;
  border: 1px dashed rgba(240,236,229,0.15);
}
.placeholder-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--cream-3);
}
.placeholder-icon {
  font-size: 2rem;
  line-height: 1;
  opacity: 0.4;
}
.placeholder-inner p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}
.placeholder-inner--tall {
  aspect-ratio: 2/3;
  height: auto;
  min-height: 300px;
}

/* =============================================
   SOBRE MÍ
   ============================================= */
.sobre-mi {
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.sobre-mi-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.sobre-mi-text .section-header { margin-bottom: 2rem; }
.sobre-mi-text .section-title { margin-bottom: 1.5rem; }
.sobre-mi-para {
  font-size: 1.05rem;
  color: var(--cream-2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.sobre-mi-para em { color: var(--cream); font-style: italic; }
.sobre-mi-text .btn { margin-top: 1rem; }
.sobre-mi-imagen { height: 100%; }
.sobre-mi-frame {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px dashed rgba(240,236,229,0.15);
}

/* =============================================
   SERVICIOS
   ============================================= */
.servicios {
  padding-block: clamp(4rem, 10vw, 8rem);
}
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.servicio-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
@media (hover: hover) {
  .servicio-card:hover {
    border-color: rgba(201,163,90,0.35);
    transform: translateY(-4px);
  }
}
.servicio-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,163,90,0.18);
  line-height: 1;
  margin-bottom: 1rem;
}
.servicio-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}
.servicio-desc {
  font-size: 0.9rem;
  color: var(--cream-3);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.servicio-lista {
  list-style: none;
  margin-bottom: 2rem;
}
.servicio-lista li {
  font-size: 0.85rem;
  color: var(--cream-2);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.servicio-lista li::before {
  content: "—";
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.servicio-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
}
.servicio-link:hover { text-decoration: underline; }

/* =============================================
   STATS
   ============================================= */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--gold);
  font-weight: 300;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: 0.5rem;
}

/* =============================================
   RESERVAR
   ============================================= */
.reservar {
  padding-block: clamp(4rem, 10vw, 8rem);
}
.reservar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.reservar-texto p {
  font-size: 1.05rem;
  color: var(--cream-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-link {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.contact-link:hover { opacity: 0.7; }

/* Form */
.reservar-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--cream);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-3); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-3); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* Submit button states */
.btn-sending, .btn-sent { display: none; }
.reservar-form.is-sending .btn-text { display: none; }
.reservar-form.is-sending .btn-sending { display: inline; }
.reservar-form.is-sending button { opacity: 0.7; pointer-events: none; }
.reservar-form.is-sent .btn-text { display: none; }
.reservar-form.is-sent .btn-sent { display: inline; }
.reservar-form.is-sent button {
  background: #2d6a2d;
  pointer-events: none;
}
.form-note {
  font-size: 0.75rem;
  color: var(--cream-3);
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 4rem);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--cream-3);
  margin-top: 0.2rem;
  font-style: italic;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-social a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 0.7; }
.footer-credits {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-credits p {
  font-size: 0.72rem;
  color: var(--cream-3);
  opacity: 0.6;
}
.footer-credits a { color: inherit; text-decoration: underline; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1023px) {
  .servicios-grid { grid-template-columns: 1fr; max-width: 520px; }
  .sobre-mi-inner { grid-template-columns: 1fr; }
  .sobre-mi-imagen { display: block; order: -1; max-width: 320px; margin: 0 auto 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .reservar-inner { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(10,9,6,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}
@media (max-width: 479px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ── Reduced motion — only gate intrusive effects ── */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line { animation: none; }
}

/* ── Honeypot — invisible para humanos, los bots lo rellenan ── */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Estado de error del formulario ── */
.reservar-form.is-error #submitBtn {
  background: #b04040;
  color: #fff;
}

/* ── Botón flotante Instagram ── */
.ig-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  text-decoration: none;
}
.ig-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}
.ig-float svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: #fff;
}
