/* =====================================================
   ECLOUD LUCE AGENCY — STYLE
   Theatrical editorial dark theme · gold accent
   Mobile-first
   ===================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* Surfaces (warm deep black, slight golden hue) */
  --bg:            oklch(0.12 0.012 75);
  --bg-elevated:   oklch(0.16 0.014 75);
  --bg-deep:       oklch(0.08 0.010 75);

  /* Text */
  --fg:            oklch(0.95 0.020 80);
  --fg-strong:     oklch(0.99 0.018 85);
  --fg-muted:      oklch(0.72 0.025 80);
  --fg-dim:        oklch(0.55 0.020 80);

  /* Brand gold (the dominant accent) */
  --gold:          oklch(0.80 0.140 82);
  --gold-bright:   oklch(0.88 0.160 86);
  --gold-deep:     oklch(0.62 0.130 78);
  --gold-faint:    oklch(0.30 0.060 78);

  /* Secondary palette (used as colored dots / category tags only) */
  --accent-azure:    oklch(0.74 0.150 240);
  --accent-emerald:  oklch(0.74 0.150 155);
  --accent-rose:     oklch(0.78 0.150 18);
  --accent-fuchsia:  oklch(0.72 0.190 330);

  /* Lines */
  --border:        oklch(0.28 0.020 80);
  --border-soft:   oklch(0.20 0.015 80);
  --border-bright: oklch(0.45 0.040 80);

  /* Type */
  --font-display: 'Bodoni Moda', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Layout */
  --container: 1280px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: 180ms;
  --t-med:  340ms;
  --t-slow: 720ms;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
img, picture, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }

::selection {
  background: var(--gold);
  color: var(--bg-deep);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: .75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  z-index: 200;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- BACKGROUND ATMOSPHERE ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, oklch(0.20 0.04 80 / .5), transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 90%, oklch(0.18 0.06 78 / .35), transparent 70%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .9 0 0 0 0 .8 0 0 0 0 .6 0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

main, header, footer { position: relative; z-index: 2; }

/* ---------- COMMON ---------- */
.eyebrow,
.section-kicker {
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  font-weight: 500;
}

.section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--gold);
  display: inline-block;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), backdrop-filter var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: oklch(0.10 0.010 75 / .85);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--border-soft);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand wordmark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  color: var(--gold);
  display: inline-flex;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: var(--fg-strong);
}
.brand-suffix {
  font-family: var(--font-mono);
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .35em;
  color: var(--gold-deep);
  margin-top: 4px;
}

/* Desktop nav */
.site-nav {
  display: none;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--fg-muted);
  position: relative;
  padding: .35rem 0;
  transition: color var(--t-fast) var(--ease);
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right var(--t-med) var(--ease);
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--fg-strong);
}
.site-nav a:hover::after,
.site-nav a.is-active::after {
  right: 0;
}
.site-nav a.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  padding: .55rem 1.1rem;
  border-radius: 1px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .68rem;
  font-family: var(--font-mono);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.site-nav a.nav-cta::after { display: none; }
.site-nav a.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 1px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav drawer */
@media (max-width: 767.98px) {
  .site-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85vw, 360px);
    background: var(--bg-deep);
    border-left: 1px solid var(--border);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    z-index: 90;
    overflow-y: auto;
  }
  .site-nav.is-open {
    transform: translateX(0);
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav li {
    border-bottom: 1px solid var(--border-soft);
  }
  .site-nav a {
    display: block;
    padding: 1.1rem 0;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--fg);
    letter-spacing: 0;
  }
  .site-nav a::after { display: none; }
  .site-nav a.nav-cta {
    border: none;
    color: var(--gold);
    text-transform: none;
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: 0;
    padding: 1.1rem 0;
  }
  .site-nav a.nav-cta:hover {
    background: transparent;
    color: var(--gold-bright);
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: oklch(0 0 0 / .55);
    z-index: 80;
    backdrop-filter: blur(2px);
  }
}

@media (min-width: 768px) {
  .site-nav { display: block; }
  .nav-toggle { display: none; }
  .site-header { padding: 1.4rem 0; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 7rem var(--pad-x) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.hero-loc {
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--fg-dim);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 13vw, 9rem);
  line-height: .92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg-strong);
}
.hero-title-line {
  display: block;
}
.hero-title-line.two {
  color: var(--gold);
  font-weight: 500;
}
.hero-title-line.two em {
  font-style: italic;
  font-weight: 400;
}
.hero-title-line.three {
  font-style: italic;
  font-weight: 400;
}

