:root {
  --navy: #0f1e3c;
  --navy-light: #162444;
  --navy-mid: #1e3260;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-pale: #f5edd8;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-light: #eeeae3;
  --gray: #888880;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 90px;
  height: 80px;
  background: rgba(15, 30, 60, 0.97);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

.nav-logo {
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo span { color: var(--gold); }

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .nav-logo img { height: 40px; }
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

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

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

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 1px;
  font-size: 12px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.nav-cta::after { display: none !important; }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-toggle svg { margin-left: 6px; vertical-align: middle; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 240px;
  background: rgba(15, 30, 60, 0.98);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 3px;
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 120;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu li { padding: 0; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ─── MOBILE MENU ─── */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.mobile-close:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.mobile-close::before,
.mobile-close::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.mobile-close::before { transform: rotate(45deg); }
.mobile-close::after  { transform: rotate(-45deg); }

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0f1e3c 0%, #162444 50%, #0a1628 100%);
  z-index: 200;
  display: flex;
  align-items: flex-start;     /* fallback: serve a permettere scroll senza clipping in alto */
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 90px 24px 40px;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-overlay > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  padding: 0;
  /* margin: auto centra verticalmente il menu quando il contenuto è più piccolo
     del viewport, e degrada a top-aligned con scroll quando è più grande
     (combinato con align-items: flex-start sul container) */
  margin: auto;
  width: 100%;
  max-width: 420px;
}

.mobile-overlay ul { list-style: none; padding: 0; }

.mobile-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  display: block;
  z-index: 210;
}

.mobile-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.mobile-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.mobile-group-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  background: none;
  border: 0;
  padding: 8px 12px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-group-title:hover { color: var(--gold-light); }
.mobile-group-title .mobile-group-chevron {
  transition: transform 0.3s ease;
}
.mobile-group.open .mobile-group-title .mobile-group-chevron {
  transform: rotate(180deg);
}

.mobile-sublist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  /* collapsed di default */
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 0;
  opacity: 0;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease, border-color 0.25s ease;
}

.mobile-group.open .mobile-sublist {
  max-height: 500px;
  padding: 12px 0;
  opacity: 1;
  border-top-color: rgba(201,168,76,0.2);
  border-bottom-color: rgba(201,168,76,0.2);
}

.mobile-sublist a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.mobile-sublist a:hover { color: var(--gold); }

.mobile-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  transition: color 0.2s;
  line-height: 1.2;
}

.mobile-overlay a:hover { color: var(--gold); }

.mobile-overlay .mobile-cta {
  display: inline-block;
  margin-top: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
}

body.menu-open { overflow: hidden; }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 90px 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0f1e3c 0%, #162444 50%, #0a1628 100%);
}

.hero-lines {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 1px,
    transparent 1px,
    transparent 60px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 7px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-badge span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-badge::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-title strong {
  display: block;
  font-weight: 600;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  font-weight: 300;
}

.hero-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-desc p { margin-bottom: 10px; }
.hero-desc p:last-child { margin-bottom: 0; }
.hero-desc strong { color: var(--gold-light); font-weight: 600; }
.hero-desc em { color: rgba(255,255,255,0.9); font-style: italic; }

/* Toggle "Mostra tutto" — visibile solo su mobile */
.hero-desc-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  margin: -8px 0 28px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-desc-toggle svg {
  transition: transform 0.25s;
}

.hero-desc-toggle.expanded svg { transform: rotate(180deg); }

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.hero-role-tag {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(255,255,255,0.6);
  border-radius: 1px;
}

.hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  color: var(--white);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-visual {
  position: absolute;
  right: 0; top: 0;
  width: 42%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
}

.hero-badges {
  display: flex;
  gap: 14px;
  align-items: stretch;
  justify-content: center;
  flex-shrink: 0;
}

.hero-partner-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 10px;
  border: 1px solid rgba(201,168,76,0.32);
  border-radius: 3px;
  background: rgba(15,30,60,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: 190px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-connexio-badge {
  border-color: rgba(255,255,255,0.18);
  background: rgba(10,22,40,0.55);
}
.hero-connexio-badge:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(10,22,40,0.72);
}
.hero-connexio-badge .hero-partner-label {
  color: rgba(255,255,255,0.7);
}
.hero-connexio-badge:hover .hero-partner-label {
  color: rgba(255,255,255,0.95);
}
.hero-connexio-badge img {
  border-radius: 8px;
}
.hero-partner-badge:hover {
  border-color: var(--gold);
  background: rgba(15,30,60,0.72);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.hero-partner-badge:hover .hero-partner-label { color: var(--gold-light); }

.hero-partner-badge img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
}

.hero-partner-label {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.85);
  font-weight: 500;
}

