  /* ========= DESIGN TOKENS ========= */
  :root {
    --color-bg: #faf6f0;
    --color-bg-cream: #f3ebdd;
    --color-ink: #1a1410;
    --color-ink-soft: #3d2f24;
    --color-muted: #8a7a68;
    --color-accent: #d95a1f;       /* arancione del logo */
    --color-accent-deep: #b8430e;
    --color-accent-warm: #e8833f;
    --color-terracotta: #c76b3f;
    --color-cream: #f5e9d3;
    --color-border: rgba(26, 20, 16, 0.12);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

    --max-w: 1280px;
    --radius-sm: 4px;
    --radius: 8px;

    --ease: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--color-ink);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

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

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

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

  .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ========= NAVIGATION ========= */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 24px;
    z-index: 100;
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease);
  }
  .nav.scrolled { border-bottom-color: var(--color-border); }
  .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-logo img {
    height: 32px;
    width: auto;
    display: block;
  }
  .nav-logo-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    font-style: italic;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    padding-left: 14px;
    border-left: 1px solid var(--color-border);
    line-height: 1.1;
  }
  @media (max-width: 600px) {
    .nav-logo-text { display: none; }
    .nav-logo img { height: 28px; }
  }
  .nav-cta {
    background: var(--color-ink);
    color: var(--color-bg);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease);
    border: none;
    cursor: pointer;
  }
  .nav-cta:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
  }

  /* ========= HERO ========= */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 190px 24px 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg);
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse at 20% 10%, rgba(217, 90, 31, 0.12), transparent 50%),
      radial-gradient(ellipse at 85% 80%, rgba(199, 107, 63, 0.08), transparent 55%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(26,20,16,0.015) 2px, rgba(26,20,16,0.015) 3px);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--color-accent);
  }

  .hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(44px, 6.5vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--color-ink);
    margin-bottom: 28px;
  }
  .hero-title .line {
    display: block;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) forwards;
  }
  .hero-title .line:nth-child(1) { animation-delay: 0.2s; }
  .hero-title .line:nth-child(2) { animation-delay: 0.35s; }
  .hero-title .line:nth-child(3) { animation-delay: 0.5s; }
  .hero-title .italic {
    font-style: italic;
    font-weight: 300;
    color: var(--color-accent);
  }

  .hero-lead {
    font-size: clamp(16px, 1.3vw, 19px);
    font-weight: 300;
    line-height: 1.55;
    color: var(--color-ink-soft);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.7s forwards;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.85s forwards;
  }
  .meta-block .label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 6px;
  }
  .meta-block .value {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--color-ink);
    letter-spacing: -0.01em;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1s forwards;
  }

  /* ========= HERO VIDEO ========= */
  .hero-media {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1.2s var(--ease-out) 0.4s forwards;
  }
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .video-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-ink);
    box-shadow:
      0 30px 60px -15px rgba(26, 20, 16, 0.35),
      0 0 0 1px var(--color-border);
  }
  .video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  /* Placeholder per sostituzione video */
  .video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background:
      linear-gradient(135deg, rgba(217, 90, 31, 0.15), transparent 60%),
      linear-gradient(135deg, #1a1410 0%, #2a1f17 100%);
    color: var(--color-cream);
    cursor: pointer;
    transition: all 0.4s var(--ease);
  }
  .video-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(217,90,31,0.03) 40px, rgba(217,90,31,0.03) 41px);
    pointer-events: none;
  }
  .video-placeholder:hover { background: linear-gradient(135deg, rgba(217,90,31,0.25), transparent 60%), linear-gradient(135deg, #1a1410 0%, #2a1f17 100%); }
  .play-btn {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(217, 90, 31, 0.5);
    transition: transform 0.4s var(--ease);
    position: relative;
    z-index: 2;
  }
  .play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    opacity: 0.5;
    animation: ripple 2.4s var(--ease) infinite;
  }
  @keyframes ripple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
  }
  .play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
  .video-placeholder:hover .play-btn { transform: scale(1.08); }
  .video-label {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
  }
  .video-caption {
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    text-align: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    border: 1px solid transparent;
    font-family: var(--font-body);
  }
  .btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 4px 20px rgba(217, 90, 31, 0.25);
  }
  .btn-primary:hover {
    background: var(--color-accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 90, 31, 0.4);
  }
  .btn-primary .arrow { transition: transform 0.3s var(--ease); }
  .btn-primary:hover .arrow { transform: translateX(4px); }

  .btn-secondary {
    background: transparent;
    color: var(--color-ink);
    border: 1px solid var(--color-ink);
  }
  .btn-secondary:hover {
    background: var(--color-ink);
    color: var(--color-bg);
  }

  /* ========= POSTI DISPONIBILI BAR ========= */
  .seats-bar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 99;
    background: linear-gradient(90deg, var(--color-accent-deep) 0%, var(--color-accent) 50%, var(--color-accent-deep) 100%);
    background-size: 200% 100%;
    color: white;
    padding: 16px 24px;
    overflow: hidden;
    animation: seats-shimmer 8s linear infinite;
    box-shadow: 0 6px 16px -6px rgba(26, 20, 16, 0.2);
    transition: transform 0.4s var(--ease);
    line-height: 1;
  }
  @keyframes seats-shimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
  }
  .seats-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 40px;
  }
  .seats-bar-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(6px);
  }
  .seats-bar-icon svg { width: 18px; height: 18px; }
  .seats-bar-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1;
  }
  .seats-bar-content > div {
    display: flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
  }
  .seats-bar-number {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 26px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: white;
    font-feature-settings: "tnum";
    display: inline-flex;
    align-items: center;
  }
  .seats-bar-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
    margin-left: 6px;
  }
  .seats-bar-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    animation: seats-pulse 1.5s ease-in-out infinite;
  }
  @keyframes seats-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    50% { opacity: 0.7; transform: scale(1.4); box-shadow: 0 0 0 6px rgba(255,255,255,0); }
  }
  .seats-bar-cta {
    background: white;
    color: var(--color-accent-deep);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
  }
  .seats-bar-cta:hover {
    background: var(--color-ink);
    color: white;
    transform: translateY(-1px);
  }
  /* Stato "pochi posti" (meno di 15) */
  .seats-bar.critical {
    background: linear-gradient(90deg, #8b1f0a 0%, #b8430e 50%, #8b1f0a 100%);
    background-size: 200% 100%;
    animation: seats-shimmer 4s linear infinite;
  }
  .seats-bar.critical .seats-bar-label::before {
    content: '⚠ ';
  }
  /* Stato "sold out" */
  .seats-bar.sold-out {
    background: var(--color-ink);
    animation: none;
  }
  .seats-bar.sold-out .seats-bar-cta { display: none; }
  .seats-bar.sold-out .seats-bar-pulse { animation: none; background: #e8833f; }

  @media (max-width: 600px) {
    .seats-bar { padding: 12px 16px; }
    .seats-bar-inner { gap: 12px; }
    .seats-bar-number { font-size: 22px; }
    .seats-bar-label { font-size: 13px; }
    .seats-bar-cta { padding: 7px 14px; font-size: 12px; }
  }

  /* ========= COUNTDOWN ========= */
  .countdown {
    background: var(--color-ink);
    color: var(--color-bg);
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
  }
  .countdown::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(217, 90, 31, 0.18), transparent 60%);
  }
  .countdown-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .countdown-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-warm);
    margin-bottom: 20px;
  }
  .countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
  }
  .countdown-cell {
    padding: 24px 12px;
    border: 1px solid rgba(245, 233, 211, 0.15);
    border-radius: var(--radius);
    background: rgba(245, 233, 211, 0.03);
  }
  .countdown-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1;
    color: var(--color-cream);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    font-feature-settings: "tnum";
  }
  .countdown-unit {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  /* ========= SECTIONS ========= */
  section {
    padding: 120px 24px;
  }
  .section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
  }
  .section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--color-accent);
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-bottom: 24px;
  }
  .section-title .italic {
    font-style: italic;
    font-weight: 300;
    color: var(--color-accent);
  }
  .section-lead {
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--color-ink-soft);
    max-width: 680px;
    line-height: 1.5;
    font-weight: 300;
  }

  /* ========= CONCEPT SECTION ========= */
  .concept {
    background: var(--color-bg-cream);
    position: relative;
    overflow: hidden;
  }
  .concept-statements {
    margin-top: 80px;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--color-border);
  }
  .statement {
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: baseline;
    transition: padding 0.4s var(--ease);
  }
  .statement:hover { padding-left: 16px; }
  .statement-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-style: italic;
    color: var(--color-accent);
    font-weight: 400;
  }
  .statement-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--color-ink);
  }
  .statement-text strong { font-weight: 500; font-style: italic; color: var(--color-accent-deep); }

  /* ========= EXPERIENCE GRID ========= */
  .experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
  }
  .exp-card {
    padding: 40px 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .exp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--color-accent);
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
  }
  .exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 20, 16, 0.08);
    border-color: var(--color-accent);
  }
  .exp-card:hover::before { transform: scaleX(1); }
  .exp-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-cream);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--color-accent-deep);
  }
  .exp-icon svg { width: 26px; height: 26px; }
  .exp-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--color-ink);
  }
  .exp-desc {
    font-size: 15px;
    color: var(--color-ink-soft);
    line-height: 1.55;
  }

  /* ========= PROGRAM TIMELINE ========= */
  .program {
    background: var(--color-ink);
    color: var(--color-cream);
    position: relative;
  }
  .program .section-title { color: var(--color-cream); }
  .program .section-lead { color: rgba(245, 233, 211, 0.7); }

  .timeline {
    margin-top: 80px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  .timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(245, 233, 211, 0.1);
    position: relative;
    align-items: start;
  }
  .timeline-item:last-child { border-bottom: none; }
  .timeline-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-style: italic;
    font-weight: 300;
    color: var(--color-accent-warm);
    line-height: 1;
  }
  .timeline-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .timeline-content p {
    color: rgba(245, 233, 211, 0.65);
    font-size: 15px;
    line-height: 1.6;
  }

  /* ========= PROTAGONISTI ========= */
  .people {
    background: var(--color-bg);
  }
  .people-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 140px; /* spazio per foto che escono dal bordo superiore */
  }
  .person-card {
    padding: 120px 48px 48px; /* padding-top maggiore per la foto */
    background: var(--color-bg-cream);
    border-radius: var(--radius);
    position: relative;
    overflow: visible;
    transition: transform 0.5s var(--ease);
  }
  .person-card:hover { transform: translateY(-6px); }
  .person-card.accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-terracotta) 100%);
    color: var(--color-cream);
  }
  .person-card.accent .person-role { color: rgba(245, 233, 211, 0.8); }
  .person-card.accent .person-name { color: white; }
  .person-card.accent .person-bio { color: rgba(245, 233, 211, 0.9); }

  .person-photo {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-bg);
    border: 6px solid var(--color-bg);
    box-shadow: 0 15px 40px rgba(26, 20, 16, 0.2);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .person-card:hover .person-photo {
    transform: translateX(-50%) scale(1.05) translateY(-4px);
    box-shadow: 0 20px 50px rgba(26, 20, 16, 0.28);
  }
  .person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* Decorative ring around photo */
  .person-photo::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px dashed var(--color-accent);
    opacity: 0.5;
    pointer-events: none;
  }

  .person-role {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 16px;
    text-align: center;
  }
  .person-name {
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1;
    text-align: center;
  }
  .person-name .italic { font-style: italic; font-weight: 300; }
  .person-bio {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--color-ink-soft);
  }

  .person-decoration {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    opacity: 0.1;
    pointer-events: none;
  }

  /* ========= LOCATION ========= */
  .location {
    background: var(--color-bg-cream);
  }
  .location-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    margin-bottom: 24px;
  }
  .location-header-text { max-width: 720px; }
  .location-logo-visual {
    width: 200px;
    height: auto;
    flex-shrink: 0;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.3s forwards;
    transition: transform 0.5s var(--ease);
  }
  .location-logo-visual:hover { transform: scale(1.05) rotate(-2deg); }
  .location-logo-visual img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(26, 20, 16, 0.12));
  }
  @media (max-width: 960px) {
    .location-header { grid-template-columns: 1fr; gap: 32px; }
    .location-logo-visual { width: 160px; margin: 0 auto; }
  }
  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
  }
  .location-info h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .location-info .address {
    font-size: 18px;
    color: var(--color-ink-soft);
    margin-bottom: 32px;
    line-height: 1.5;
  }
  .location-details {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
  }
  .location-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .location-detail-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .location-detail-icon svg { width: 18px; height: 18px; }
  .location-detail-text .label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 2px;
  }
  .location-detail-text .value {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-ink);
  }

  .location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 20, 16, 0.15);
    aspect-ratio: 4/3;
    border: 8px solid var(--color-bg);
  }
  .location-map iframe {
    width: 100%; height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.85) contrast(1.05);
  }

  /* ========= PRICING / CTA BAND ========= */
  .pricing {
    background: var(--color-ink);
    color: var(--color-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(217, 90, 31, 0.2), transparent 60%),
      radial-gradient(ellipse at 20% 100%, rgba(199, 107, 63, 0.1), transparent 50%);
  }
  .pricing-inner { position: relative; }
  .pricing-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-warm);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .pricing-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-title .italic { font-style: italic; color: var(--color-accent-warm); font-weight: 300; }

  .pricing-amount {
    font-family: var(--font-display);
    font-size: clamp(80px, 14vw, 180px);
    font-weight: 300;
    line-height: 1;
    color: var(--color-accent-warm);
    letter-spacing: -0.04em;
    margin: 40px 0 20px;
  }
  .pricing-amount .currency {
    font-size: 0.4em;
    vertical-align: super;
    margin-right: 8px;
    font-weight: 400;
  }
  .pricing-includes {
    font-size: 15px;
    color: rgba(245, 233, 211, 0.6);
    margin-bottom: 48px;
    letter-spacing: 0.04em;
  }
  .pricing-cta {
    padding: 20px 48px;
    font-size: 16px;
    font-weight: 500;
  }
  .pricing-scarcity {
    margin-top: 32px;
    font-size: 13px;
    color: var(--color-accent-warm);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
  }
  .pricing-scarcity .dot {
    width: 8px; height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s var(--ease) infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  /* ========= GALLERY (NASTRO SCORREVOLE) ========= */
  .gallery {
    padding: 120px 0;
    background: var(--color-bg);
    overflow: hidden;
    position: relative;
  }
  .gallery-header {
    max-width: var(--max-w);
    margin: 0 auto 64px;
    padding: 0 24px;
  }
  .gallery-marquee {
    display: flex;
    gap: 24px;
    width: fit-content;
    will-change: transform;
  }
  .gallery-marquee.row-1 {
    animation: marquee-left 90s linear infinite;
  }
  .gallery-marquee.row-2 {
    animation: marquee-right 100s linear infinite;
    margin-top: 24px;
  }
  @keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
  }
  @keyframes marquee-right {
    0% { transform: translateX(calc(-50% - 12px)); }
    100% { transform: translateX(0); }
  }
  .gallery-item {
    flex-shrink: 0;
    width: 340px;
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--color-bg-cream);
    box-shadow: 0 15px 35px -15px rgba(26, 20, 16, 0.25);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px -15px rgba(26, 20, 16, 0.4);
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
  }
  .gallery-item:hover img { transform: scale(1.08); }

  /* Overlay con effetto hover */
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.4), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
  }
  .gallery-item:hover::after { opacity: 1; }

  .gallery-item-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s var(--ease);
  }
  .gallery-item:hover .gallery-item-icon { opacity: 1; transform: scale(1); }
  .gallery-item-icon svg { width: 20px; height: 20px; }

  /* Placeholder SVG per foto mancanti */
  .gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(135deg, rgba(217, 90, 31, 0.08), transparent 60%),
      linear-gradient(45deg, var(--color-bg-cream) 0%, var(--color-cream) 100%);
    position: relative;
  }
  .gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(217,90,31,0.04) 30px, rgba(217,90,31,0.04) 31px);
  }
  .gallery-placeholder-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(217, 90, 31, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    position: relative;
    z-index: 1;
  }
  .gallery-placeholder-label {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--color-muted);
    letter-spacing: 0.08em;
    font-style: italic;
    z-index: 1;
  }

  /* Fade sui lati per indicare continuità */
  .gallery::before,
  .gallery::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .gallery::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
  }
  .gallery::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
  }

  @media (max-width: 600px) {
    .gallery {
      padding: 60px 0;
    }
    .gallery::before,
    .gallery::after {
      display: none;
    }
    .gallery-marquee {
      animation: none !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      width: 100%;
      padding: 0 20px;
      gap: 16px;
      scrollbar-width: none;
    }
    .gallery-marquee::-webkit-scrollbar { display: none; }
    .gallery-marquee.row-2 { margin-top: 16px; }
    .gallery-item[aria-hidden="true"] { display: none; }
    .gallery-item {
      width: 260px;
      height: 360px;
      scroll-snap-align: start;
    }
  }

  /* ========= LIGHTBOX ========= */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
  }
  .lightbox.visible { display: flex; opacity: 1; }
  .lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s var(--ease);
  }
  .lightbox.visible .lightbox-content { transform: scale(1); }
  .lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  }
  .lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(245, 233, 211, 0.12);
    border: 1px solid rgba(245, 233, 211, 0.2);
    border-radius: 50%;
    color: var(--color-cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    z-index: 10002;
  }
  .lightbox-close:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: rotate(90deg);
  }
  .lightbox-close svg { width: 20px; height: 20px; }

  @media (max-width: 960px) {
    .gallery-item { width: 280px; height: 400px; }
    .gallery::before, .gallery::after { width: 60px; }
  }
  @media (max-width: 600px) {
    .gallery { padding: 80px 0; }
    .gallery-item { width: 220px; height: 310px; }
    .gallery-marquee.row-1 { animation-duration: 45s; }
    .gallery-marquee.row-2 { animation-duration: 55s; }
  }

  /* ========= BACK TO TOP ========= */
  .back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(217, 90, 31, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s var(--ease);
    z-index: 90;
  }
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .back-to-top:hover {
    background: var(--color-accent-deep);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(217, 90, 31, 0.55);
  }
  .back-to-top svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s var(--ease);
  }
  .back-to-top:hover svg { transform: translateY(-2px); }
  /* Anello di progresso */
  .back-to-top::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(217, 90, 31, 0.2);
    animation: rotate-ring 4s linear infinite;
  }
  @keyframes rotate-ring {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
  }
  @media (max-width: 600px) {
    .back-to-top { bottom: 20px; right: 20px; width: 46px; height: 46px; }
    .back-to-top svg { width: 20px; height: 20px; }
  }

  /* ========= COOKIE BANNER (GDPR) ========= */
  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 520px;
    background: var(--color-ink);
    color: var(--color-cream);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(26, 20, 16, 0.35), 0 0 0 1px rgba(245, 233, 211, 0.08);
    z-index: 9999;
    transform: translateY(140%);
    transition: transform 0.5s var(--ease-out);
  }
  .cookie-banner.visible { transform: translateY(0); }
  .cookie-banner-icon {
    width: 40px; height: 40px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
  }
  .cookie-banner h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--color-cream);
    letter-spacing: -0.01em;
  }
  .cookie-banner p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(245, 233, 211, 0.75);
    margin-bottom: 20px;
  }
  .cookie-banner p a {
    color: var(--color-accent-warm);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .cookie-btn {
    padding: 12px 22px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
    flex: 1;
    min-width: fit-content;
  }
  .cookie-btn-accept {
    background: var(--color-accent);
    color: white;
  }
  .cookie-btn-accept:hover { background: var(--color-accent-deep); }
  .cookie-btn-reject {
    background: transparent;
    color: var(--color-cream);
    border-color: rgba(245, 233, 211, 0.3);
  }
  .cookie-btn-reject:hover { border-color: var(--color-cream); }
  .cookie-btn-customize {
    background: transparent;
    color: rgba(245, 233, 211, 0.6);
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 12px 8px;
    flex: 0;
  }
  .cookie-btn-customize:hover { color: var(--color-accent-warm); }

  /* Cookie preferences modal */
  .cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 16, 0.7);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
  }
  .cookie-modal-overlay.visible { display: flex; opacity: 1; }
  .cookie-modal {
    background: var(--color-bg);
    color: var(--color-ink);
    border-radius: 12px;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 36px;
    transform: scale(0.95);
    transition: transform 0.3s var(--ease);
  }
  .cookie-modal-overlay.visible .cookie-modal { transform: scale(1); }
  .cookie-modal h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .cookie-modal > p {
    font-size: 14px;
    color: var(--color-ink-soft);
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .cookie-category {
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
  }
  .cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px;
  }
  .cookie-category-header h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-ink);
  }
  .cookie-category p {
    font-size: 13.5px;
    color: var(--color-ink-soft);
    line-height: 1.55;
  }
  /* Toggle switch */
  .cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
  }
  .cookie-toggle input { opacity: 0; width: 0; height: 0; }
  .cookie-toggle .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 100px;
    transition: 0.3s;
  }
  .cookie-toggle .slider::before {
    content: '';
    position: absolute;
    height: 18px; width: 18px;
    left: 3px; top: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
  }
  .cookie-toggle input:checked + .slider { background: var(--color-accent); }
  .cookie-toggle input:checked + .slider::before { transform: translateX(20px); }
  .cookie-toggle input:disabled + .slider { background: var(--color-accent); opacity: 0.55; cursor: not-allowed; }
  .cookie-required-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
  }
  .cookie-modal-actions {
    margin-top: 28px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cookie-modal-actions .cookie-btn-accept { flex: 2; color: white; }
  .cookie-modal-actions .cookie-btn-reject {
    color: var(--color-ink);
    border-color: var(--color-border);
    flex: 1;
  }
  @media (max-width: 540px) {
    .cookie-banner { padding: 22px; left: 12px; right: 12px; bottom: 12px; }
    .cookie-banner-actions { flex-direction: column; }
    .cookie-btn-customize { flex: 1; }
    .cookie-modal { padding: 28px 22px; }
  }

  /* ========= TESTIMONIALS (Google Reviews Style) ========= */
  .testimonials {
    background: var(--color-bg);
  }
  .reviews-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    padding: 24px 28px;
    background: var(--color-bg-cream);
    border-radius: 12px;
    flex-wrap: wrap;
  }
  .google-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .google-logo-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
  }
  .google-logo-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--color-ink);
  }
  .google-logo-text .g-blue { color: #4285F4; }
  .google-logo-text .g-red { color: #EA4335; }
  .google-logo-text .g-yellow { color: #FBBC05; }
  .google-logo-text .g-green { color: #34A853; }
  .reviews-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid var(--color-border);
  }
  .reviews-score {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    color: var(--color-ink);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .reviews-meta { display: flex; flex-direction: column; gap: 4px; }
  .reviews-stars-row { display: flex; gap: 2px; }
  .star-filled { color: #FBBC05; }
  .star-empty { color: var(--color-border); }
  .star-filled svg, .star-empty svg { width: 16px; height: 16px; }
  .reviews-count {
    font-size: 13px;
    color: var(--color-muted);
    font-weight: 500;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
  }
  .review-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(26, 20, 16, 0.08);
    border-color: rgba(217, 90, 31, 0.3);
  }
  .review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
  }
  .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    color: white;
    text-transform: uppercase;
  }
  /* Avatar colorati (placeholder visuale elegante) */
  .avatar-1 { background: linear-gradient(135deg, #d95a1f, #b8430e); }
  .avatar-2 { background: linear-gradient(135deg, #c76b3f, #8a5030); }
  .avatar-3 { background: linear-gradient(135deg, #e8833f, #d95a1f); }
  .avatar-4 { background: linear-gradient(135deg, #8a5030, #5d3520); }
  .avatar-5 { background: linear-gradient(135deg, #b8430e, #7d2e0a); }
  .avatar-6 { background: linear-gradient(135deg, #c76b3f, #d95a1f); }
  .review-author-info { flex: 1; min-width: 0; }
  .review-author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-ink);
    letter-spacing: -0.005em;
    line-height: 1.2;
    margin-bottom: 3px;
  }
  .review-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--color-muted);
  }
  .review-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .review-google-badge svg { width: 12px; height: 12px; }
  .review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
  }
  .review-stars svg { width: 15px; height: 15px; color: #FBBC05; }
  .review-date {
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 14px;
  }
  .review-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-ink-soft);
    flex: 1;
  }

  @media (max-width: 600px) {
    .reviews-header { padding: 20px; gap: 16px; }
    .reviews-rating { padding-left: 0; border-left: none; padding-top: 16px; border-top: 1px solid var(--color-border); width: 100%; }
    .reviews-score { font-size: 30px; }
    .review-card { padding: 22px; }
  }

  /* ========= FAQ ========= */
  .faq {
    background: var(--color-bg-cream);
  }
  .faq-list {
    margin-top: 64px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--color-border);
  }
  .faq-item:first-child { border-top: 1px solid var(--color-border); }
  .faq-question {
    width: 100%;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 500;
    color: var(--color-ink);
    letter-spacing: -0.01em;
    transition: color 0.3s var(--ease);
  }
  .faq-question:hover { color: var(--color-accent); }
  .faq-toggle {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s var(--ease);
  }
  .faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--color-ink);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease);
  }
  .faq-toggle::before { width: 12px; height: 1.5px; }
  .faq-toggle::after { width: 1.5px; height: 12px; }
  .faq-item.open .faq-toggle { background: var(--color-accent); border-color: var(--color-accent); }
  .faq-item.open .faq-toggle::before { background: white; }
  .faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.3s var(--ease);
  }
  .faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 28px;
  }
  .faq-answer p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-ink-soft);
    max-width: 720px;
  }

  /* ========= FOOTER ========= */
  footer {
    background: var(--color-ink);
    color: var(--color-cream);
    padding: 80px 24px 32px;
  }
  .footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 233, 211, 0.1);
  }
  .footer-brand-logo {
    background: var(--color-cream);
    padding: 16px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
  }
  .footer-brand-logo img {
    height: 38px;
    width: auto;
    display: block;
  }
  .footer-brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--color-cream);
  }
  .footer-brand-name span { color: var(--color-accent-warm); }
  .footer-tagline {
    font-size: 15px;
    color: rgba(245, 233, 211, 0.6);
    max-width: 360px;
    line-height: 1.5;
  }
  .footer-col h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent-warm);
    margin-bottom: 20px;
  }
  .footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
  }
  .footer-col a {
    font-size: 15px;
    color: rgba(245, 233, 211, 0.75);
    transition: color 0.3s var(--ease);
  }
  .footer-col a:hover { color: var(--color-accent-warm); }

  .footer-partner {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid rgba(245, 233, 211, 0.1);
    margin-bottom: 32px;
  }
  .footer-partner-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 233, 211, 0.5);
    font-weight: 500;
  }
  .footer-partner-logo {
    max-width: 200px;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    opacity: 0.92;
  }
  .footer-partner-logo:hover { transform: scale(1.03); opacity: 1; }
  .footer-partner-logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  .footer-bottom {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 13px;
    color: rgba(245, 233, 211, 0.4);
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 4px;
    justify-content: center;
  }
  .footer-legal-links a {
    padding: 8px 18px;
    border: 1px solid rgba(245, 233, 211, 0.15);
    border-radius: 100px;
    font-size: 12.5px;
    letter-spacing: 0.02em;
    color: rgba(245, 233, 211, 0.7);
    transition: all 0.3s var(--ease);
  }
  .footer-legal-links a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent-warm);
    background: rgba(217, 90, 31, 0.08);
  }
  .footer-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 233, 211, 0.08);
  }
  .footer-meta a {
    color: rgba(245, 233, 211, 0.6);
    transition: color 0.3s var(--ease);
    font-weight: 500;
  }
  .footer-meta a:hover { color: var(--color-accent-warm); }
  @media (max-width: 540px) {
    .footer-meta { justify-content: center; text-align: center; }
  }

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

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========= RESPONSIVE ========= */
  @media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-media { max-width: 720px; margin: 0 auto; width: 100%; }
  }
  @media (max-width: 960px) {
    .experience-grid { grid-template-columns: 1fr; }
    .people-grid { grid-template-columns: 1fr; gap: 120px; margin-top: 120px; }
    .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    section { padding: 80px 24px; }
    .hero { padding: 170px 24px 60px; }
    .hero-meta { gap: 20px 32px; }
  }
  @media (max-width: 600px) {
    .nav { padding: 14px 20px; }
    .nav-cta { padding: 8px 16px; font-size: 13px; }
    .countdown-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .countdown-cell { padding: 18px 8px; }
    .statement { grid-template-columns: 40px 1fr; gap: 16px; padding: 28px 0; }
    .timeline-item { grid-template-columns: 56px 1fr; gap: 20px; }
    .timeline-num { font-size: 28px; }
    .person-card { padding: 110px 28px 36px; }
    .person-photo { width: 150px; height: 150px; top: -75px; }
    .people-grid { gap: 100px; margin-top: 100px; }
    .hero-meta { grid-template-columns: 1fr 1fr; gap: 18px 20px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }
