/* ============================================================
   Viajes Fontao — Custom Styles  (Option A: Blanco Editorial)
   ============================================================ */

/* ── Design tokens ── */
:root {
  --ink:      #0E0E0E;
  --ink-60:   rgba(14,14,14,0.6);
  --ink-30:   rgba(14,14,14,0.3);
  --ink-15:   rgba(14,14,14,0.15);
  --white:    #FFFFFF;
  --off:      #F7F5F2;
  --gold:     #B8892A;
  --gold-light: #E8D5A3;
  --navy:     #0F2942;
}

/* ── Base overrides ── */
html  { scroll-behavior: smooth; font-size: 16px; }
body  { background: var(--white); color: var(--ink); overflow-x: hidden; }
*,*::before,*::after { box-sizing: border-box; }

/* ── Font helpers ── */
.font-serif { font-family: 'DM Serif Display', serif; }

/* ── Text selection ── */
::selection { background: var(--gold); color: #fff; }

/* ── Focus rings ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Material Symbols ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
}

/* ── Cursor + touch ── */
a,button,[role="button"],.filter-btn,select,label[for] { cursor: pointer; }
a,button,[role="button"],.filter-btn,input[type="submit"],input[type="button"] {
  touch-action: manipulation;
}

/* ══════════════════════════════════════════
   EDITORIAL TYPOGRAPHY SYSTEM
══════════════════════════════════════════ */
.ed-eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.ed-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 28px;
}
.ed-hero-title em { font-style: italic; color: var(--gold); }
.ed-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.12;
  color: var(--ink);
}
.ed-section-title-white { color: var(--white); }
.ed-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-60);
}
.ed-body-white { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  border: none;
}
.btn-ink:hover { background: var(--gold); transform: translateY(-1px); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  border: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost-white span.line {
  width: 40px; height: 1px;
  background: currentColor;
  display: inline-block;
  transition: width 0.3s;
}
.btn-ghost-white:hover { color: var(--gold); }
.btn-ghost-white:hover span.line { width: 56px; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-15);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(14,14,14,0.08); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav-links a:hover  { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom: 1px solid var(--gold); }

/* Mobile hamburger */
.hamburger-btn {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer;
}
@media (max-width: 767px) {
  .nav-inner { padding: 0 20px; }
  .nav-links  { display: none; }
  .hamburger-btn { display: flex; }
  .nav-cta-desktop { display: none; }
}

/* Mobile overlay */
.mobile-overlay {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy);
  display: flex; flex-direction: column;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   HERO — SPLIT (Option A)
══════════════════════════════════════════ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 64px;  /* nav offset */
}
.hero-img-panel {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.hero-img-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  display: block;
}
.hero-img-panel:hover img { transform: scale(1.04); }
.hero-img-tag {
  position: absolute; top: 36px; left: 36px;
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  background: rgba(14,14,14,0.5);
  padding: 8px 16px;
  backdrop-filter: blur(4px);
}
.hero-content-panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px 80px 80px;
  background: var(--white);
}
.hero-scroll-hint {
  margin-top: auto; padding-top: 48px;
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-30);
  display: flex; align-items: center; gap: 14px;
}
.hero-scroll-hint::before {
  content: ''; width: 40px; height: 1px; background: var(--ink-30);
}
@media (max-width: 1023px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-img-panel { min-height: 55vw; }
  .hero-content-panel { padding: 48px 24px; }
}

/* ── Hero slider ── */
.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-slide.active {
  transform: translateX(0);
  pointer-events: auto;
}
.hero-slide.slide-prev  { transform: translateX(-100%); }
.hero-slide.no-anim     { transition: none !important; }

.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center;
  transition: none; /* disable .hero-img-panel img rule */
}
.hero-slide.active img {
  animation: hero-kenburns 7s ease forwards;
}
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
/* Disable old panel hover-zoom for slides */
#hero-slider:hover .hero-slide img        { transform: unset; }
#hero-slider:hover .hero-slide.active img { animation-play-state: paused; }

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 36px;
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hero-dot {
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.35);
  border: none; padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
  flex-shrink: 0;
}
.hero-dot.active { background: white; width: 36px; }
.hero-dot:hover  { background: rgba(255,255,255,0.7); }

