/* ===== base.css ===== */
/* ============================================================
 * base.css — reset, @font-face, root vars, typography
 * ============================================================ */

@font-face {
  font-family: 'MyriadPro';
  src: url('assets/fonts/MYRIADPRO-REGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MyriadPro';
  src: url('assets/fonts/MYRIADPRO-BOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MyriadPro';
  src: url('assets/fonts/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MyriadPro-Light';
  src: url('assets/fonts/MyriadPro-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MyriadPro-Cond';
  src: url('assets/fonts/MYRIADPRO-COND.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-navy: #2e3754;
  --bg-deep: #0a0e1c;
  --bg-studio: #0d1120;
  --accent-green: #d5e09e;
  --accent-olive: #959056;
  --text-light: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.65);
  --scrollbar-track: #1a2140;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-navy);
  color: var(--text-light);
  font-family: MyriadPro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-olive);
  border-radius: 2px;
}

::selection {
  background: rgba(213, 224, 158, 0.3);
  color: var(--accent-green);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

/* Reveal-on-scroll helper (cabled by scripts/reveal.js).
   Only hide initial state when JS is enabled; otherwise content is visible. */
.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Visually hidden — accessibile a screen reader e crawler, invisibile a schermo */
.sgt-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== nav.css ===== */
/* ============================================================
 * nav.css — fixed navbar audace
 * ============================================================ */

.sgt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 20px 0;
}

.sgt-nav.is-scrolled {
  background-color: rgba(10, 14, 28, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(213, 224, 158, 0.12);
  padding: 12px 0;
}

.sgt-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sgt-nav-logo-link {
  display: inline-flex;
  align-items: center;
}

.sgt-nav-logo {
  height: 44px;
  width: auto;
  filter: brightness(1.1);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.4s ease;
}

.sgt-nav.is-scrolled .sgt-nav-logo {
  height: 36px;
  filter: none;
}

/* Desktop links */
.sgt-nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.sgt-nav-link {
  position: relative;
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #a8b87a;
  padding: 4px 0;
  opacity: 0.7;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.sgt-nav-link:hover,
.sgt-nav-link:focus-visible {
  color: var(--accent-green);
  opacity: 1;
}

.sgt-nav-link.is-active {
  color: var(--accent-green);
  opacity: 1;
}

.sgt-nav-link-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-green);
  transition: width 0.3s ease;
}

.sgt-nav-link.is-active .sgt-nav-link-underline,
.sgt-nav-link:hover .sgt-nav-link-underline,
.sgt-nav-link:focus-visible .sgt-nav-link-underline {
  width: 100%;
}

/* Hamburger */
.sgt-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}

.sgt-hamburger-bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent-green);
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sgt-hamburger.is-open .sgt-hamburger-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.sgt-hamburger.is-open .sgt-hamburger-bar:nth-child(2) {
  transform: scaleX(0);
  opacity: 0;
}
.sgt-hamburger.is-open .sgt-hamburger-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu */
.sgt-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(46, 55, 84, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent;
}

.sgt-mobile-menu.is-open {
  max-height: 320px;
  padding: 24px 40px 32px;
  border-bottom-color: rgba(213, 224, 158, 0.12);
}

.sgt-mobile-link {
  display: block;
  padding: 12px 0;
  font-family: 'MyriadPro', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
  opacity: 0.9;
  text-decoration: none;
  border-bottom: 1px solid rgba(213, 224, 158, 0.1);
  transition: opacity 0.2s ease;
}

.sgt-mobile-link:last-child {
  border-bottom: none;
}

.sgt-mobile-link:hover,
.sgt-mobile-link:focus-visible {
  opacity: 1;
}

/* ===== hero.css ===== */
/* ============================================================
 * hero.css — hero section audace
 * ============================================================ */

.sgt-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.sgt-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/Sfondo-2.png');
  background-size: cover;
  background-position: center 56%;
  opacity: 0.18;
  filter: saturate(0.4) brightness(0.5);
  will-change: transform;
}

.sgt-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(149, 144, 86, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, rgba(10, 14, 28, 0.2) 0%, rgba(10, 14, 28, 0.7) 100%);
}