/* Photo placeholder — swap the <img> src with the real portrait */
.hero-photo-frame {
  position: relative;
  width: 440px;
  height: 580px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 3px;
  padding: 14px;
  background: rgba(201,168,76,0.03);
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: 22px; left: 22px; right: -22px; bottom: -22px;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 3px;
  z-index: -1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.12), rgba(15,30,60,0.5)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px);
  color: rgba(255,255,255,0.55);
}

.hero-photo-placeholder svg {
  width: 72px; height: 72px;
  stroke: var(--gold);
  opacity: 0.55;
  fill: none;
  stroke-width: 1.2;
}

.hero-photo-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 42%;
  display: flex;
  gap: 34px;
  z-index: 2;
  align-items: flex-end;
  justify-content: center;
}

.hero-stat-placeholder .hero-stat-img {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  color: rgba(201,168,76,0.7);
  background: rgba(201,168,76,0.04);
}

.hero-stat-placeholder .hero-stat-img svg { width: 26px; height: 26px; }

.hero-stat-partner .hero-stat-img {
  width: 120px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
}

.hero-stat-partner .hero-stat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ─── FEATURES STRIP ─── */
.features-strip {
  background: var(--off-white);
  padding: 60px 90px;
  display: flex;
  gap: 0;
}

.feature-card {
  flex: 1;
  padding: 36px 40px;
  border-right: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}

.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--white); }

.feature-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ─── ABOUT ─── */
#studio {
  padding: 100px 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
}

.about-visual { position: relative; }

.about-visual { overflow: visible; }

.about-img-frame {
  background: var(--navy);
  border-radius: 3px;
  height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(201,168,76,0.25);
}

.about-img-frame .about-photo { border-radius: 2px; }

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.about-photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.12), rgba(15,30,60,0.5)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(201,168,76,0.25);
}

.about-photo-placeholder svg {
  width: 84px; height: 84px;
  stroke: var(--gold);
  opacity: 0.55;
  fill: none;
  stroke-width: 1.2;
}

.about-photo-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.about-img-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.about-emblem-svg {
  width: 200px;
  height: 200px;
  opacity: 0.15;
  margin: 0 auto 30px;
}

.about-name-card {
  border: 1px solid rgba(201,168,76,0.3);
  padding: 24px 32px;
  display: inline-block;
  position: relative;
}

.about-name-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20px; right: 20px;
  height: 2px;
  background: var(--gold);
}

.about-name-card .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.about-name-card .role {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
  z-index: 5;
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.about-badge-text {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  padding: 0 10px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--gold);
}

.section-label span {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.15;
}

.section-title strong { font-weight: 700; }

.about-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.about-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}

.divider-gold {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

/* ─── SERVIZI ─── */
#servizi {
  background: var(--off-white);
  padding: 100px 90px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.services-header-left { max-width: 520px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 3px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.3s;
}

.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-card:hover::before { height: 100%; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
}

.service-icon {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.service-tag {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--off-white);
  color: var(--text-body);
  border-radius: 1px;
  border: 1px solid var(--gray-light);
}

/* ─── STUDIO LINKS ─── */
.studio-links {
  margin: 32px 0;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.studio-links-block {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.studio-links-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.studio-links-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.studio-links-block a {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.5;
  transition: color 0.2s;
  word-break: break-word;
}

.studio-links-block a:hover { color: var(--gold); }

/* ─── STRENGTHS BANNER (Punti di Forza) ─── */
.strengths-banner {
  background: var(--navy);
  padding: 100px 90px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.strengths-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 35%, rgba(201,168,76,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.strengths-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.strengths-head { margin-bottom: 40px; }

.strengths-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
}

.strengths-head h2 strong { font-weight: 700; color: var(--gold-light); }

.strengths-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-bottom: 40px;
}

.strengths-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}

.strengths-list li:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.05);
}

