/* ===== MSRooms – Design moderno e ordinato ===== */
:root {
  --color-bg: #f8f9fa;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #5c5c5c;
  --color-accent: #b8860b;
  --color-accent-dark: #8b6914;
  --color-hero-overlay: rgba(0, 0, 0, 0.4);
  --color-border: #eaeaea;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.1);
  --transition: 0.2s ease;
  --space-section: 5rem;
  --space-inner: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

/* ----- Call CTA (sempre visibile) ----- */
.call-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  box-shadow: var(--shadow-hover);
  transition: transform var(--transition), background var(--transition);
}
.call-cta:hover {
  background: var(--color-accent-dark);
  transform: scale(1.04);
  text-decoration: none !important;
}
.call-cta:focus {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 2px;
}
.call-cta-icon {
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.call-cta-text {
  display: none;
}
@media (min-width: 600px) {
  .call-cta-text { display: inline; }
  .call-cta-num { margin-left: 2px; }
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none !important;
  flex-shrink: 0;
}
.logo:hover { color: var(--color-accent); text-decoration: none !important; }
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nav a {
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none !important;
}
.nav a:hover { color: var(--color-accent); }
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-flag {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none !important;
}
.lang-flag:hover { border-color: var(--color-accent); transform: scale(1.08); }
.lang-flag.active { border-color: var(--color-accent); box-shadow: 0 0 0 1px var(--color-accent); }
.lang-flag .flag-icon {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center;
}
.flag-it { background: linear-gradient(180deg, #009246 0%, #009246 33.33%, #fff 33.33%, #fff 66.66%, #ce2b37 66.66%, #ce2b37 100%); }
.flag-en { background: linear-gradient(90deg, #012169 0%, #012169 30%, #fff 30%, #fff 35%, #c8102e 35%, #c8102e 65%, #fff 65%, #fff 70%, #012169 70%); }
.flag-de { background: linear-gradient(180deg, #000 0%, #000 33.33%, #dd0000 33.33%, #dd0000 66.66%, #ffce00 66.66%, #ffce00 100%); }
.flag-es { background: linear-gradient(180deg, #c60b1e 0%, #c60b1e 25%, #ffc400 25%, #ffc400 75%, #c60b1e 75%, #c60b1e 100%); }
.btn-header {
  padding: 0.5rem 1rem !important;
  font-size: 0.9rem !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232c2a26' stroke-width='2'%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cline x1='3' y1='12' x2='21' y2='12'/%3E%3Cline x1='3' y1='18' x2='21' y2='18'/%3E%3C/svg%3E") center no-repeat;
  cursor: pointer;
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-surface);
    padding: 80px 24px 24px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform var(--transition);
    flex: none;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .nav ul { flex-direction: column; gap: 16px; justify-content: flex-start; }
  .nav-toggle { display: block; }
  .header-inner { justify-content: space-between; flex-wrap: wrap; }
  .header-right {
    order: 1;
    margin-left: auto;
  }
  .lang-flag { width: 28px; height: 28px; }
  .btn-header { padding: 0.4rem 0.75rem !important; font-size: 0.85rem !important; }
}
@media (max-width: 600px) {
  .header-right .lang-switcher { display: none; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none !important;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff !important;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--color-accent) !important;
  border-color: var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #fff !important;
  text-decoration: none !important;
}
.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #4a3c32;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.55)), url('https://upload.wikimedia.org/wikipedia/commons/7/7d/Lecce_facciata_barocca.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.55));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}
.hero h1 span { font-style: italic; font-weight: 400; }
.hero-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.92);
  margin: 0 0 32px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.hero-actions .btn-outline { color: #fff !important; border-color: #fff; }
.hero-actions .btn-outline:hover { background: #fff; color: var(--color-text) !important; }
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.6; transform: rotate(45deg) translateY(0); }
  50% { opacity: 1; transform: rotate(45deg) translateY(6px); }
}

/* ----- Sections ----- */
.section {
  padding: var(--space-section) 1.5rem;
}
.section--alt { background: var(--color-surface); }
.container {
  max-width: 1000px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.75rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.section-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.65;
}

/* ----- Rooms grid ----- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.room-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.room-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.room-card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-border);
}
.room-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.room-card:hover .room-card-img-wrap img {
  transform: scale(1.03);
}
.room-card-body { padding: var(--space-inner); }
.room-card-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--color-text);
}
.room-card-meta {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 0.6rem;
}
.room-card-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
  line-height: 1.55;
}
.room-card-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.room-card-btn:hover { color: var(--color-accent-dark); text-decoration: underline; }

/* ----- Availability ----- */
.availability-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 48px;
}
.availability-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 120px;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .availability-form .form-row { grid-template-columns: 1fr; }
}
.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.2);
}
.availability-form .btn-block { margin-top: 8px; }
.availability-result {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 500;
}
.availability-result--loading { background: #f0ede8; color: var(--color-text-muted); }
.availability-result--ok { background: #e8f5e9; color: #1b5e20; }
.availability-result--ok a { color: #1b5e20; text-decoration: underline; }
.availability-result--error { background: #ffebee; color: #c62828; }

/* ----- Calendar ----- */
.calendar-wrap {
  margin-top: 24px;
}
.calendar-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--color-text);
}
.calendar-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0 0 20px;
}
.calendar-inner {
  max-width: 360px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}
.cal-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-current {
  font-weight: 600;
  color: var(--color-text);
}
.cal-nav {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-bg);
  border-radius: var(--radius);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-text);
  transition: background var(--transition);
}
.cal-nav:hover { background: var(--color-border); }
.cal-table-wrap { overflow-x: auto; }
.cal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.cal-table th {
  padding: 8px 4px;
  text-align: center;
  font-weight: 600;
  color: var(--color-text-muted);
}
.cal-table td {
  padding: 6px;
  text-align: center;
  border-radius: 8px;
}
.cal-day { cursor: default; }
.cal-past { color: #bbb; }
.cal-free { background: #e8f5e9; color: #1b5e20; font-weight: 500; }
.cal-busy { background: #ffcdd2; color: #c62828; }
.calendar-legend {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 4px;
}
.legend-dot--free { background: #e8f5e9; }
.legend-dot--busy { background: #ffcdd2; }

/* ----- Verifica disponibilità flow (ospiti + calendario range) ----- */
.verifica-flow { max-width: 420px; margin: 0 auto; }
.verifica-step { margin-bottom: 1.5rem; }
.verifica-step .field-label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--color-text); }
.verifica-dates-summary { color: var(--color-text-muted); font-size: 0.95rem; margin: 0 0 12px; }
.verifica-selected { font-weight: 500; color: var(--color-text); margin: 0 0 12px; }
#btn-vai-prenota { margin-top: 12px; }
.verifica-flow .field-input { width: 100%; max-width: 120px; padding: 0.5rem 0.75rem; border: 1px solid var(--color-border); border-radius: var(--radius); font-size: 1rem; }

/* ----- Calendario range (check-in / check-out) ----- */
.calendar-range .calendar-inner { max-width: 360px; margin: 0 auto; }
.cal-day--selectable { cursor: pointer; }
.cal-day--selectable:hover:not(.cal-past) { background: rgba(184, 134, 11, 0.15); }
.cal-checkin { background: var(--color-accent) !important; color: #fff !important; font-weight: 600; }
.cal-checkout { background: var(--color-accent) !important; color: #fff !important; font-weight: 600; }
.cal-inrange { background: rgba(184, 134, 11, 0.25); color: var(--color-text); }

/* ----- Prenota CTA ----- */
.booking-cta {
  text-align: center;
  padding: 24px;
}
.booking-note {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.booking-note a { font-weight: 600; }

/* ----- Footer ----- */
.footer {
  padding: 48px 24px 24px;
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
}
.footer a { color: #fff; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}
.footer-brand .logo { color: #fff; }
.footer-copy {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

/* ----- Modal ----- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal[hidden] { display: none !important; }
body.modal-open { overflow: hidden; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 42, 38, 0.6);
  cursor: pointer;
}
.modal-content {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-hover);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--color-bg);
  border-radius: var(--radius);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
  line-height: 1;
}
.modal-close:hover { background: var(--color-border); }
.modal-title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  margin: 0 0 20px;
  padding-right: 48px;
  color: var(--color-text);
}
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.modal-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.modal-body {
  margin-bottom: 24px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.modal-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 8px 0 12px !important;
}
.modal-features {
  margin: 12px 0 0;
  padding-left: 1.25rem;
  list-style: disc;
}
.modal-features li { margin-bottom: 4px; }
.modal-cta { width: 100%; }

/* ----- Servizi (pulsanti moderni) ----- */
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.servizio-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  cursor: default;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.servizio-btn:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.12);
  transform: translateY(-1px);
}
.servizio-btn__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(184, 134, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.servizio-btn__svg {
  width: 22px;
  height: 22px;
  display: block;
}
.servizio-btn__title {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.35;
}
.servizio-btn__desc {
  flex: 1 1 100%;
  min-width: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-top: 4px;
  padding-left: 0;
}
.servizio-btn {
  flex-wrap: wrap;
}
.servizio-btn .servizio-btn__desc {
  padding-left: 52px;
}
@media (max-width: 560px) {
  .servizi-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .servizio-btn {
    padding: 12px 16px;
  }
}
.posizione-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}
.posizione-map {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-border);
}
.posizione-map iframe {
  display: block;
}
.posizione-info {
  padding: 0.25rem 0;
}
.posizione-address {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.5;
}
.posizione-address strong { display: block; margin-bottom: 0.25rem; }
.posizione-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  text-align: left;
}
.posizione-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.posizione-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}
.btn-sm { padding: 0.5rem 1rem !important; font-size: 0.9rem !important; }
@media (max-width: 768px) {
  .posizione-wrap { grid-template-columns: 1fr; }
  .posizione-map { min-height: 240px; aspect-ratio: 16/10; }
}

/* ----- Booking platforms ----- */
.booking-platforms {
  margin: 20px 0 12px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
}
.platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), border-color var(--transition);
  text-decoration: none !important;
}
.platform-logo:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
  text-decoration: none !important;
}
.platform-logo img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}
.footer-social {
  margin-top: 8px;
  margin-left: auto;
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social .footer-social-icon {
  display: inline-flex;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.footer-social .footer-social-icon:hover { color: #fff; }
.footer-social a:hover { text-decoration: none; }