.sgt-hero-rings {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.sgt-hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(213, 224, 158, 0.06);
  border-radius: 50%;
  animation-name: sgt-hero-pulse;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.sgt-hero-ring-sm {
  width: 320px;
  height: 320px;
  margin-top: -160px;
  margin-left: -160px;
  animation-duration: 4s;
}
.sgt-hero-ring-md {
  width: 480px;
  height: 480px;
  margin-top: -240px;
  margin-left: -240px;
  animation-duration: 5.5s;
}
.sgt-hero-ring-lg {
  width: 640px;
  height: 640px;
  margin-top: -320px;
  margin-left: -320px;
  animation-duration: 7s;
}

@keyframes sgt-hero-pulse {
  from { opacity: 0.3; transform: scale(0.97); }
  to   { opacity: 0.8; transform: scale(1.03); }
}

.sgt-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.has-js .sgt-hero-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.has-js .sgt-hero-content.is-loaded {
  opacity: 1;
  transform: none;
}

.sgt-hero-logo {
  width: 320px;
  max-width: 82vw;
  height: auto;
  margin-bottom: 40px;
  filter: brightness(1.15) drop-shadow(0 0 40px rgba(213, 224, 158, 0.25));
}

.sgt-hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
  background: none;
  border: none;
}
.sgt-hero-scroll-cue.is-visible {
  opacity: 0.88;
  animation: sgt-hero-cue-bounce 2.4s ease-in-out 0.8s infinite;
}

@keyframes sgt-hero-cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.sgt-hero-scroll-label {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.sgt-hero-scroll-dot {
  animation: sgt-hero-scroll 1.6s ease infinite;
  transform-origin: center;
}
@keyframes sgt-hero-scroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(6px); opacity: 0.3; }
}

/* ===== studio.css ===== */
/* ============================================================
 * studio.css — sezione "Lo Studio" audace
 * ============================================================ */

.sgt-studio {
  background: var(--bg-studio);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.sgt-studio-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(149, 144, 86, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sgt-studio-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

/* shared section label component (used by Studio/Servizi/Team/Contatti) */
.sgt-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.sgt-section-label-line {
  width: 28px;
  height: 1px;
  background: var(--accent-olive);
  flex-shrink: 0;
}

.sgt-section-label-text {
  font-family: 'MyriadPro', sans-serif;
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-olive);
}

.sgt-studio-title {
  font-family: 'MyriadPro', sans-serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--accent-green);
}

.sgt-studio-title-accent {
  display: block;
  font-weight: 600;
  font-style: italic;
  color: #c4d088;
}

.sgt-studio-body {
  text-align: justify;
}

.sgt-studio-text {
  font-family: 'MyriadPro-Light', 'MyriadPro', sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(213, 224, 158, 0.75);
  text-wrap: pretty;
}

.sgt-studio-text + .sgt-studio-text {
  margin-top: 24px;
}

.sgt-studio-cta {
  display: inline-block;
  margin-top: 32px;
  font-family: 'MyriadPro', sans-serif;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 32px;
  background: transparent;
  color: var(--accent-green);
  border: 1px solid rgba(213, 224, 158, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.sgt-studio-cta:hover,
.sgt-studio-cta:focus-visible {
  background: rgba(213, 224, 158, 0.08);
  border-color: var(--accent-green);
}

/* ===== servizi.css ===== */
/* ============================================================
 * servizi.css — sezione Servizi audace (accordion)
 * ============================================================ */

.sgt-servizi {
  background: var(--bg-navy);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.sgt-servizi-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

/* Left sticky column */
.sgt-servizi-left {
  position: sticky;
  top: 100px;
}

.sgt-servizi-title {
  font-family: 'MyriadPro', sans-serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--accent-green);
  line-height: 1.1;
  margin-bottom: 28px;
}

.sgt-servizi-title-accent {
  font-weight: 600;
  font-style: italic;
}

.sgt-servizi-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  filter: brightness(0.7) saturate(0.8);
  transition: filter 0.4s ease;
}

.sgt-servizi-caption {
  font-family: 'MyriadPro-Light', sans-serif;
  color: rgba(213, 224, 158, 0.7);
  margin-top: 16px;
  line-height: 1.7;
  font-size: clamp(0.88rem, 0.9vw, 1rem);
}

/* Right accordion */
.sgt-servizi-item {
  border-bottom: 1px solid rgba(213, 224, 158, 0.12);
}
.sgt-servizi-item--first {
  border-top: 1px solid rgba(213, 224, 158, 0.12);
}

.sgt-servizi-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.sgt-servizi-trigger-label {
  font-family: 'MyriadPro', sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  color: rgba(213, 224, 158, 0.75);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.3s ease, font-weight 0.3s ease;
  flex: 1;
}

.sgt-servizi-trigger-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(213, 224, 158, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  background: transparent;
  font-size: 1rem;
  font-weight: 300;
  transition: background-color 0.3s ease, border-color 0.3s ease,
              color 0.3s ease, transform 0.3s ease;
}

/* Open state — toggled by servizi.js via aria-expanded="true" */
.sgt-servizi-trigger[aria-expanded="true"] .sgt-servizi-trigger-label {
  color: var(--accent-green);
  font-weight: 600;
}

.sgt-servizi-trigger[aria-expanded="true"] .sgt-servizi-trigger-icon {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--bg-navy);
  transform: rotate(45deg);
}