.strengths-list li span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.strengths-list li p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0;
  padding-top: 4px;
}

.strengths-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.strengths-tagline strong { color: var(--gold); font-weight: 600; font-style: normal; }

/* ─── BANNER CTA (legacy, conservato) ─── */
.cta-banner {
  background: var(--navy);
  padding: 80px 90px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 400px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.06));
}

.cta-banner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  font-weight: 300;
  max-width: 600px;
}

.cta-banner h2 strong { color: var(--gold); }

/* ─── PUBBLICAZIONI ─── */
#articoli {
  padding: 100px 90px;
  background: var(--white);
}

.pub-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.pub-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}

.pub-areas { display: flex; flex-direction: column; gap: 8px; }

.pub-area {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid var(--gray-light);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s;
  cursor: default;
}

.pub-area:hover { border-color: var(--gold); background: var(--off-white); }

.pub-area-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.journals-section {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--gray-light);
}

.journals-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}

.journals-list { display: flex; flex-wrap: wrap; gap: 16px; }

.journal-pill {
  background: var(--navy);
  color: var(--gold-light);
  padding: 10px 20px;
  border-radius: 2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
}

.pub-cta-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── CONTATTI ─── */
#contatti {
  background: var(--navy);
  padding: 100px 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

#contatti::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-left { position: relative; z-index: 1; }

.contact-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.contact-title strong { font-weight: 700; color: var(--gold-light); }

.contact-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
}

.contact-items { display: flex; flex-direction: column; gap: 24px; }

.contact-item { display: flex; align-items: center; gap: 20px; }

.contact-icon-wrap {
  width: 48px; height: 48px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.contact-item-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
}

/* FORM */
.contact-form {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 48px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group select option { background: var(--navy); color: var(--white); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

/* ─── PAGE HEADER (per sub-pages) ─── */
.page-header {
  padding: 160px 90px 80px;
  background: linear-gradient(135deg, #0f1e3c 0%, #162444 50%, #0a1628 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 40%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 300;
  color: var(--white);
  margin: 10px 0 18px;
}

.page-header h1 strong { font-weight: 700; color: var(--gold-light); }

.page-header p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin: 0 auto;
}

.page-header .section-label {
  justify-content: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ─── PUBBLICAZIONI PAGE ─── */
.pub-page {
  padding: 100px 90px;
  background: var(--white);
}

.pub-page-inner { max-width: 1100px; margin: 0 auto; }

.pub-block { margin-bottom: 70px; }

.pub-block-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-light);
}

.pub-block-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--text-dark);
}

.pub-block-head .count {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 5px 12px;
  border-radius: 2px;
  font-weight: 600;
}

.pub-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  counter-reset: pub;
}

.pub-list li {
  counter-increment: pub;
  position: relative;
  padding: 14px 12px 14px 48px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.2s;
}

.pub-list li::before {
  content: counter(pub, decimal-leading-zero);
  position: absolute;
  left: 8px; top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}

.pub-list li:hover { background: var(--off-white); }

.pub-year {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
}

/* Full publication list (titolo + riferimento completo) */
.pub-full-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: pubf;
}

.pub-full-list li {
  counter-increment: pubf;
  position: relative;
  padding: 22px 0 22px 64px;
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.2s;
}

.pub-full-list li::before {
  content: counter(pubf, decimal-leading-zero);
  position: absolute;
  left: 0; top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  width: 48px;
}

.pub-full-list li:hover { background: var(--off-white); padding-left: 72px; }

.pub-full-list .pub-title {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 6px;
}

.pub-full-list .pub-ref {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-body);
}

.pub-full-list .pub-ref em { color: var(--text-dark); font-style: italic; }

/* Journal pill as link */
a.journal-pill {
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

a.journal-pill:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ─── ACTIVITY / EVENTS GRID (convegni, congressi, corsi, workshop) ─── */
.activity-page {
  padding: 80px 90px;
  background: var(--white);
}

.activity-page-inner { max-width: 1280px; margin: 0 auto; }

.activity-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.activity-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.25s, border-color 0.2s;
}

.activity-card:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,0.09);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.activity-card-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1e3c 0%, #162444 50%, #0a1628 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.activity-card:hover .activity-card-thumb img { transform: scale(1.04); }