.hero-logo {
  position: relative;
  width: clamp(160px, 40vw, 260px);
  align-self: flex-start;
  margin: 1rem 0;
}
.hero-logo picture, .hero-logo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}
.hero-glow {
  /* removed: il logo trasparentizzato ha già le sue scintille naturali (lens flare interno).
     un radial gradient CSS sopra creava un alone "faretto" troppo invasivo. */
  display: none;
}

.hero-lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 38ch;
  margin: 0;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: .5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 1.6rem;
  min-height: 48px;
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  border-radius: 1px;
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 30px oklch(0.80 0.16 82 / .35);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-credit {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--fg-dim);
  margin-top: 1.5rem;
}
.hero-credit strong {
  color: var(--fg);
  font-weight: 500;
}
.hero-credit-dash {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

@media (min-width: 768px) {
  .hero {
    padding: 9rem var(--pad-x) 5rem;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 2rem 3rem;
    align-items: end;
  }
  .hero-meta {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .hero-title {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .hero-logo {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    align-self: end;
    justify-self: end;
    margin: 0;
    width: clamp(220px, 28vw, 360px);
  }
  .hero-lede {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .hero-actions {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  .hero-credit {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
    margin-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    gap: 3rem 5rem;
  }
}

/* Marquee */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: .85rem 0;
  background: oklch(0.10 0.010 75 / .4);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--fg-muted);
  width: max-content;
}
.marquee-track span:not(.dot) {
  letter-spacing: .01em;
}
.marquee-track .dot {
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- SECTION COMMON ---------- */
.section {
  position: relative;
  padding: 6rem var(--pad-x) 4rem;
  max-width: var(--container);
  margin: 0 auto;
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  .section {
    padding: 9rem var(--pad-x) 6rem;
  }
}

.section-head {
  display: grid;
  gap: .9rem;
  margin-bottom: 3.5rem;
  max-width: 880px;
}
.section-head .section-num {
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
}
.section-head .section-num::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold-deep);
  align-self: center;
  margin-left: .75rem;
}
.section-num + .section-kicker {
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--fg-strong);
  margin: 0;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.section-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 56ch;
  margin: 1rem 0 0;
}

/* ---------- I. STUDIO ---------- */
.section-studio {
  border-top: 1px solid var(--border-soft);
}
.studio-body {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
.studio-prose p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg);
  margin: 0 0 1.25rem;
}
.studio-prose .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--fg-strong);
  margin-bottom: 1.5rem;
}
.studio-prose strong {
  color: var(--fg-strong);
  font-weight: 500;
}
.studio-prose em {
  color: var(--gold);
  font-style: italic;
}

.studio-meta {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  padding: 2rem 1.75rem;
  border-radius: 1px;
  position: relative;
}
.studio-meta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 28px;
  height: 28px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.studio-meta::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 28px;
  height: 28px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.studio-meta dl {
  margin: 0;
  display: grid;
  gap: 1.4rem;
}
.studio-meta div {
  display: grid;
  gap: .25rem;
  border-bottom: 1px dotted var(--border-soft);
  padding-bottom: 1.25rem;
}
.studio-meta div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.studio-meta dt {
  font-family: var(--font-mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--fg-dim);
}
.studio-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg-strong);
  letter-spacing: -0.005em;
}

@media (min-width: 1024px) {
  .studio-body {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
  }
}

/* ---------- II. SERVIZI ---------- */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service {
  position: relative;
  padding: 1.85rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 1px;
  transition: border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
  overflow: hidden;
}
.service::before {
  /* subtle accent veil — not a side stripe, a corner glow */
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 100% 0%, var(--accent), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  pointer-events: none;
}
.service:hover {
  border-color: var(--accent);
  background: oklch(0.18 0.018 75);
}
.service:hover::before {
  opacity: .12;
}

.service-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.service-num::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
  vertical-align: middle;
  margin-left: .65rem;
  margin-bottom: 2px;
}

.service-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  top: 1.85rem;
  right: 1.75rem;
  box-shadow: 0 0 12px var(--accent);
}

.service h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.005em;
  margin: 0 0 .65rem;
  color: var(--fg-strong);
  padding-right: 1.75rem;
}
.service p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--fg-muted);
}

.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  padding: .35rem .65rem;
  background: oklch(0.80 0.14 82 / .14);
  color: var(--gold);
  border-radius: 1px;
}