.sgt-servizi-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.sgt-servizi-panel.is-open {
  max-height: 600px;
}

.sgt-servizi-panel-inner {
  font-family: 'MyriadPro-Light', 'MyriadPro', sans-serif;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  color: rgba(213, 224, 158, 0.7);
  padding-bottom: 20px;
  padding-right: 40px;
  text-align: justify;
  text-wrap: pretty;
}

.sgt-servizi-panel-inner p {
  margin: 0;
}

/* ===== team.css ===== */
/* ============================================================
 * team.css — sezione Team audace (cards + modal)
 * ============================================================ */

.sgt-team {
  background: #101527;
  padding: 100px 40px;
  position: relative;
}

/* Header */
.sgt-team-header {
  max-width: 1280px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sgt-team-title {
  font-family: 'MyriadPro', sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-green);
  line-height: 1.1;
  margin: 0;
}
.sgt-team-title-accent {
  font-weight: 600;
  font-style: italic;
}

.sgt-team-subtitle {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.9rem;
  color: rgba(213, 224, 158, 0.55);
  max-width: 380px;
  line-height: 1.7;
}

/* Grid */
.sgt-team-grid {
  list-style: none;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 2px;
  align-items: stretch;
  padding: 0;
}

.sgt-team-card-wrap {
  flex: 1 1 0%;
  min-width: 0;
  transition: flex 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  list-style: none;
}

.sgt-team-card-wrap:hover {
  flex: 1.6 1 0%;
}

.sgt-team-card {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  border-radius: 12px;
  isolation: isolate;
  display: block;
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
}

.sgt-team-card-photo {
  position: relative;
  display: block;
  padding-bottom: 145%;
  overflow: hidden;
}

.sgt-team-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.sgt-team-card:hover .sgt-team-card-photo img,
.sgt-team-card:focus-visible .sgt-team-card-photo img {
  transform: scale(1.06);
}

.sgt-team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(transparent, rgba(20, 28, 52, 0.97));
  pointer-events: none;
  z-index: 1;
}

.sgt-team-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 18px;
  z-index: 2;
  display: block;
}

.sgt-team-card-role {
  display: block;
  font-family: 'MyriadPro-Light', 'MyriadPro', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-olive);
  margin-bottom: 4px;
}

.sgt-team-card-name {
  display: block;
  font-family: 'MyriadPro', sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  color: var(--accent-green);
  line-height: 1.25;
  text-wrap: pretty;
}