@media (prefers-reduced-motion: reduce) {
  .hero-slide            { transition: none; transform: translateX(100%); }
  .hero-slide.active     { transform: translateX(0); }
  .hero-slide.slide-prev { transform: translateX(-100%); }
  .hero-slide img        { animation: none; }
}

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
}
.stats-cell {
  padding: 40px 48px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-cell:last-child { border-right: none; }
.stats-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-label {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 767px) {
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stats-cell { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ══════════════════════════════════════════
   SECTION LAYOUT
══════════════════════════════════════════ */
.ed-section {
  padding: 100px 56px;
  max-width: 1280px;
  margin: 0 auto;
}
.ed-section-full { padding: 100px 56px; }
.ed-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .ed-section { padding: 64px 20px; }
  .ed-section-full { padding: 64px 20px; }
  .ed-section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ── Editorial "ver más" link ── */
.ed-link {
  font-size: 0.8125rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.ed-link:hover { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════════════════
   DESTINATION GRID (asymmetric)
══════════════════════════════════════════ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.dest-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--off);
  display: block; text-decoration: none;
}
.dest-card.span2 { grid-column: span 2; }
.dest-card img {
  width: 100%; height: 100%; min-height: 280px;
  object-fit: cover; display: block;
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.dest-card.span2 img { min-height: 380px; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 24px 22px;
  background: linear-gradient(transparent, rgba(14,14,14,0.78));
}
.dest-card-cat {
  font-size: 0.625rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px;
}
.dest-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem; color: var(--white);
  margin-bottom: 4px; line-height: 1.2;
}
.dest-card.span2 .dest-card-name { font-size: 1.75rem; }
.dest-card-price {
  font-size: 0.75rem; font-weight: 400;
  color: rgba(255,255,255,0.55);
}
.dest-card-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  transition: background 0.25s, color 0.25s;
}
.dest-card:hover .dest-card-cta {
  background: #fff;
}
.dest-card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.dest-card:hover .dest-card-arrow { opacity: 1; transform: translateY(0); }
@media (max-width: 767px) {
  .dest-grid { grid-template-columns: 1fr; gap: 2px; }
  .dest-card.span2 { grid-column: span 1; }
}

/* ══════════════════════════════════════════
   SERVICES GRID (numbered 4-col)
══════════════════════════════════════════ */
.services-bg { background: var(--off); }
.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-15);
  margin-top: 56px;
}
.srv-card {
  background: var(--off);
  padding: 48px 36px;
  display: flex; flex-direction: column; gap: 0;
  transition: background 0.25s;
  cursor: pointer;
}
.srv-card:hover { background: var(--white); }
.srv-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--ink-15);
  display: block; margin-bottom: 28px;
  line-height: 1;
}
.srv-rule {
  display: block; width: 40px; height: 2px;
  background: var(--gold); margin-bottom: 24px;
}
.srv-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem; color: var(--ink);
  display: block; margin-bottom: 12px;
  line-height: 1.2;
}
.srv-desc {
  font-size: 0.875rem; line-height: 1.7;
  color: var(--ink-60); margin-bottom: 32px; flex: 1;
}
.srv-link {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
}
@media (max-width: 1023px) {
  .srv-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 639px) {
  .srv-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CTA SPLIT SECTION
══════════════════════════════════════════ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-split-img { overflow: hidden; min-height: 500px; }
.cta-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-split-content {
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px;
}
@media (max-width: 1023px) {
  .cta-split { grid-template-columns: 1fr; }
  .cta-split-img { min-height: 280px; }
  .cta-split-content { padding: 48px 24px; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--ink-15);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 72px 56px 64px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--ink-15);
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem; font-weight: 400;
  color: var(--ink); display: block; margin-bottom: 14px;
  text-decoration: none;
}
.footer-tagline {
  font-size: 0.875rem; line-height: 1.65;
  color: var(--ink-60); max-width: 240px;
}
.footer-social {
  display: flex; gap: 14px; margin-top: 20px;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--ink-15);
  color: var(--ink-60);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col-title {
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 0; padding: 0; }
.footer-col-links a {
  font-size: 0.875rem; font-weight: 300;
  color: var(--ink-60); text-decoration: none;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 56px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.footer-copy { font-size: 0.75rem; color: var(--ink-30); }
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .footer-grid { grid-template-columns: 1fr; padding: 48px 20px 40px; }
  .footer-bottom { padding: 20px; flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   INNER PAGE HERO (medium)
══════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: clamp(360px, 45vw, 560px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  margin-top: 64px;
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,14,14,0.75) 0%, rgba(14,14,14,0.15) 60%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 56px 56px;
  max-width: 1280px; width: 100%;
}
@media (max-width: 767px) {
  .page-hero-content { padding: 0 20px 40px; }
}

/* ══════════════════════════════════════════
   CARDS (general)
══════════════════════════════════════════ */
.ed-card {
  background: var(--white);
  border: 1px solid var(--ink-15);
  overflow: hidden;
  transition: box-shadow 0.35s cubic-bezier(0.4,0,0.2,1),
              transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.ed-card:hover {
  box-shadow: 0 20px 40px -8px rgba(14,14,14,0.10);
  transform: translateY(-4px);
}

/* ══════════════════════════════════════════
   FILTER BAR (destinos)
══════════════════════════════════════════ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--ink-15);
  padding: 24px 56px;
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 0;
  margin-top: 64px;
}
.filter-btn {
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-60);
  background: none; border: none;
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn:hover  { color: var(--ink); }
.filter-btn.active { color: var(--ink); border-bottom-color: var(--gold); }
.filter-search-wrap {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--ink-15);
  padding-bottom: 4px;
}
.filter-search-wrap input {
  border: none; background: transparent;
  font-size: 0.875rem; color: var(--ink);
  width: 180px; outline: none;
}
@media (max-width: 767px) {
  .filter-bar { padding: 16px 20px; }
  .filter-search-wrap { margin-left: 0; width: 100%; }
  .filter-search-wrap input { width: 100%; }
}

/* ══════════════════════════════════════════
   FORM STYLES
══════════════════════════════════════════ */
.form-field {
  display: flex; flex-direction: column; gap: 8px;
}
.form-label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-60);
}
.form-input-ed {
  border: 0;
  border-bottom: 2px solid rgba(14,14,14,0.25);
  background: transparent;
  padding: 12px 0;
  font-size: 0.9375rem;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.form-input-ed:focus { outline: none; border-bottom-color: var(--gold); }
.form-input-ed:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-bottom-color: var(--gold);
}
.form-input-ed::placeholder { color: rgba(14,14,14,0.3); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.alert { padding: 12px 16px; font-size: 14px; margin-bottom: 16px; }
.alert-success { background: #d4edda; color: #155724; border-left: 3px solid #28a745; }
.alert-error   { background: #f8d7da; color: #721c24; border-left: 3px solid #dc3545; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.accent-line { width: 40px; height: 2px; background: var(--gold); display: block; }
.section-divider { border: none; border-top: 1px solid var(--ink-15); margin: 0; }

/* Team cards (agencia) */
.team-card {
  overflow: hidden;
  border: 1px solid var(--ink-15);
  background: var(--white);
}
.team-card img { transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); display: block; }
.team-card:hover img { transform: scale(1.05); }