.activity-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.12), rgba(15,30,60,0.6)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 14px);
}

.activity-card-placeholder svg {
  width: 44px;
  height: 44px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
  opacity: 0.65;
}

.activity-card-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.75);
}

.activity-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.activity-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0;
}

.activity-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
  flex: 1;
}

.activity-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
  border-top: 1px solid var(--gray-light);
  padding-top: 14px;
}

.activity-card-link:hover { color: var(--gold); }

.activity-card-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8;
}

.activity-empty {
  text-align: center;
  padding: 60px 20px;
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
}

/* ─── NEWS PAGE ─── */
.news-status {
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.news-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.2s;
}

.news-card:hover {
  box-shadow: 0 12px 34px rgba(0,0,0,0.07);
  border-color: var(--gold);
}

.news-thumb {
  align-self: start;
  aspect-ratio: 1 / 1; /* foto sempre quadrata, allineata in alto */
  overflow: hidden;
  background: var(--navy);
  display: block;
}

.news-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-card:hover .news-thumb img { transform: scale(1.04); }

.news-body {
  padding: 22px 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card:not(:has(.news-thumb)) .news-body { padding: 22px 24px; }

.news-date {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.news-body h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text-dark);
}

.news-body h3 a { transition: color 0.2s; }
.news-body h3 a:hover { color: var(--gold); }

.news-snippet {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 2px 0;
}

.news-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
  padding-top: 6px;
}

.news-link:hover { color: var(--gold); }

.news-source {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--gray);
}

.news-source a { color: var(--gold); }

/* ─── FOOTER ─── */
footer {
  background: #08111f;
  padding: 60px 90px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo span { color: var(--gold); }

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

.footer-bottom p span { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── VIDEO PRESENTAZIONE ─── */
.video-section {
  padding: 110px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, #f4ece0 100%);
  position: relative;
}

.video-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}

.video-section-head { max-width: 340px; }
.video-section-head .section-title { margin-bottom: 18px; }
.video-section-head .divider-gold { margin-top: 4px; margin-bottom: 22px; }

.video-section-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(15, 30, 60, 0.28), 0 0 0 1px rgba(201, 168, 76, 0.35);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}

.video-frame::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  pointer-events: none;
  z-index: 3;
}

.video-player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--navy);
}

.video-audio-toggle {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 14px;
  background: rgba(15, 30, 60, 0.82);
  color: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.video-audio-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.video-audio-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.video-audio-icon { flex-shrink: 0; }
.video-audio-toggle .video-audio-icon-on { display: none; }
.video-audio-toggle.is-unmuted .video-audio-icon-off { display: none; }
.video-audio-toggle.is-unmuted .video-audio-icon-on { display: inline-block; }

/* ─── NAV PARTNER BADGE ─── */
.nav-partner-item { display: inline-flex; align-items: center; }
.nav-partner-badge::after { display: none !important; }
.nav-partner-badge:hover::after { width: 0 !important; }
.nav-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 7px;
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.06);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.nav-partner-badge img {
  width: 36px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.nav-partner-badge:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}
nav:not(.scrolled) .nav-partner-badge {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}
nav:not(.scrolled) .nav-partner-badge:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

/* Mobile overlay: stessa "pillola" del desktop, scalata per il menu mobile */
.mobile-partner-item {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.mobile-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 12px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 999px;
  color: var(--white) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.mobile-partner-badge img {
  width: 44px;
  height: 26px;
  object-fit: contain;
  display: block;
}
.mobile-partner-badge:hover,
.mobile-partner-badge:active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
}

/* ─── PARTNERSHIP 24 ORE PAGE ─── */
.partnership-page {
  padding: 90px 40px 120px;
  background: var(--cream);
}
.partnership-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.partnership-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 14px;
}
.partnership-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px !important;
  font-style: italic;
  color: var(--navy) !important;
  line-height: 1.55 !important;
  margin-bottom: 22px !important;
}

.partnership-block p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 14px;
}
.partnership-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.15;
}
.partnership-h2 strong { font-weight: 700; }

.partnership-block .divider-gold { margin-bottom: 22px; margin-top: 4px; }