.sgt-team-card-cue {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(213, 224, 158, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 28, 52, 0.5);
  backdrop-filter: blur(4px);
  color: var(--accent-green);
  font-size: 0.85rem;
  font-weight: 300;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.sgt-team-card:hover .sgt-team-card-cue,
.sgt-team-card:focus-visible .sgt-team-card-cue {
  background: rgba(213, 224, 158, 0.18);
  border-color: var(--accent-green);
}

/* SEO-only static bios: in DOM for indexing, hidden via [hidden] attribute */
.sgt-team-bio[hidden] {
  display: none;
}

/* Modal */
.sgt-team-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 14, 28, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sgt-team-modal[hidden] {
  display: none;
}

.sgt-team-modal.is-open {
  opacity: 1;
}

.sgt-team-modal-card {
  background: #0f1527;
  border: 1px solid rgba(213, 224, 158, 0.12);
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  min-height: 460px;
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transform: scale(0.93) translateY(28px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  isolation: isolate;
}

.sgt-team-modal.is-open .sgt-team-modal-card {
  transform: scale(1) translateY(0);
}

.sgt-team-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(213, 224, 158, 0.25);
  border-radius: 50%;
  color: var(--accent-green);
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.sgt-team-modal-close:hover,
.sgt-team-modal-close:focus-visible {
  background: rgba(213, 224, 158, 0.15);
  border-color: var(--accent-green);
}

.sgt-team-modal-photo {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.sgt-team-modal-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sgt-team-modal-photo-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(transparent, rgba(10, 14, 28, 0.92));
}

.sgt-team-modal-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px 20px;
}

.sgt-team-modal-role {
  font-family: 'MyriadPro-Light', 'MyriadPro', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-olive);
  margin: 0 0 5px;
}

.sgt-team-modal-name {
  font-family: 'MyriadPro', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-green);
  margin: 0;
  line-height: 1.25;
}

.sgt-team-modal-bio {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  border-radius: 0 20px 20px 0;
}

.sgt-team-modal-accent {
  width: 36px;
  height: 1px;
  background: var(--accent-olive);
  margin-bottom: 24px;
  opacity: 0.6;
  flex-shrink: 0;
}

.sgt-team-modal-bio-content p {
  font-family: 'MyriadPro-Light', 'MyriadPro', sans-serif;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.85;
  color: rgba(213, 224, 158, 0.78);
  margin-bottom: 16px;
  text-align: justify;
}
.sgt-team-modal-bio-content p:last-child {
  margin-bottom: 24px;
}

.sgt-team-modal-bio-content ul {
  font-family: 'MyriadPro-Light', 'MyriadPro', sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.75;
  color: rgba(213, 224, 158, 0.78);
  margin: 8px 0 20px;
  padding-left: 1.2em;
}
.sgt-team-modal-bio-content ul li {
  margin-bottom: 6px;
  padding-left: 4px;
}
.sgt-team-modal-bio-content ul li::marker {
  color: var(--accent-olive);
}

.sgt-team-modal-bio-emails {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(213, 224, 158, 0.1);
  flex-shrink: 0;
  margin-top: auto;
}

