:root {
      --bg: #ffffff;
      --bg-alt: #f7f7f7;

      /* Accent più scuro: leggibile su bianco */
      --accent: #8a6b2f;         /* bronzo scuro */
      --accent-soft: rgba(138, 107, 47, 0.12);

      --text: #111111;
      --muted: #4b4b4b;
      --border: #e6e6e6;
      --shadow: rgba(0,0,0,0.10);

      --container-width: 1120px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { height: 100%; scroll-behavior: smooth; }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top, #ffffff 0, #f3f3f3 70%);
      color: var(--text);
    }

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

    .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* NAVBAR */
    .navbar {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      z-index: 20;
      background: linear-gradient(to bottom, rgba(255,255,255,0.96), rgba(255,255,255,0.86), transparent);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.0rem 0;
    }

    .brand { display: flex; align-items: center; gap: 0.6rem; }
    .brand-logo { height: 44px; width: auto; display: block; }

    .nav-links {
      display: flex;
      gap: 1.8rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .nav-links a {
      position: relative;
      color: var(--muted);
      transition: color 0.2s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.45rem;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.2s ease;
      border-radius: 999px;
    }

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

    .nav-cta {
      padding: 0.5rem 1.0rem;
      border-radius: 999px;
      border: 1px solid rgba(138, 107, 47, 0.55);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      background: rgba(138, 107, 47, 0.08);
      cursor: pointer;
      transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
      color: var(--text);
    }

    .nav-cta:hover {
      background: rgba(138, 107, 47, 0.14);
      border-color: rgba(138, 107, 47, 0.75);
      transform: translateY(-1px);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      padding-top: 6.0rem;
      display: flex;
      align-items: center;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
      gap: 3.5rem;
      align-items: center;
    }

    .eyebrow {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--muted);
      margin-bottom: 1.2rem;
    }

    .hero-title {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      line-height: 1.1;
      margin-bottom: 1.2rem;
    }

    .hero-title span {
      color: var(--accent);
      text-shadow: 0 1px 0 rgba(0,0,0,0.05);
    }

    .hero-subtitle {
      max-width: 30rem;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2.0rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
    }

    .hero-meta span strong { color: var(--text); font-weight: 600; }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    .btn-primary,
    .btn-ghost {
      border-radius: 999px;
      padding: 0.75rem 1.55rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      background: none;
    }

    .btn-primary {
      border-color: rgba(138, 107, 47, 0.65);
      background: linear-gradient(135deg, rgba(138,107,47,0.18), rgba(138,107,47,0.08));
      color: var(--text);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, rgba(138,107,47,0.26), rgba(138,107,47,0.12));
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.10);
    }

    .btn-ghost {
      border-color: var(--border);
      color: var(--muted);
      background: rgba(255,255,255,0.7);
    }

    .btn-ghost:hover {
      border-color: rgba(138, 107, 47, 0.55);
      color: var(--text);
      transform: translateY(-1px);
      background: rgba(255,255,255,0.95);
    }

    .hero-right { position: relative; }

    .bottle-card {
      position: relative;
      border-radius: 1.4rem;
      border: 1px solid rgba(0,0,0,0.08);
      background: radial-gradient(circle at top, #ffffff, #f2f2f2);
      padding: 1.2rem 1.2rem 1.4rem;
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    }

    .bottle-tag {
      position: absolute;
      top: 1.1rem;
      left: 1.1rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
      border: 1px solid rgba(138,107,47,0.50);
      background: rgba(255,255,255,0.90);
      backdrop-filter: blur(10px);
      color: var(--text);
    }

    .bottle-image-wrapper {
      height: 300px;                 /* un pelo più grande */
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1.2rem;
      margin-bottom: 1rem;
      position: relative;
    }

    .bottle-glow {
      position: absolute;
      bottom: 10%;
      width: 85%;
      height: 65%;
      margin: 0 auto;
      background: radial-gradient(circle, rgba(138,107,47,0.22), transparent 65%);
      opacity: 0.75;
      filter: blur(10px);
    }

    .bottle-image-double {
      width: 100%;
      max-height: 300px;
      object-fit: contain;
      object-position: center;
      z-index: 2;
      position: relative;
    }

    .bottle-link {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent);
      text-decoration: none;
    }

    .bottle-link:hover { text-decoration: underline; }

    .bottle-info {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1.5rem;
      margin-top: 0.3rem;
      padding-top: 0.8rem;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .bottle-name {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.2rem;
    }

    .bottle-meta { font-size: 0.85rem; color: var(--muted); }
    .bottle-meta span { display: block; }

    /* SEZIONI */
    section { padding: 4.5rem 0; }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }

    .section-title {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 0.35rem;
    }

    .section-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 64px;
      height: 3px;
      border-radius: 999px;
      background: var(--accent);
      opacity: 0.9;
    }

    .section-subtitle {
      max-width: 30rem;
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* VINI: cards verticali, immagine grande a lato */
    #vini {
      background: linear-gradient(to bottom, rgba(255,255,255,0.0), rgba(0,0,0,0.02));
    }

    .wines-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.4rem;
    }

    .wine-row {
      border-radius: 1.4rem;
      border: 1px solid rgba(0,0,0,0.08);
      background: radial-gradient(circle at top, #ffffff, #f4f4f4);
      box-shadow: 0 14px 35px rgba(0,0,0,0.10);
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
      min-height: 320px;
    }

    .wine-row:nth-child(even) {
      grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    }

    .wine-media {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.2rem;
      background: linear-gradient(135deg, rgba(138,107,47,0.08), rgba(255,255,255,0.0));
    }

    .wine-media::after {
      content: "";
      position: absolute;
      inset: 12% 10% 14% 10%;
      background: radial-gradient(circle, rgba(138,107,47,0.22), transparent 65%);
      filter: blur(18px);
      opacity: 0.85;
      z-index: 0;
    }

    .wine-media img {
      position: relative;
      z-index: 1;
      height: 290px;          /* bottiglia più grande */
      width: auto;
      object-fit: contain;
      transform: translateY(2px);
    }

    .wine-content {
      padding: 1.6rem 1.6rem 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .wine-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--muted);
    }

    .wine-name {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.6rem;
      line-height: 1.1;
    }

    .wine-name a { color: var(--text); }
    .wine-name a:hover { text-decoration: underline; }

    .wine-meta {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .wine-notes {
      font-size: 0.95rem;
      color: #2c2c2c;
      line-height: 1.7;
    }

    .wine-actions {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-top: 0.9rem;
      border-top: 1px solid rgba(0,0,0,0.06);
      font-size: 0.9rem;
    }

    .pill {
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(138,107,47,0.35);
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      background: rgba(138,107,47,0.06);
      font-size: 0.75rem;
      white-space: nowrap;
    }

    .wine-actions a {
      color: var(--accent);
      font-weight: 500;
    }

    .wine-actions a:hover { text-decoration: underline; }

    /* SEZIONE AZIENDA */
    .section-alt {
      background: radial-gradient(circle at bottom, #ffffff, #f0f0f0);
      border-top: 1px solid rgba(0,0,0,0.06);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .story-text p {
      font-size: 0.98rem;
      color: #2c2c2c;
      line-height: 1.85;
      margin-bottom: 1.4rem;
    }

    .story-text p:last-child { margin-bottom: 0; }

    .story-card {
      border-radius: 1.2rem;
      border: 1px solid rgba(0,0,0,0.08);
      background: radial-gradient(circle at top, #ffffff, #f4f4f4);
      padding: 1.6rem 1.5rem;
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.7;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .story-card h3 {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.35rem;
      margin-bottom: 0.6rem;
      color: var(--text);
    }

    /* VISITE / CONTATTI */
    .visit { text-align: center; }

    .visit-text {
      max-width: 28rem;
      margin: 0.8rem auto 1.8rem;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .visit-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.6rem;
      margin-top: 2.5rem;
    }

    .visit-item {
      border-radius: 1rem;
      border: 1px solid rgba(0,0,0,0.08);
      padding: 1.15rem 1.05rem;
      font-size: 0.9rem;
      color: var(--muted);
      text-align: left;
      background: rgba(255,255,255,0.92);
      box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    }

    .visit-item h4 {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 0.5rem;
      color: var(--text);
    }

    .visit-item strong { color: var(--text); }

    /* FOOTER */
    footer {
      border-top: 1px solid rgba(0,0,0,0.08);
      padding: 1.6rem 0 2.4rem;
      font-size: 0.85rem;
      color: var(--muted);
      background: #ffffff;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-inner a { color: var(--muted); }

    /* RESPONSIVE */
    @media (max-width: 980px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.8rem;
      }
      .hero-right { order: -1; }
      .story-grid { grid-template-columns: minmax(0, 1fr); }
      .visit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .nav-links { display: none; }
    }

    @media (max-width: 860px) {
      .wine-row,
      .wine-row:nth-child(even) {
        grid-template-columns: 1fr;
      }
      .wine-media { padding: 1.1rem 1.2rem; }
      .wine-media img { height: 320px; } /* su mobile anche più grande */
    }

    @media (max-width: 640px) {
      .visit-grid { grid-template-columns: 1fr; }
      .navbar-inner { padding: 0.8rem 0; }
      .hero { padding-top: 4.8rem; }
      .brand-logo { height: 34px; }
      section { padding: 4.0rem 0; }
    }