.partnership-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partnership-list li {
  position: relative;
  padding: 14px 20px 14px 52px;
  background: var(--white);
  border: 1px solid #e7dcc5;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}
.partnership-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.partnership-list li::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.partnership-areas {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.partnership-areas li {
  position: relative;
  padding: 22px 24px 22px 26px;
  background: var(--white);
  border: 1px solid #e7dcc5;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.partnership-area-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
}
.partnership-area-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.partnership-certificate {
  background: var(--white);
  padding: 44px 44px 32px;
  border: 1px solid #e7dcc5;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(15, 30, 60, 0.08);
}
.partnership-certificate-head { margin-bottom: 26px; }
.partnership-certificate-head p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  margin-top: 12px;
}

.partnership-certificate-frame {
  position: relative;
  display: block;
  border: 1px solid #e7dcc5;
  border-radius: 4px;
  overflow: hidden;
  background: #f8f3e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partnership-certificate-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.partnership-certificate-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 30, 60, 0.16);
}
.partnership-certificate-open {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 14px;
  background: rgba(15, 30, 60, 0.9);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.partnership-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-top: 4px;
}

.partner-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 30px 16px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  border: 1px solid var(--gold);
  box-shadow: 0 14px 34px rgba(15, 30, 60, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: 'Jost', sans-serif;
}
.partner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15, 30, 60, 0.32);
  background: #14264a;
  color: var(--white);
}
.partner-button-img {
  width: 64px;
  height: 40px;
  object-fit: contain;
  display: block;
  background: var(--white);
  padding: 5px 8px;
  border-radius: 3px;
  box-sizing: content-box;
}
.partner-button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-align: left;
}
.partner-button-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.partner-button-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}
.partner-button-arrow { color: var(--gold); flex-shrink: 0; }