.sgt-team-modal-bio-emails a {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.8rem;
  color: var(--accent-olive);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.sgt-team-modal-bio-emails a:hover,
.sgt-team-modal-bio-emails a:focus-visible {
  color: var(--accent-green);
}

/* Body scroll lock */
body.sgt-modal-open {
  overflow: hidden;
}

/* ===== contatti.css ===== */
/* ============================================================
 * contatti.css — sezione Contatti audace + form
 * ============================================================ */

.sgt-contatti {
  background: var(--bg-deep);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.sgt-contatti-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at 0% 100%, rgba(149, 144, 86, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.sgt-contatti-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.sgt-contatti-title {
  font-family: 'MyriadPro', sans-serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--accent-green);
  line-height: 1.1;
  margin-bottom: 40px;
}
.sgt-contatti-title-accent {
  font-weight: 600;
  font-style: italic;
}

.sgt-contatti-info {
  margin-bottom: 40px;
}

.sgt-contatti-info-block {
  margin-bottom: 28px;
}

.sgt-contatti-info-label {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: clamp(0.65rem, 0.75vw, 0.85rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-olive);
  margin: 0 0 6px;
}

.sgt-contatti-info-value {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  color: rgba(213, 224, 158, 0.8);
  margin: 0;
  line-height: 1.75;
}

.sgt-contatti-info-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.sgt-contatti-info-value a:hover,
.sgt-contatti-info-value a:focus-visible {
  color: var(--accent-green);
  border-bottom-color: var(--accent-green);
}

.sgt-contatti-map {
  width: 100%;
  aspect-ratio: 4 / 2.5;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(213, 224, 158, 0.1);
  position: relative;
  overflow: hidden;
}

.sgt-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sgt-map-placeholder[hidden] {
  display: none;
}

.sgt-map-placeholder-btn {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(213, 224, 158, 0.45);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(213, 224, 158, 0.18);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color 0.25s ease;
  text-align: center;
  line-height: 1.5;
}

.sgt-map-placeholder-btn:hover,
.sgt-map-placeholder-btn:focus-visible {
  color: var(--accent-green);
}

.sgt-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sgt-map-iframe[hidden] {
  display: none;
}

.sgt-contatti-map-cta {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(213, 224, 158, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(213, 224, 158, 0.2);
  padding-bottom: 2px;
  transition: color 0.25s ease;
  display: inline-block;
  margin-top: 12px;
}
.sgt-contatti-map-cta:hover,
.sgt-contatti-map-cta:focus-visible {
  color: var(--accent-green);
}

.sgt-contatti-links {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.sgt-contatti-link {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.8rem;
  color: rgba(213, 224, 158, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(213, 224, 158, 0.2);
  padding-bottom: 2px;
  transition: color 0.25s ease;
}
.sgt-contatti-link:hover,
.sgt-contatti-link:focus-visible {
  color: var(--accent-green);
}

/* Right column — form */
.sgt-contatti-form-title {
  font-family: 'MyriadPro', sans-serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: var(--accent-green);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.sgt-contatti-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.sgt-field {
  margin-bottom: 32px;
  position: relative;
}

.sgt-field-label {
  display: block;
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: clamp(0.65rem, 0.75vw, 0.85rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(213, 224, 158, 0.75);
  margin-bottom: 4px;
}

.sgt-field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(213, 224, 158, 0.25);
  color: var(--accent-green);
  font-family: 'MyriadPro-Light', 'MyriadPro', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s ease;
  letter-spacing: 0.02em;
}

.sgt-field-input:focus {
  border-bottom-color: var(--accent-green);
}

.sgt-field.has-error .sgt-field-input,
.sgt-field.has-error .sgt-field-input:focus {
  border-bottom-color: #e07070;
}

.sgt-field-textarea {
  resize: vertical;
  min-height: 100px;
}

.sgt-field-input::placeholder {
  color: rgba(213, 224, 158, 0.2);
}

.sgt-field-input:-webkit-autofill,
.sgt-field-input:-webkit-autofill:hover,
.sgt-field-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: var(--accent-green);
  caret-color: var(--accent-green);
  transition: background-color 9999s ease-out;
}

.sgt-field-error {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.7rem;
  color: #e07070;
  position: absolute;
  bottom: -18px;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sgt-field.has-error .sgt-field-error {
  opacity: 1;
}

/* Submit button */
.sgt-contatti-submit {
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--accent-green);
  color: #2e3754;
  border: 1px solid var(--accent-green);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.sgt-contatti-submit:hover:not(:disabled),
.sgt-contatti-submit:focus-visible:not(:disabled) {
  background: #c4d088;
  border-color: #c4d088;
}

.sgt-contatti-submit:disabled {
  background: transparent;
  color: var(--accent-green);
  border-color: rgba(213, 224, 158, 0.4);
  cursor: not-allowed;
}

.sgt-contatti-submit-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(213, 224, 158, 0.3);
  border-top-color: var(--accent-green);
  border-radius: 50%;
  animation: sgt-spin 0.7s linear infinite;
}
.sgt-contatti-submit.is-sending .sgt-contatti-submit-spinner {
  display: inline-block;
}

@keyframes sgt-spin {
  to { transform: rotate(360deg); }
}

.sgt-contatti-form-note {
  margin-top: 12px;
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.78rem;
  color: rgba(213, 224, 158, 0.7);
  line-height: 1.5;
}
.sgt-contatti-form-note a {
  color: rgba(213, 224, 158, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sgt-contatti-form-note a:hover {
  color: rgba(213, 224, 158, 0.9);
}

.sgt-contatti-form-error {
  margin-top: 16px;
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.85rem;
  color: #e07070;
  line-height: 1.6;
}
.sgt-contatti-form-error[hidden] {
  display: none;
}

/* Success state */
.sgt-contatti-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  gap: 20px;
}
.sgt-contatti-success[hidden] {
  display: none;
}

.sgt-contatti-success-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sgt-check-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sgt-contatti-success-check-path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: sgt-check-draw 0.6s 0.3s ease forwards;
}

@keyframes sgt-check-in {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes sgt-check-draw {
  to { stroke-dashoffset: 0; }
}

.sgt-contatti-success-title {
  font-family: 'MyriadPro', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--accent-green);
}

.sgt-contatti-success-text {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.9rem;
  color: rgba(213, 224, 158, 0.6);
  line-height: 1.7;
  max-width: 320px;
}

.sgt-contatti-success-btn {
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: transparent;
  color: var(--accent-green);
  border: 1px solid rgba(213, 224, 158, 0.35);
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.sgt-contatti-success-btn:hover,
.sgt-contatti-success-btn:focus-visible {
  background: rgba(213, 224, 158, 0.08);
  border-color: var(--accent-green);
}

/* honeypot — zero size, fuori dal flusso, invisibile */
.sgt-hp {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  border: 0;
  padding: 0;
  margin: 0;
}

/* ===== footer.css ===== */
/* ============================================================
 * footer.css — sito footer audace
 * ============================================================ */

.sgt-footer {
  background: #060810;
  border-top: 1px solid rgba(149, 144, 86, 0.25);
  padding: 40px 40px 32px;
}

.sgt-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.sgt-footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.7;
}

.sgt-footer-copy {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.72rem;
  color: rgba(213, 224, 158, 0.7);
  letter-spacing: 0.05em;
  margin: 0;
}

.sgt-footer-links {
  display: flex;
  gap: 24px;
}

.sgt-footer-link {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.72rem;
  color: rgba(213, 224, 158, 0.7);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.sgt-footer-link:hover,
.sgt-footer-link:focus-visible {
  color: var(--accent-green);
}

/* ===== cookie-banner.css ===== */
/* ============================================================
 * cookie-banner.css — consenso cookie Google Maps
 * ============================================================ */

.sgt-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 14, 28, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(213, 224, 158, 0.12);
}

.sgt-cookie-banner[hidden] {
  display: none;
}

.sgt-cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.sgt-cookie-banner-text {
  flex: 1;
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.82rem;
  color: rgba(213, 224, 158, 0.65);
  line-height: 1.6;
  min-width: 240px;
}

.sgt-cookie-banner-text strong {
  color: var(--accent-green);
  font-family: 'MyriadPro', sans-serif;
  font-weight: 600;
}

.sgt-cookie-banner-link {
  color: rgba(213, 224, 158, 0.65);
  border-bottom: 1px solid rgba(213, 224, 158, 0.25);
  padding-bottom: 1px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.sgt-cookie-banner-link:hover {
  color: var(--accent-green);
}

.sgt-cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.sgt-cookie-btn {
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.sgt-cookie-btn-decline {
  background: transparent;
  color: rgba(213, 224, 158, 0.5);
  border: 1px solid rgba(213, 224, 158, 0.2);
}

.sgt-cookie-btn-decline:hover,
.sgt-cookie-btn-decline:focus-visible {
  color: var(--accent-green);
  border-color: rgba(213, 224, 158, 0.4);
}

.sgt-cookie-btn-accept {
  background: var(--accent-green);
  color: #2e3754;
  border: 1px solid var(--accent-green);
}

.sgt-cookie-btn-accept:hover,
.sgt-cookie-btn-accept:focus-visible {
  background: #c4d088;
  border-color: #c4d088;
}

@media (max-width: 600px) {
  .sgt-cookie-banner-inner {
    padding: 16px 24px;
    gap: 16px;
  }

  .sgt-cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ===== privacy-modal.css ===== */
/* ============================================================
 * privacy-modal.css — modal inline Privacy Policy
 * ============================================================ */

.sgt-privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 8, 18, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: sgt-overlay-in 0.2s ease;
}

.sgt-privacy-overlay[hidden] {
  display: none;
}

@keyframes sgt-overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sgt-privacy-modal {
  position: relative;
  background: var(--bg-studio);
  border: 1px solid rgba(213, 224, 158, 0.12);
  width: 100%;
  max-width: 720px;
  max-height: 82vh;
  overflow-y: auto;
  animation: sgt-modal-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--accent-olive) transparent;
}

@keyframes sgt-modal-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.sgt-privacy-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 20px 20px 0 0;
  color: rgba(213, 224, 158, 0.45);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
  z-index: 1;
}

.sgt-privacy-close:hover,
.sgt-privacy-close:focus-visible {
  color: var(--accent-green);
}

.sgt-privacy-content {
  padding: 48px 52px 52px;
  clear: both;
}

.sgt-privacy-heading {
  font-family: 'MyriadPro', sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--accent-green);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.sgt-privacy-update {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(213, 224, 158, 0.35);
  margin-bottom: 44px;
}

.sgt-privacy-subheading {
  font-family: 'MyriadPro', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-olive);
  margin: 36px 0 10px;
}

.sgt-privacy-content p {
  font-family: 'MyriadPro-Light', sans-serif;
  font-size: 0.92rem;
  color: rgba(213, 224, 158, 0.7);
  line-height: 1.75;
}

.sgt-privacy-content a {
  color: var(--accent-green);
  border-bottom: 1px solid rgba(213, 224, 158, 0.25);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}

.sgt-privacy-content a:hover {
  border-color: var(--accent-green);
}

/* Scroll lock quando il modal è aperto */
body.has-modal {
  overflow: hidden;
}

@media (max-width: 600px) {
  .sgt-privacy-content {
    padding: 32px 28px 40px;
  }
}

/* ===== responsive.css ===== */
/* ============================================================
 * responsive.css — media queries cross-sezione
 * ============================================================ */

/* ----- ≤ 1024px : team grid wraps -------------------------- */
@media (max-width: 1024px) {
  .sgt-team-grid {
    flex-wrap: wrap;
  }
  .sgt-team-card-wrap {
    flex: 1 1 30%;
    min-width: 30%;
  }
}

/* ----- ≤ 900px : two-col grids collapse -------------------- */
@media (max-width: 900px) {
  .sgt-studio-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sgt-servizi-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sgt-servizi-left {
    position: static;
  }
  .sgt-contatti-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .sgt-contatti-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- ≤ 768px : mobile layout ----------------------------- */
@media (max-width: 768px) {
  /* Nav */
  .sgt-nav-links {
    display: none;
  }
  .sgt-hamburger {
    display: flex;
  }

  /* Hero */
  .sgt-hero-logo {
    width: 200px;
  }
  .sgt-hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .sgt-hero-buttons .sgt-hero-btn {
    text-align: center;
    width: 100%;
  }
  .sgt-hero-scroll-cue {
    display: none;
  }

  /* Sezione padding */
  .sgt-studio,
  .sgt-servizi,
  .sgt-team,
  .sgt-contatti {
    padding: 60px 20px;
  }
  .sgt-servizi-img {
    height: 220px;
  }

  /* Team header */
  .sgt-team-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }

  /* Modal */
  .sgt-team-modal-card {
    flex-direction: column;
    max-width: 96vw;
    max-height: 90svh;
    border-radius: 16px;
    overflow: hidden;
  }
  .sgt-team-modal-photo {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    border-radius: 16px 16px 0 0;
  }
  .sgt-team-modal-bio {
    padding: 20px 18px 18px;
    border-radius: 0 0 16px 16px;
  }

  /* Footer */
  .sgt-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* No "rivers" su mobile: niente justify nei blocchi di testo */
  .sgt-studio-text,
  .sgt-servizi-panel-inner,
  .sgt-team-modal-bio-content p {
    text-align: left;
  }
}

/* ----- ≤ 640px : team grid → horizontal carousel ----------- */
@media (max-width: 640px) {
  .sgt-team-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 4px 8px;
    scroll-padding: 0;
  }
  .sgt-team-grid::-webkit-scrollbar {
    display: none;
  }
  .sgt-team-card-wrap {
    flex: 0 0 84%;
    min-width: 84%;
    scroll-snap-align: center;
    transition: none;
  }
  .sgt-team-card-wrap:hover {
    flex: 0 0 84%;
  }
  .sgt-team-card-photo {
    padding-bottom: 122%;
  }
}

/* ----- ≤ 480px : hero logo smaller ------------------------- */
@media (max-width: 480px) {
  .sgt-hero-logo {
    width: 170px;
  }
}

/* ----- min-width 769px : explicitly hide hamburger -------- */
@media (min-width: 769px) {
  .sgt-hamburger {
    display: none;
  }
}