.service-feature {
  background: linear-gradient(135deg, var(--bg-elevated), oklch(0.18 0.020 78));
  border-color: var(--gold-faint);
}
.service-feature h3 {
  color: var(--gold-bright);
}

.service-not {
  background: transparent;
  border-style: dashed;
  border-color: var(--border-soft);
}
.service-not h3 {
  color: var(--fg-muted);
  font-style: italic;
}
.service-not .service-num {
  color: var(--fg-dim);
}
.service-not::before { display: none; }
.service-not:hover {
  border-color: var(--border);
  background: transparent;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .service-feature {
    grid-column: span 2;
  }
}

/* ---------- III. METODO ---------- */
.section-method {
  border-top: 1px solid var(--border-soft);
}

.method-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}

.value-card {
  position: relative;
  padding: 2.25rem 1.85rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 1px;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-deep);
}
.value-num {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: -0.005em;
  margin: 0 0 .85rem;
  color: var(--fg-strong);
}
.value-card p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

@media (min-width: 768px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .method-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.method-quote {
  margin: 0;
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.method-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.4;
  color: var(--fg-strong);
  max-width: 760px;
  margin: 0 auto 1.5rem;
}
.method-quote .quote-mark {
  color: var(--gold);
  font-style: normal;
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.2em;
}
.method-quote cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- IV. AREE ---------- */
.areas-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}

.areas-block-title {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.75rem;
}

.audience-list {
  display: grid;
  gap: 0;
}
.audience-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg-strong);
  font-weight: 400;
  transition: transform var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.audience-list li:hover {
  transform: translateX(.5rem);
  color: var(--gold-bright);
}
.audience-list li:last-child {
  border-bottom: none;
}
.audience-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.areas-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--fg-muted);
  margin: 1.5rem 0 0;
  max-width: 38ch;
}

.geo-list {
  display: grid;
  gap: 1.4rem;
}
.geo-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px dotted var(--border-soft);
}
.geo-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.geo-tag {
  font-family: var(--font-mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--fg-dim);
}
.geo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--fg-strong);
}

@media (min-width: 768px) {
  .areas-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
  }
}

/* ---------- V. CONTATTI ---------- */
.section-contact {
  padding-top: 0;
}
.contact-card {
  position: relative;
  padding: 4rem var(--pad-x);
  background: linear-gradient(180deg, oklch(0.10 0.014 75), oklch(0.13 0.018 75));
  border: 1px solid var(--gold-faint);
  border-radius: 1px;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, oklch(0.78 0.14 82 / .12), transparent 70%);
  pointer-events: none;
}

.contact-head {
  position: relative;
  z-index: 2;
  text-align: center;
  display: grid;
  gap: .9rem;
  justify-items: center;
  margin-bottom: 3rem;
}
.contact-head .section-num::after {
  display: none;
}
.contact-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 56ch;
  margin: .5rem 0 0;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
.contact-item {
  display: grid;
  gap: .5rem;
  padding: 1.75rem 1.5rem;
  background: oklch(0.08 0.010 75 / .6);
  border: 1px solid var(--border-soft);
  border-radius: 1px;
  text-align: center;
  transition: border-color var(--t-fast) var(--ease);
}
.contact-item:hover {
  border-color: var(--gold-deep);
}
.contact-label {
  font-family: var(--font-mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
}
.contact-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--fg-strong);
  letter-spacing: -0.005em;
  word-break: break-word;
  user-select: all;
}
.contact-value-mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-break: normal;
}
.contact-note {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  color: var(--fg-dim);
  margin-top: .25rem;
}

.contact-final {
  position: relative;
  z-index: 2;
  text-align: center;
}
.contact-final p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 60ch;
  margin: 0 auto;
}
.contact-final strong {
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact-card {
    padding: 5rem 4rem;
  }
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 4rem var(--pad-x) 3rem;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-deep);
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.footer-brand {
  display: grid;
  gap: .35rem;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--fg-strong);
  letter-spacing: -0.005em;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
}

.footer-meta {
  display: grid;
  gap: .35rem;
}
.footer-line {
  margin: 0;
  font-size: .82rem;
  color: var(--fg-dim);
}
.footer-credit {
  margin: .75rem 0 0;
  font-size: .75rem;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dotted var(--gold-deep);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.footer-credit a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 3rem;
  }
  .footer-meta {
    text-align: right;
    justify-items: end;
  }
}

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
