:root {
    --ivory: #fffdf8;
    --cream: #f8f1e4;
    --stone: #dbc9a3;
    --terracotta: #b98933;
    --olive: #f3e7cf;
    --deep: #21180f;
    --charcoal: #5a4c38;
    --gold: #d4af37;
    --pale: #fffaf2;
    --gold-soft: #efe0b8;
    --gold-refined: #c7a86a;
    --gold-mist: rgba(199, 168, 106, 0.18);
    --line: rgba(185, 137, 51, 0.18);
    --shadow: 0 18px 45px rgba(81, 60, 22, 0.08);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background:
      radial-gradient(circle at top, rgba(212,175,55,0.12), transparent 30%),
      linear-gradient(180deg, #fffefb 0%, var(--pale) 38%, #fffdf9 100%);
    color: var(--charcoal);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  .intro-video-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .intro-video-modal[aria-hidden='false'] {
    opacity: 1;
    pointer-events: auto;
  }
  .intro-video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 8, 0.88);
    backdrop-filter: blur(8px);
  }
  .intro-video-dialog {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    isolation: isolate;
  }
  .intro-video-frame-wrap {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
    z-index: 1;
  }
  .intro-video-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    position: relative;
    z-index: 1;
  }
  .intro-video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    display: none!important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(20,14,8,0.9) 0%, rgba(20,14,8,0.76) 100%),
      radial-gradient(circle at top, rgba(212,175,55,0.16), transparent 35%);
    color: rgba(255,253,248,0.82);
  }
  .intro-video-fallback p {
    max-width: 38rem;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .intro-video-fallback a {
    border: 1px solid rgba(255,253,248,0.38);
    padding: 0.95rem 1.2rem;
    color: var(--ivory);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.58rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }
  .intro-video-fallback a:hover,
  .intro-video-fallback a:focus-visible {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep);
  }
  .intro-video-skip {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    border: 1px solid rgba(255,253,248,0.38);
    background: rgba(20, 14, 8, 0.58);
    color: var(--ivory);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.58rem;
    padding: 0.95rem 1.1rem;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }
  .intro-video-skip:hover,
  .intro-video-skip:focus-visible {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep);
  }
  .intro-video-skip.position-unset {
    position: unset;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
      background: rgba(255, 252, 246, 0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 8px 30px rgba(66, 45, 10, 0.06);
    transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s, box-shadow 0.5s;
  }
  nav.scrolled {
    background: rgba(255, 252, 246, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 30px rgba(66, 45, 10, 0.06);
  }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .nav-logo img {
    display: block;
    width: auto;
    height: 4.7rem;
  }
  .nav-wordmark {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
      color: var(--deep);
    line-height: 1;
    text-shadow: 0 8px 20px rgba(16, 10, 5, 0.18);
  }
  .nav-wordmark strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.16rem;
    font-weight: 500;
    letter-spacing: 0.06em;
  }
  .nav-wordmark span {
    font-size: 0.53rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
      color: rgba(90, 76, 56, 0.72);
  }
  nav.scrolled .nav-wordmark {
    color: var(--deep);
  }
  nav.scrolled .nav-wordmark span {
    color: rgba(90, 76, 56, 0.72);
  }
  .nav-logo:hover,
  .nav-logo:focus-visible {
    opacity: 0.92;
    transform: translateY(-1px);
  }

  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(126, 92, 31, 0.2);
    border-radius: 999px;
    background: rgba(255, 252, 246, 0.88);
    cursor: pointer;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
    flex-direction: column;
  }
  .nav-toggle span {
    width: 1.15rem;
    height: 1px;
    background: var(--deep);
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
  }
  nav.scrolled .nav-toggle {
    border-color: rgba(126, 92, 31, 0.2);
    background: rgba(255, 252, 246, 0.88);
  }
  nav.scrolled .nav-toggle span { background: var(--deep); }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(255, 252, 246, 0.14);
    border-color: rgba(255,253,248,0.7);
  }
  nav.scrolled .nav-toggle:hover,
  nav.scrolled .nav-toggle:focus-visible {
    background: rgba(126, 92, 31, 0.08);
    border-color: rgba(126, 92, 31, 0.38);
  }

  nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(0.47rem) rotate(45deg);
  }
  nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-0.47rem) rotate(-45deg);
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal);
    transition: color 0.3s;
  }
  nav.scrolled .nav-links a { color: var(--charcoal); }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.65rem 1.6rem;
    border: 1px solid var(--gold);
    color: var(--deep);
    text-decoration: none;
    transition: all 0.35s;
  }
  nav.scrolled .nav-cta {
    border-color: var(--gold);
    color: var(--deep);
  }
  .nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep) !important;
  }

  /* ── HERO ── */
  #home {
    height: 100vh;
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
    padding-top: 8.5rem;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(58, 122, 189, 0.58) 0%, rgba(31, 84, 148, 0.42) 22%, rgba(15, 49, 96, 0.18) 38%, rgba(15, 49, 96, 0) 52%),
      linear-gradient(125deg, rgba(126, 186, 237, 0.28) 0%, rgba(38, 102, 170, 0.18) 26%, rgba(38, 102, 170, 0) 46%),
      image-set(
        url('img/villaflo-hero.webp') type('image/webp'),
        url('img/villaflo-hero.JPG') type('image/jpeg')
      ) center/cover no-repeat;
    transform: scale(1.06);
    animation: heroZoom 14s ease forwards;
  }
  @keyframes heroZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1.00); }
  }

  /* Texture grain overlay */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5rem 8rem;
    max-width: 52rem;
    animation: fadeUp 1.2s 0.4s both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-tag {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 248, 239, 0.92);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 8px 22px rgba(12, 20, 36, 0.28);
  }
  .hero-tag::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.8vw, 5.4rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--ivory);
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    text-shadow: 0 14px 34px rgba(16, 10, 5, 0.34);
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.11em;
    color: rgba(255, 250, 244, 0.98);
    max-width: 31rem;
    line-height: 1.82;
    padding: 1.1rem 1.35rem 1.1rem 1.5rem;
    background: linear-gradient(90deg, rgba(12, 18, 32, 0.66) 0%, rgba(12, 18, 32, 0.38) 58%, rgba(12, 18, 32, 0.08) 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.68);
    box-shadow: 0 24px 58px rgba(8, 12, 22, 0.28);
    backdrop-filter: blur(12px);
    text-shadow: 0 8px 20px rgba(8, 12, 22, 0.22);
    margin-bottom: 3rem;
  }

  .hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
  }
  .btn-primary {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(18, 24, 38, 0.96);
    line-height: 1.2;
    padding: 1rem 1.6rem;
    background: linear-gradient(135deg, rgba(241, 212, 122, 0.98) 0%, rgba(212, 175, 55, 0.96) 52%, rgba(176, 135, 36, 0.96) 100%);
    border: 1px solid rgba(255, 236, 178, 0.52);
    box-shadow: 0 20px 40px rgba(8, 12, 22, 0.2), inset 0 1px 0 rgba(255, 246, 214, 0.42);
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(8, 12, 22, 0.24), inset 0 1px 0 rgba(255, 246, 214, 0.54);
    filter: saturate(1.06) brightness(1.04);
  }
  .btn-primary:focus-visible {
    outline: 2px solid rgba(255, 236, 178, 0.72);
    outline-offset: 3px;
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(8, 12, 22, 0.24), inset 0 1px 0 rgba(255, 246, 214, 0.54);
  }

  .btn-ghost {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid rgba(245,240,232,0.56);
    color: rgba(255, 250, 244, 0.98);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(13, 22, 38, 0.28) 0%, rgba(13, 22, 38, 0.12) 100%);
    box-shadow: 0 18px 36px rgba(10, 14, 24, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(7px);
    transition: all 0.3s;
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: linear-gradient(135deg, rgba(13, 22, 38, 0.4) 0%, rgba(13, 22, 38, 0.18) 100%);
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(10, 14, 24, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  .btn-ghost:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.62);
    outline-offset: 3px;
    border-color: var(--gold);
    color: var(--gold);
    background: linear-gradient(135deg, rgba(13, 22, 38, 0.4) 0%, rgba(13, 22, 38, 0.18) 100%);
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(10, 14, 24, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  .btn-video {
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    display: none !important;
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
  }
  .hero-scroll span {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
  }
  @keyframes scrollAnim {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(0.6); }
  }

  /* ── SECTION BASE ── */
  section { padding: 8rem 5rem; }
  .section-tag {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-tag::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--deep);
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }

  /* ── VIDEO TOUR ── */
  #video-tour {
    display: none !important;
    background:
      radial-gradient(circle at top left, rgba(212,175,55,0.12), transparent 28%),
      linear-gradient(180deg, #fffefb 0%, #f7f0e5 100%);
  }
  .video-tour-shell {
    max-width: 980px;
    margin: 0 auto;
  }
  .video-tour-intro {
    max-width: 42rem;
    font-size: 0.9rem;
    line-height: 1.95;
    color: rgba(90,76,56,0.84);
    margin-bottom: 2rem;
  }
  .video-dropdown {
    border: 1px solid rgba(199, 168, 106, 0.32);
    background: rgba(255,253,248,0.82);
    box-shadow: 0 20px 44px rgba(81, 60, 22, 0.08);
    backdrop-filter: blur(6px);
  }
  .video-dropdown summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--deep);
  }
  .video-dropdown summary::-webkit-details-marker {
    display: none;
  }
  .video-dropdown summary::after {
    content: '';
    width: 0.62rem;
    height: 0.62rem;
    border-right: 1px solid rgba(90,76,56,0.72);
    border-bottom: 1px solid rgba(90,76,56,0.72);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-top: -0.18rem;
  }
  .video-dropdown[open] summary::after {
    transform: rotate(225deg);
    margin-top: 0.18rem;
  }
  .video-dropdown-panel {
    padding: 0 1.5rem 1.5rem;
  }
  .video-embed-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
  }
  .video-embed-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* ── CHI SIAMO ── */
  #chi-siamo {
    background: linear-gradient(180deg, #fffdfa 0%, var(--cream) 100%);
    color: var(--deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }
  .chi-img {
    position: relative;
    overflow: hidden;
    min-height: 580px;
  }
  .chi-picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .chi-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(0.18) saturate(0.92);
    transition: transform 0.8s ease;
  }
  .chi-img:hover img { transform: scale(1.04); }
  .chi-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,250,242,0.2) 0%, rgba(212,175,55,0.08) 60%, transparent 100%);
  }
  .chi-text {
    padding: 7rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .chi-text .section-tag { color: var(--gold); }
  .chi-text .section-tag::before { background: var(--gold); }
  .chi-text .section-title { color: var(--deep); }
  .chi-body {
    font-size: 0.95rem;
    line-height: 1.95;
    color: rgba(90,76,56,0.86);
    max-width: 440px;
    margin-bottom: 2.5rem;
  }
  .chi-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }
  .chi-feat {
    border-left: 1px solid var(--gold);
    padding-left: 1rem;
  }
  .chi-feat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.2rem;
  }
  .chi-feat span { font-size: 0.75rem; color: rgba(90,76,56,0.64); letter-spacing: 0.05em; }

  /* ── SERVIZI ── */
  #servizi {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, var(--ivory) 100%);
  }
  .servizi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 4rem;
    background: var(--line);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .serv-card {
    background: rgba(255,253,248,0.98);
    padding: 3rem 2.5rem;
    transition: background 0.35s, transform 0.35s;
    cursor: default;
  }
  .serv-card:hover {
    background: linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
    transform: translateY(-4px);
  }
  .serv-icon {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .serv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--deep);
    margin-bottom: 0.7rem;
  }
  .serv-desc {
    font-size: 0.8rem;
    line-height: 1.85;
    color: rgba(90,76,56,0.84);
  }

  /* ── CAMERE ── */
  #le-camere {
    background: linear-gradient(180deg, var(--cream) 0%, #fffdfa 100%);
    padding-bottom: 6rem;
  }
  .camere-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }
  .camere-intro-right {
    font-size: 0.8rem;
    line-height: 1.9;
    color: rgba(90,76,56,0.82);
    max-width: 360px;
    text-align: right;
  }

  .camere-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .camera-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,253,248,0.98) 0%, rgba(248,241,228,0.9) 100%);
    box-shadow: 0 22px 48px rgba(66, 45, 10, 0.08);
  }
  .cam-media {
    position: relative;
    overflow: hidden;
  }
  .cam-picture {
    display: block;
    aspect-ratio: 4/3;
  }
  .camera-card .cam-img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s ease;
    filter: brightness(0.92) sepia(0.08);
  }
  .camera-card.wide,
  .camera-card.wide .cam-picture { aspect-ratio: 16/7; }
  .camera-card.wide .cam-media { aspect-ratio: 16/7; }
  .camera-card.wide .cam-img { object-position: center 42%; }
  .camera-card:hover .cam-img { transform: scale(1.05); }
  .cam-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24,16,10,0.9) 0%, rgba(24,16,10,0.56) 40%, rgba(24,16,10,0.14) 72%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
  }
  .cam-tag {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-refined);
    text-shadow: 0 4px 14px rgba(16, 10, 5, 0.18);
    margin-bottom: 0.4rem;
  }
  .cam-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1;
    margin-bottom: 0.7rem;
    text-shadow: 0 10px 28px rgba(16, 10, 5, 0.36);
  }
  .cam-desc {
    position: static;
    flex: 1;
    font-size: 0.78rem;
    color: rgba(48, 38, 24, 0.9);
    line-height: 1.8;
    max-width: none;
    margin: 0;
    padding: 1.35rem 1.45rem 1.5rem;
    background: rgba(255, 252, 246, 0.96);
    border-left: 1px solid rgba(199, 168, 106, 0.34);
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    transition: none;
  }
  .camera-card:hover .cam-desc { transform: none; opacity: 1; }
  .cam-feature {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  .cam-badge {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.38rem 0.78rem;
    border: 1px solid rgba(199, 168, 106, 0.42);
    color: rgba(247, 235, 205, 0.9);
    background: linear-gradient(180deg, rgba(255, 250, 238, 0.08) 0%, var(--gold-mist) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 250, 238, 0.1);
  }

  /* Appartamenti (span full width for first) */
  .camera-card.wide { grid-column: span 2; }
  .camera-card.wide .cam-img { height: 100%; aspect-ratio: auto; }
  .camera-card.wide .cam-desc {
    padding: 1.5rem 1.6rem 1.7rem;
  }

  /* ── ROOFTOP ── */
  #rooftop {
    background: linear-gradient(180deg, #fffefb 0%, var(--cream) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
  }
  .rooftop-bg {
    position: absolute;
    inset: 0;
  }
  .rooftop-picture,
  .giardino-picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .rooftop-bg img,
  .giardino-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  .rooftop-bg-overlay,
  .giardino-bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .rooftop-bg-overlay {
    background: linear-gradient(to right, rgba(255,252,246,0.93) 22%, rgba(255,252,246,0.76) 45%, rgba(255,252,246,0.18) 100%);
  }
  .rooftop-content {
    position: relative;
    z-index: 2;
    padding: 8rem 5rem;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .rooftop-content .section-title { color: var(--deep); }
  .rooftop-body {
    font-size: 0.9rem;
    line-height: 1.95;
    color: rgba(90,76,56,0.88);
    margin-bottom: 2.5rem;
    max-width: 34rem;
  }
  .rooftop-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 2.5rem;
  }
  .pill {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(212,175,55,0.38);
    color: #8d6a22;
    border-radius: 0;
    background: rgba(255,253,248,0.72);
  }

  /* ── GIARDINO ── */
  #giardino {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fffefb 0%, var(--pale) 100%);
  }
  .giardino-bg {
    position: absolute;
    inset: 0;
  }
  .giardino-bg-overlay {
    background:
      linear-gradient(to right, rgba(22,16,10,0.64) 0%, rgba(22,16,10,0.34) 36%, rgba(22,16,10,0.08) 68%, rgba(22,16,10,0.22) 100%),
      linear-gradient(to top, rgba(22,16,10,0.38) 0%, rgba(22,16,10,0.06) 52%, rgba(255,255,255,0) 100%);
  }
  .giardino-content {
    position: relative;
    z-index: 2;
    padding: 8rem 5rem;
    max-width: 38rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .giardino-content .section-tag {
    color: rgba(255, 247, 229, 0.82);
  }
  .giardino-content .section-tag::before {
    background: var(--gold-refined);
  }
  .giardino-content .section-title {
    color: var(--ivory);
  }
  .giardino-content .section-title em {
    color: var(--gold-soft);
  }
  .giardino-body {
    font-size: 0.88rem;
    line-height: 1.95;
    color: rgba(255, 247, 229, 0.88);
    max-width: 34rem;
    margin-bottom: 2rem;
    padding: 1rem 1.2rem 1rem 1.35rem;
    background: linear-gradient(90deg, rgba(22,16,10,0.46) 0%, rgba(22,16,10,0.16) 100%);
    border-left: 1px solid rgba(199, 168, 106, 0.46);
    box-shadow: 0 20px 44px rgba(16, 10, 5, 0.14);
    backdrop-filter: blur(5px);
  }
  .giardino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
  }
  .giardino-features .pill {
    color: rgba(255, 247, 229, 0.88);
    border-color: rgba(199, 168, 106, 0.34);
    background: rgba(22,16,10,0.26);
  }

  /* ── PET ── */
  #pet-welcome,
  #coffee-room {
    background: linear-gradient(135deg, #fffdfa 0%, var(--olive) 100%);
    color: var(--deep);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    padding: 0;
  }
  #coffee-room {
    grid-template-columns: 1.4fr 1fr;
    background: linear-gradient(135deg, #f6efe3 0%, #fffdfa 100%);
  }
  .pet-img {
    position: relative;
    overflow: hidden;
    min-height: 460px;
  }
  .pet-picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .pet-img img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    filter: saturate(0.92) brightness(1.02);
  }
  .pet-text {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .pet-text .section-tag { color: var(--gold); }
  .pet-text .section-tag::before { background: var(--gold); }
  .pet-text .section-title { color: var(--deep); }
  #coffee-room .pet-img {
    order: 2;
  }
  #coffee-room .pet-img img {
    object-position: center 38%;
    filter: saturate(0.9) brightness(1.04);
  }
  .pet-body {
    font-size: 0.85rem;
    line-height: 1.95;
    color: rgba(90,76,56,0.84);
    max-width: 440px;
  }
  .pet-items {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.8rem 0;
  }
  .pet-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: rgba(90,76,56,0.88);
  }
  .pet-item::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.5rem;
  }

  /* ── GALLERIA ── */
  #galleria { background: linear-gradient(180deg, #fffefb 0%, var(--pale) 100%); }
  .gallery-intro {
    max-width: 520px;
    font-size: 0.82rem;
    line-height: 1.85;
    color: rgba(90,76,56,0.78);
  }
  .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 3px;
    margin-top: 3rem;
  }
  .gal-item {
    overflow: hidden;
    position: relative;
  }
  .gal-button {
    position: relative;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    color: inherit;
  }
  .gal-picture {
    display: block;
    height: 100%;
  }
  .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95) saturate(0.92) sepia(0.06);
    transition: all 0.6s ease;
  }
  .gal-item:hover img,
  .gal-button:focus-visible img {
    filter: brightness(1) saturate(1.1);
    transform: scale(1.04);
  }
  .gal-button:focus-visible { outline: 2px solid rgba(212,175,55,0.65); outline-offset: -2px; }
  .gal-meta {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(33,24,15,0.68) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .gal-item:hover .gal-meta,
  .gal-button:focus-visible .gal-meta { opacity: 1; }
  .gal-label {
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #f7e2a4;
  }
  .gal-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--ivory);
  }
  .gal-item:nth-child(1) { grid-row: span 2; }
  .gal-item:nth-child(1) img { height: 100%; min-height: 500px; }
  .gal-item img { height: 240px; }

  .lightbox-open { overflow: hidden; }
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .lightbox[aria-hidden='false'] {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 8, 0.74);
    backdrop-filter: blur(8px);
  }
  .lightbox-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 920px) auto;
    align-items: center;
    gap: 1rem;
    width: min(100%, 1180px);
  }
  .lightbox-figure {
    margin: 0;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(255,253,248,0.98) 0%, rgba(248,241,228,0.94) 100%);
    border: 1px solid rgba(212,175,55,0.22);
    box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  }
  .lightbox-image {
    display: block;
    width: 100%;
    max-height: 72vh;
    object-fit: cover;
  }
  .lightbox-caption {
    padding: 1rem 0 0.2rem;
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(90,76,56,0.86);
    max-width: 62ch;
  }
  .lightbox-close,
  .lightbox-nav {
    border: 1px solid rgba(212,175,55,0.26);
    background: rgba(255,252,246,0.88);
    color: var(--deep);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.58rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }
  .lightbox-close:hover,
  .lightbox-close:focus-visible,
  .lightbox-nav:hover,
  .lightbox-nav:focus-visible {
    background: var(--gold);
    color: var(--deep);
    transform: translateY(-1px);
  }
  .lightbox-close {
    position: absolute;
    top: -3.2rem;
    right: 0;
    padding: 0.8rem 1rem;
  }
  .lightbox-nav {
    width: 3rem;
    height: 3rem;
  }

  /* ── RECENSIONI ── */
  #recensioni {
    background:
      radial-gradient(circle at top, rgba(212,175,55,0.16), transparent 34%),
      linear-gradient(180deg, #fffefb 0%, var(--pale) 100%);
    display: flex;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .review-card {
    width: min(100%, 860px);
    padding: 3.2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,253,248,0.94) 0%, rgba(248,241,228,0.96) 100%);
    border: 1px solid rgba(212,175,55,0.24);
    box-shadow: 0 24px 60px rgba(81, 60, 22, 0.1);
  }
  #recensioni .section-tag {
    justify-content: center;
  }
  #recensioni .section-tag::before {
    display: none;
  }
  #recensioni .section-title {
    text-align: center;
    margin-bottom: 1.2rem;
  }
  .review-copy {
    max-width: 40rem;
    margin: 0 auto 2rem;
    font-size: 0.86rem;
    line-height: 1.9;
    color: rgba(90,76,56,0.82);
  }
  .review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    border: 1px solid rgba(212,175,55,0.38);
    background: linear-gradient(135deg, #ead387 0%, var(--gold) 100%);
    color: var(--deep);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.62rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 16px 36px rgba(126, 92, 31, 0.16);
  }
  .review-link:hover,
  .review-link:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 20px 42px rgba(126, 92, 31, 0.2);
  }

  /* ── CONTATTI ── */
  #contatti {
    background:
      radial-gradient(circle at top, rgba(212,175,55,0.15), transparent 32%),
      linear-gradient(180deg, #fffefb 0%, var(--cream) 100%);
    color: var(--deep);
    text-align: center;
    padding: 8rem 3rem;
  }
  #contatti .section-tag { justify-content: center; }
  #contatti .section-tag::before { display: none; }
  #contatti .section-title { color: var(--deep); text-align: center; }
  .contatti-sub {
    font-size: 0.85rem;
    color: rgba(90,76,56,0.78);
    margin: 1rem auto 3rem;
    max-width: 460px;
    line-height: 1.9;
  }
  .contact-info {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
  }
  .contact-block {
    text-align: left;
    background: rgba(255,253,248,0.85);
    border: 1px solid var(--line);
    padding: 1.5rem 1.8rem;
    min-width: 220px;
    box-shadow: var(--shadow);
  }
  .contact-label {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--deep);
    line-height: 1.6;
  }
  .contact-phone-links {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
  }
  .contact-value a { color: var(--deep); text-decoration: none; transition: color 0.3s; }
  .contact-value a:hover { color: var(--gold); }
  .whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
  }
  .whatsapp-link svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
  }
  .map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8d6a22;
    text-decoration: none;
    border-bottom: 1px solid rgba(212,175,55,0.3);
    padding-bottom: 0.2rem;
    transition: color 0.3s;
  }
  .map-link:hover { color: var(--gold); }

  /* ── FOOTER ── */
  footer {
    background: #f7efdf;
    padding: 2rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #8d6a22;
    letter-spacing: 0.1em;
  }
  .footer-copy {
    font-size: 0.65rem;
    color: rgba(90,76,56,0.55);
    letter-spacing: 0.1em;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }
  .footer-legal a {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(90,76,56,0.65);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-legal a:hover { color: var(--gold); }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }
  .footer-contact a,
  .footer-contact span {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: rgba(90,76,56,0.65);
    text-decoration: none;
  }
  .footer-contact a:hover { color: var(--gold); }
  .footer-socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-socials a {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(90,76,56,0.65);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-socials .whatsapp-link {
    width: auto;
    height: auto;
    line-height: 1;
  }
  .footer-socials .whatsapp-link svg {
    width: 0.95rem;
    height: 0.95rem;
  }
  .footer-socials a:hover { color: var(--gold); }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav {
      padding: 1rem 1.4rem;
      gap: 0.9rem;
      align-items: center;
      flex-wrap: wrap;
    }
    .nav-logo {
      max-width: none;
      gap: 0.7rem;
    }
    .nav-logo img {
      height: 4rem;
    }
    .nav-wordmark strong {
      font-size: 1.02rem;
    }
    .nav-wordmark span {
      font-size: 0.49rem;
      letter-spacing: 0.22em;
    }
    .nav-toggle {
      display: inline-flex;
      margin-left: auto;
    }
    .nav-links {
      order: 3;
      display: grid;
      grid-template-columns: 1fr;
      width: 100%;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      pointer-events: none;
      transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, margin-top 0.35s ease;
    }
    nav.nav-open .nav-links {
      max-height: 24rem;
      margin-top: 0.35rem;
      padding: 1rem;
      opacity: 1;
      pointer-events: auto;
      background: rgba(255, 252, 246, 0.96);
      border: 1px solid rgba(126, 92, 31, 0.16);
      box-shadow: 0 18px 45px rgba(66, 45, 10, 0.12);
      border-radius: 1.2rem;
      backdrop-filter: blur(14px);
    }
    .nav-links li {
      width: 100%;
    }
    .nav-links a {
      display: block;
      width: 100%;
      padding: 0.85rem 0.95rem;
      white-space: normal;
      font-size: 0.66rem;
      letter-spacing: 0.18em;
      color: var(--deep);
      border-radius: 0.8rem;
      background: rgba(189, 160, 91, 0.08);
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      margin-left: 0;
      padding: 1rem 1.5rem;
      order: 4;
      width: 100%;
      text-align: center;
      font-size: 0.85rem;
      background: var(--gold);
      border-color: var(--gold);
      color: var(--deep);
      font-weight: 500;
    }
    .hero-subtitle {
      max-width: 29rem;
      padding: 1rem 1.1rem 1rem 1.2rem;
      line-height: 1.72;
    }
    section { padding: 5rem 2rem; }
    .intro-video-skip {
      top: 1rem;
      right: 1rem;
      padding: 0.85rem 1rem;
    }
    #home { min-height: 560px; }
    .hero-content {
      max-width: 32rem;
      padding: 0 2rem 5rem;
    }
    .hero-subtitle { max-width: 31rem; }
    .hero-actions { flex-wrap: wrap; }
    .hero-scroll { display: none; }
    #chi-siamo { grid-template-columns: 1fr; }
    .chi-img { min-height: 420px; }
    .chi-text { padding: 4rem 2rem; }
    .chi-body { max-width: none; }
    .servizi-grid { grid-template-columns: 1fr; }
    .camere-grid { grid-template-columns: 1fr; }
    .camera-card.wide {
      grid-column: span 1;
      aspect-ratio: unset;
    }
    .camera-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255,253,248,0.98) 0%, rgba(248,241,228,0.92) 100%);
      padding-bottom: 1rem;
    }
    .cam-media,
    .camera-card.wide .cam-media,
    .cam-picture,
    .camera-card.wide .cam-picture { aspect-ratio: 4/3; }
    .cam-overlay { padding: 2rem; }
    .cam-desc {
      position: static;
      left: auto;
      right: auto;
      bottom: auto;
      max-width: none;
      transform: translateY(0);
      opacity: 1;
      margin: 1rem 1rem 0;
      padding: 1rem 1.05rem 1.05rem;
      color: var(--charcoal);
      background: rgba(255, 252, 246, 0.96);
      border-left: 1px solid rgba(199, 168, 106, 0.3);
      box-shadow: none;
      backdrop-filter: none;
    }
    .camera-card.wide .cam-desc { margin-top: 1.2rem; }
    #rooftop,
    #giardino {
      min-height: auto;
      display: grid;
      grid-template-columns: 1fr;
      align-items: stretch;
      background: linear-gradient(180deg, #fffdfa 0%, var(--cream) 100%);
    }
    .rooftop-bg,
    .giardino-bg {
      position: relative;
      inset: auto;
      min-height: 420px;
      overflow: hidden;
    }
    .rooftop-content,
    .giardino-content {
      max-width: none;
      padding: 4rem 2rem;
      background: linear-gradient(180deg, #fffdfa 0%, var(--cream) 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .rooftop-content .section-tag,
    .giardino-content .section-tag {
      color: var(--gold) !important;
    }
    .rooftop-content .section-tag span {
      background: var(--gold) !important;
    }
    .rooftop-content .section-tag::before,
    .giardino-content .section-tag::before {
      background: var(--gold);
    }
    .rooftop-content .section-title,
    .giardino-content .section-title {
      color: var(--deep);
    }
    .rooftop-content .section-title em,
    .giardino-content .section-title em {
      color: var(--gold);
    }
    .rooftop-body,
    .giardino-body {
      max-width: 30rem;
      font-size: 0.95rem;
      color: rgba(90,76,56,0.86);
      margin-bottom: 2rem;
      padding: 0;
      background: none;
      border-left: 0;
      box-shadow: none;
      backdrop-filter: none;
    }
    .rooftop-pills,
    .giardino-features {
      max-width: 32rem;
      margin-top: 2rem;
      margin-bottom: 0;
    }
    .giardino-features .pill {
      color: #8d6a22;
      border-color: rgba(212,175,55,0.38);
      background: rgba(255,253,248,0.72);
    }
    .video-dropdown summary,
    .video-dropdown-panel {
      padding-left: 1.1rem;
      padding-right: 1.1rem;
    }
    #pet-welcome,
    #coffee-room { grid-template-columns: 1fr; }
    #coffee-room .pet-img {
      order: 0;
    }
    .pet-img { min-height: 380px; }
    .pet-text { padding: 4rem 2rem; }
    .gallery-masonry { grid-template-columns: 1fr 1fr; }
    .gal-item:nth-child(1) { grid-row: span 1; }
    .gal-item:nth-child(1) img { min-height: unset; }
    .gal-meta { opacity: 1; }
    .lightbox { padding: 1rem; }
    .lightbox-dialog {
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }
    .lightbox-close {
      position: static;
      justify-self: end;
    }
    .lightbox-nav {
      width: auto;
      height: auto;
      padding: 0.9rem 1rem;
    }
    .lightbox-prev { justify-self: start; }
    .lightbox-next { justify-self: end; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
    .camere-intro { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .camere-intro-right { text-align: left; }
    .contact-info { gap: 2.5rem; }
    .review-card { padding: 2.5rem 2rem; }
    .contact-block {
      min-width: min(100%, 280px);
      width: min(100%, 320px);
    }
  }

  @media (max-width: 768px) {
    nav {
      padding: 0.9rem 1rem;
      gap: 0.75rem;
    }
    .nav-logo {
      max-width: none;
      gap: 0;
    }
    .nav-logo img {
      height: 3.4rem;
    }
    .nav-wordmark {
      display: none;
    }
    .nav-toggle {
      width: 2.85rem;
      height: 2.85rem;
    }
    .nav-cta {
      padding: 0.9rem 1.3rem;
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      background: var(--gold);
      border-color: var(--gold);
      color: var(--deep);
      font-weight: 500;
    }
    .nav-links {
      gap: 0.8rem;
      padding-bottom: 0.1rem;
    }
    section { padding: 4.5rem 1.4rem; }
    #home {
      display: block;
      min-height: auto;
      height: auto;
      padding: 6.25rem 0 0;
      background: linear-gradient(180deg, rgba(255, 253, 248, 0) 0%, var(--ivory) 30%, var(--ivory) 100%);
    }
    .hero-bg {
      position: relative;
      inset: auto;
      height: clamp(17.5rem, 50vh, 24rem);
      margin: 0 1rem;
      border-radius: 1.35rem;
      box-shadow: 0 24px 54px rgba(8, 12, 22, 0.16);
      transform: none;
      animation: none;
      background-position: center 32%;
    }
    .hero-content {
      display: flex;
      flex-direction: column;
      padding: 0 1.4rem 3rem;
      max-width: none;
      margin-top: 0;
      color: var(--charcoal);
    }
    .hero-tag {
      gap: 0.7rem;
      letter-spacing: 0.24em;
      color: rgba(33, 24, 15, 0.68);
      text-shadow: none;
    }
    .hero-tag::before { width: 28px; }
    .hero-title {
      font-size: clamp(2.7rem, 14vw, 4.2rem);
      line-height: 0.98;
      margin-bottom: 1.4rem;
      color: var(--deep);
      text-shadow: none;
    }
    .hero-subtitle {
      max-width: none;
      font-size: 0.74rem;
      letter-spacing: 0.08em;
      line-height: 1.8;
      color: var(--charcoal);
      padding: 0;
      background: none;
      border-left: 0;
      box-shadow: none;
      backdrop-filter: none;
      text-shadow: none;
      margin-bottom: 0;
    }
    .hero-actions {
      order: -1;
      flex-direction: column;
      align-items: stretch;
      gap: 0.8rem;
      margin: -1.8rem 0 1.7rem;
      position: relative;
      z-index: 3;
    }
    .btn-primary,
    .btn-ghost,
    .btn-video {
      width: 100%;
      max-width: 26rem;
      margin-inline: auto;
      text-align: center;
      padding: 0.95rem 1.2rem;
    }
    .btn-ghost,
    .btn-video {
      display: inline-block;
      font-weight: 500;
      letter-spacing: 0.12em;
      color: rgba(18, 24, 38, 0.96);
      background: linear-gradient(135deg, rgba(241, 212, 122, 0.98) 0%, rgba(212, 175, 55, 0.96) 52%, rgba(176, 135, 36, 0.96) 100%);
      border: 1px solid rgba(255, 236, 178, 0.52);
      box-shadow: 0 20px 40px rgba(8, 12, 22, 0.2), inset 0 1px 0 rgba(255, 246, 214, 0.42);
      backdrop-filter: none;
    }
    .section-title { font-size: clamp(2rem, 9vw, 3rem); }
    .chi-text,
    .pet-text,
    .rooftop-content,
    .giardino-content,
    #contatti {
      padding-left: 1.4rem;
      padding-right: 1.4rem;
    }
    .chi-features { grid-template-columns: 1fr; }
    .camera-card.wide .cam-media {
      aspect-ratio: 3/2;
    }
    .camera-card.wide .cam-img {
      object-position: center;
    }
    .cam-overlay { padding: 1.5rem; }
    .cam-name { font-size: 1.85rem; }
    .cam-desc {
      font-size: 0.72rem;
      margin-top: 0.95rem;
    }
    .camera-card.wide .cam-desc {
      margin-top: 1.5rem;
      padding-top: 1.15rem;
    }
    .camera-card.wide .cam-overlay {
      padding: 1.5rem 1.5rem 1.9rem;
    }
    .camera-card.wide .cam-name {
      font-size: 1.72rem;
    }
    .cam-feature { gap: 0.65rem; }
    .rooftop-bg {
      min-height: 360px;
    }
    .rooftop-bg img,
    .giardino-bg img {
      filter: sepia(0.12) saturate(0.92);
    }
    .rooftop-bg-overlay {
      background: linear-gradient(135deg, rgba(255,250,242,0.14) 0%, rgba(212,175,55,0.08) 60%, transparent 100%);
    }
    .giardino-bg {
      min-height: 360px;
    }
    .giardino-bg-overlay {
      background: linear-gradient(135deg, rgba(255,250,242,0.14) 0%, rgba(212,175,55,0.08) 60%, transparent 100%);
    }
    .contact-info {
      gap: 1rem;
      margin-bottom: 3rem;
    }
    .review-card { padding: 2rem 1.4rem; }
    .contact-block {
      width: 100%;
      text-align: center;
      padding: 1.3rem 1.2rem;
    }
    .contact-phone-links {
      justify-content: center;
      flex-wrap: wrap;
    }
    footer {
      padding: 1.6rem 1.2rem 2rem;
      gap: 1.2rem;
    }
    .footer-socials {
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
  }

  @media (max-width: 640px) {
    .intro-video-dialog {
      width: 100%;
      height: 100%;
    }
    .intro-video-skip {
      top: max(1rem, env(safe-area-inset-top));
      right: 1rem;
      bottom: auto;
      transform: none;
      width: auto;
      max-width: none;
    }
    .hero-tag {
      font-size: 0.58rem;
      letter-spacing: 0.2em;
    }
    .chi-img,
    .pet-img { min-height: 300px; }
    .serv-card { padding: 2rem 1.4rem; }
    .cam-overlay { padding: 1.2rem; }
    .cam-name { font-size: 1.65rem; }
    .camera-card.wide .cam-overlay {
      inset: auto 0 0 0;
      padding: 1.2rem 1.2rem 1.45rem;
      background: linear-gradient(to top, rgba(24,16,10,0.9) 0%, rgba(24,16,10,0.72) 58%, rgba(24,16,10,0) 100%);
    }
    .camera-card.wide .cam-name {
      font-size: 1.58rem;
    }
    .camera-card.wide .cam-media {
      aspect-ratio: 3/2;
    }
    .camera-card.wide .cam-img {
      object-position: center;
    }
    .camera-card.wide .cam-desc {
      margin-top: 1.1rem;
      padding-top: 1rem;
    }
    .camera-card.wide .cam-feature {
      gap: 0.45rem;
    }
    .camera-card.wide .cam-badge {
      padding: 0.34rem 0.62rem;
    }
    .cam-badge {
      font-size: 0.5rem;
      letter-spacing: 0.12em;
    }
    .gallery-masonry { grid-template-columns: 1fr; }
    .gal-item img { height: 280px; }
    .lightbox { padding: 0.8rem; }
    .lightbox-figure { padding: 0.75rem; }
    .lightbox-image { max-height: 58vh; }
    .footer-copy,
    .footer-contact a,
    .footer-contact span,
    .footer-socials a {
      letter-spacing: 0.05em;
    }
  }