.partnership-cta-hint {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  #home { padding: 120px 24px 60px; min-height: auto; }
  .hero-visual { position: relative; width: 100%; height: auto; margin-top: 50px; justify-content: center; }
  .hero-badges { flex-wrap: nowrap; justify-content: center; gap: 10px; }
  .hero-partner-badge { max-width: 120px; padding: 8px 10px 6px; }
  .hero-partner-badge img { max-width: 100px; }
  .hero-partner-label { font-size: 8px; letter-spacing: 1.2px; }
  .hero-photo-frame { width: 280px; height: 380px; }
  .hero-stats {
    position: static;
    margin-top: 36px;
    right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 14px;
    width: 100%;
    text-align: center;
    align-items: stretch;
    justify-items: center;
  }
  .hero-stat { text-align: center; width: 100%; }
  .hero-stat-placeholder .hero-stat-img { margin-left: auto; margin-right: auto; }
  #home { flex-direction: column; align-items: flex-start; }

  /* Hero desc collassato su mobile */
  .hero-desc {
    max-height: 6em;
    overflow: hidden;
    position: relative;
    transition: max-height 0.45s ease;
    -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  }
  .hero-desc.expanded {
    max-height: 4000px;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .hero-desc-toggle { display: inline-flex; }
  #studio { grid-template-columns: 1fr; gap: 50px; padding: 80px 24px; }
  .about-img-frame { height: 400px; }
  .features-strip { flex-direction: column; padding: 40px 24px; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--gray-light); padding: 24px 0; }
  .feature-card:last-child { border-bottom: none; }
  #servizi { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  #articoli { padding: 80px 24px; }
  .pub-header { grid-template-columns: 1fr; gap: 40px; }
  #contatti { grid-template-columns: 1fr; padding: 80px 24px; gap: 50px; }
  .contact-form { padding: 32px 24px; }
  .cta-banner { grid-template-columns: 1fr; padding: 60px 24px; }
  footer { padding: 50px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-header { padding: 130px 24px 60px; }
  .pub-page { padding: 70px 24px; }
  .pub-list { grid-template-columns: 1fr; }
  .pub-full-list li { padding: 18px 0 18px 48px; }
  .pub-full-list li:hover { padding-left: 56px; }
  .pub-full-list li::before { width: 38px; font-size: 15px; top: 20px; }
  .pub-full-list .pub-title { font-size: 14.5px; }
  .pub-full-list .pub-ref { font-size: 12.5px; }
  .activity-page { padding: 60px 24px; }
  .activity-grid { gap: 18px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .news-card { grid-template-columns: 1fr; }
  .news-thumb { aspect-ratio: 16/9; align-self: auto; }
  .news-body { padding: 20px 22px 22px !important; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .strengths-banner { padding: 70px 24px; }
  .video-section { padding: 80px 24px; }
  .video-section-inner { grid-template-columns: 1fr; gap: 36px; }
  .video-section-head { max-width: 100%; }
  .partnership-page { padding: 70px 24px 90px; }
  .partnership-certificate { padding: 32px 26px 24px; }
  .partner-button { padding: 14px 22px 14px 16px; gap: 14px; }
  .partner-button-img { width: 52px; height: 32px; }
  .partner-button-title { font-size: 22px; }
  .strengths-list { grid-template-columns: 1fr; gap: 14px; }
  .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  nav { padding: 0 18px; height: 70px; }
  .nav-logo { font-size: 18px; }
  #home { padding: 110px 18px 50px; }
  .hero-title { font-size: clamp(36px, 10vw, 52px); }
  .hero-photo-frame { width: 240px; height: 320px; padding: 10px; }
  .hero-roles { gap: 8px; margin-bottom: 32px; }
  .hero-role-tag { font-size: 10px; padding: 5px 10px; }
  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { width: 100%; text-align: center; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 8px;
  }
  .hero-stat-num { font-size: 32px; }
  #studio { padding: 60px 18px; gap: 40px; }
  .about-img-frame { height: 340px; }
  .about-badge { width: 78px; height: 78px; bottom: -12px; right: -12px; }
  .about-badge-num { font-size: 22px; }
  .about-badge-text { font-size: 8px; }
  #servizi { padding: 60px 18px; }
  .service-card { padding: 28px 22px; }
  .cta-banner { padding: 50px 18px; }
  #articoli { padding: 60px 18px; }
  #contatti { padding: 60px 18px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 24px; }
  footer { padding: 40px 18px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; margin-bottom: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom p { font-size: 11px; }
  .page-header { padding: 110px 18px 50px; }
  .page-header h1 { font-size: clamp(32px, 9vw, 44px); }
  .pub-page { padding: 50px 18px; }
  .pub-block { margin-bottom: 50px; }
  .pub-block-head { flex-wrap: wrap; gap: 10px; }
  .mobile-overlay { padding: 80px 20px 30px; }
  .mobile-overlay > ul > li > a { font-size: 20px; }
  .mobile-overlay > ul { gap: 14px; max-width: 360px; }
  .mobile-overlay .mobile-cta { padding: 12px 28px; font-size: 12px; }
  .mobile-sublist { gap: 8px; padding: 10px 0; }
  .mobile-sublist a { font-size: 16px; }
  .mobile-group { gap: 8px; }
  .mobile-logo img { height: 36px; }
  .mobile-partner-badge { padding: 6px 16px 6px 8px; font-size: 12px; }
  .mobile-partner-badge img { height: 28px; }
  .strengths-banner { padding: 50px 18px; }
  .strengths-list li { padding: 18px 20px; gap: 14px; }
  .video-section { padding: 60px 18px; }
  .video-section-inner { gap: 28px; }
  .partnership-page { padding: 50px 18px 70px; }
  .partnership-inner { gap: 40px; }
  .partnership-lead { font-size: 20px !important; }
  .partnership-h2 { font-size: 26px; }
  .partnership-list li { padding: 12px 16px 12px 44px; font-size: 14px; }
  .partnership-list li::before { left: 14px; width: 16px; height: 16px; }
  .partnership-list li::after { left: 18px; width: 8px; height: 8px; }
  .partnership-areas { grid-template-columns: 1fr; gap: 12px; }
  .partnership-areas li { padding: 18px 20px; }
  .partnership-area-name { font-size: 18px; }
	
  .partnership-area-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.35);
    padding-bottom: 2px;
    width: fit-content;
    transition: color 0.2s, border-color 0.2s;
  }
  .partnership-area-link:hover {
    color: var(--navy);
    border-bottom-color: var(--navy);
  }
  .partnership-area-note {
    margin-top: 18px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.55;
    padding: 14px 18px;
    background: #fbf6e9;
    border-left: 3px solid var(--gold);
    border-radius: 2px;
  }
  .partnership-certificate { padding: 26px 20px 20px; }
  .partnership-certificate-open { top: 10px; right: 10px; padding: 6px 10px; font-size: 10px; }
  .partner-button { flex-wrap: wrap; justify-content: center; padding: 14px 20px; gap: 12px; }
  .partner-button-title { font-size: 20px; }
  .video-audio-toggle {
    bottom: 12px;
    right: 12px;
    padding: 9px 14px 9px 12px;
    font-size: 12px;
    gap: 8px;
  }
  .video-audio-label { display: none; }
  .video-audio-toggle { padding: 10px; border-radius: 999px; }
  .video-frame::after { width: 24px; height: 24px; top: 10px; left: 10px; }
}

footer .contact-icon-wrap {
	display: none;
}
footer .contact-item {
	margin-top: 5px;
}
.footer-bottom a {
	display: block;
	margin-top: 5px;
}

 .partnership-area-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.35);
    padding-bottom: 2px;
    width: fit-content;
    transition: color 0.2s, border-color 0.2s;
  }
  .partnership-area-link:hover {
    color: var(--navy);
    border-bottom-color: var(--navy);
  }
  .partnership-area-note {
    margin-top: 18px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.55;
    padding: 14px 18px;
    background: #fbf6e9;
    border-left: 3px solid var(--gold);
    border-radius: 2px;
  }


@media(min-width: 1000px) {
.hero-stats {
	width: 45%;
	padding-right: 40px;
}
}

@media(max-width: 960px) {
.hero-stats {
	grid-template-columns: repeat(2, 1fr);
	gap: 22px 8px;
}
}
/* ===== Didascalia uniforme eventi: data + luogo ===== */
.activity-card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.activity-card-date,
.activity-card-place {
  position: relative;
  padding-left: 26px;
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-body);
}

.activity-card-date {
  font-weight: 600;
  color: var(--navy);
}

.activity-card-date::before,
.activity-card-place::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
}

.activity-card-date::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

.activity-card-place::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

/* ─── EVEREST FORMS — pagina Contatti: replica esatta del look del form originale ─── */
.contact-form .evf-container { margin: 0; }
.contact-form .everest-form .evf-field {
  margin-bottom: 20px;
  padding: 0;
  display: block;
  grid-template-columns: none; /* neutralizza l'eventuale classe .form-row del tema sui wrapper EVF */
}
.contact-form .everest-form label.evf-field-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  font-weight: 400;
}
.contact-form .everest-form label.evf-field-label abbr.required { display: none; } /* look identico all'originale, senza asterischi */
.contact-form .everest-form input[type="text"],
.contact-form .everest-form input[type="email"],
.contact-form .everest-form input[type="tel"],
.contact-form .everest-form select,
.contact-form .everest-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  box-shadow: none;
  height: auto;
}
.contact-form .everest-form input:focus,
.contact-form .everest-form select:focus,
.contact-form .everest-form textarea:focus { border-color: var(--gold); box-shadow: none; }
.contact-form .everest-form textarea { resize: vertical; min-height: 120px; }
.contact-form .everest-form select option { background: var(--navy); color: var(--white); }
.contact-form .everest-form input::placeholder,
.contact-form .everest-form textarea::placeholder { color: rgba(255,255,255,0.25); opacity: 1; }
.contact-form .everest-form select:invalid,
.contact-form .everest-form select option[value=""] { color: rgba(255,255,255,0.25); }

.contact-form .everest-form button[type="submit"] {
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
  display: inline-block;
  font-family: 'Jost', sans-serif;
  line-height: inherit;
}
.contact-form .everest-form button[type="submit"]:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

/* messaggi di validazione jQuery-validate */
.contact-form .everest-form label.evf-error {
  display: block;
  font-size: 11px;
  letter-spacing: normal;
  text-transform: none;
  color: #e08a8a;
  margin: 6px 0 0;
}
.contact-form .everest-form .evf-field.everest-forms-invalid input,
.contact-form .everest-form .evf-field.everest-forms-invalid select,
.contact-form .everest-form .evf-field.everest-forms-invalid textarea { border-color: #b05555; }

/* messaggio di esito invio */
.contact-form .everest-forms-notice {
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 14px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.contact-form .everest-forms-notice--success {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
}
.contact-form .everest-forms-notice--error { border-color: #b05555; background: rgba(176,85,85,0.12); }
