:root {
  color-scheme: dark;
  --bg: #0b1527;
  --bg-alt: #12223b;
  --surface: #1a314f;
  --surface-alt: #223c5f;
  --accent: #5aa2ff;
  --accent-soft: rgba(90, 162, 255, 0.3);
  --glow-strong: rgba(90, 162, 255, 0.55);
  --glow-soft: rgba(90, 162, 255, 0.22);
  --glow-bright: rgba(150, 210, 255, 0.65);
  --text: #f7faff;
  --text-muted: #d3e0f5;
  --border: rgba(90, 162, 255, 0.38);
  --shadow: 0 24px 60px rgba(3, 12, 28, 0.28);
  --max-width: 1150px;
  --radius: 18px;
  --transition: 200ms ease;
  --section-gap: clamp(2.5rem, 6vw, 4.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(circle at 15% 15%, rgba(90, 162, 255, 0.22), transparent 58%),
    linear-gradient(140deg, rgba(7, 17, 33, 0.55), rgba(14, 30, 55, 0.35)),
    url("images/sfondo.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-attachment: fixed, fixed, fixed;
  background-blend-mode: screen, soft-light, normal;
  line-height: 1.6;
  min-height: 100vh;
}

body.page-album {
  background-image: radial-gradient(circle at 20% 10%, rgba(90, 162, 255, 0.24), transparent 58%),
    linear-gradient(140deg, rgba(7, 17, 33, 0.5), rgba(14, 30, 55, 0.32)),
    url("images/sfondo_2.JPG");
}

main {
  display: grid;
  gap: var(--section-gap);
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}

img {
  max-width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 6px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(1rem, 3vw, 2.5rem);
  background: rgba(7, 16, 31, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Playfair Display", serif;
}

.logo-image {
  width: clamp(48px, 6vw, 64px);
  height: clamp(48px, 6vw, 64px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
}

.logo-type {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-name {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--text);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.nav-open .nav-toggle-bar {
  background: transparent;
}

.nav-open .nav-toggle-bar::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle-bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.site-nav a.nav-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a.nav-highlight:hover,
.site-nav a.nav-highlight:focus-visible {
  color: var(--bg);
  background: var(--accent);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  position: relative;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(8, 20, 38, 0.62), rgba(16, 36, 64, 0.4)),
    url("images/sfondo.jpg");
  background-size: cover;
  background-position: center;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(90, 162, 255, 0.4);
  box-shadow: 0 30px 70px rgba(2, 8, 20, 0.32);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}

.hero::before {
  width: clamp(240px, 45vw, 520px);
  height: clamp(240px, 45vw, 520px);
  top: -18%;
  right: -8%;
  background: radial-gradient(circle, var(--glow-strong) 0%, transparent 70%);
  opacity: 0.8;
  animation: blue-drift 16s ease-in-out infinite;
}

.hero::after {
  width: clamp(220px, 40vw, 480px);
  height: clamp(220px, 40vw, 480px);
  bottom: -28%;
  left: -10%;
  background: radial-gradient(circle, var(--glow-soft) 0%, transparent 72%);
  opacity: 0.75;
  animation: blue-drift 18s ease-in-out infinite reverse;
}

.hero > * {
  position: relative;
  z-index: 1;
}
.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  padding: clamp(1.2rem, 4vw, 2rem);
  background: linear-gradient(160deg, rgba(26, 49, 79, 0.9), rgba(26, 49, 79, 0.5));
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 18% 22%;
  border-radius: 30% 40% 32% 42%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.28) 0%, transparent 70%);
  filter: blur(6px);
  opacity: 0.6;
  animation: pulse-glow 9s ease-in-out infinite;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  width: clamp(160px, 28vw, 220px);
  height: clamp(160px, 28vw, 220px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.55) 0%, rgba(59, 130, 246, 0.08) 65%, transparent 70%);
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.hero-bottle {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: 580px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 22px 52px rgba(0, 0, 0, 0.45));
  animation: floaty 8s ease-in-out infinite;
}

.hero-content {
  max-width: 580px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 1.2rem;
}

.overline {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition);
}

.btn.primary {
  background: linear-gradient(120deg, #5aa2ff 0%, #7fc0ff 45%, #4a93f0 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #f1f5ff;
  box-shadow: 0 12px 30px rgba(90, 162, 255, 0.38),
    0 0 22px rgba(90, 162, 255, 0.25);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 18px 44px rgba(90, 162, 255, 0.5),
    0 0 28px rgba(90, 162, 255, 0.35);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: rgba(59, 130, 246, 0.16);
  transform: translateY(-2px);
}

.btn.glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(59, 130, 246, 0.35);
  z-index: 0;
}

.btn.glow::before {
  content: "";
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(59, 130, 246, 0) 0deg,
    rgba(59, 130, 246, 0.65) 120deg,
    rgba(59, 130, 246, 0) 240deg,
    rgba(59, 130, 246, 0.65) 360deg
  );
  animation: sweep 6s linear infinite;
  z-index: -1;
}

.btn.glow:hover,
.btn.glow:focus-visible {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

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

.section {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 4.5rem);
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.3) 50%,
    transparent 100%
  );
  opacity: 0.45;
  transform: translateY(calc(100% + 3.25rem));
  pointer-events: none;
}

.section:last-of-type::after {
  display: none;
}

.section-alt {
  background: linear-gradient(135deg, rgba(8, 18, 33, 0.72), rgba(18, 38, 66, 0.45)),
    url("images/sfondo_2.JPG");
  background-size: cover;
  background-position: center;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(90, 162, 255, 0.32);
  box-shadow: 0 26px 60px rgba(2, 8, 20, 0.28);
  position: relative;
  isolation: isolate;
}

.album-hero,
.album-section,
.album-preview,
.album-cta {
  background: rgba(10, 20, 36, 0.62);
  border: 1px solid rgba(90, 162, 255, 0.35);
  border-radius: calc(var(--radius) + 6px);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  max-width: min(var(--max-width), calc(100% - 2.5rem));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  isolation: isolate;
}

.section-alt::before,
.album-hero::before,
.album-preview::before,
.album-cta::before,
.album-section::before {
  content: "";
  position: absolute;
  width: clamp(200px, 30vw, 380px);
  height: clamp(200px, 30vw, 380px);
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, var(--glow-soft) 0%, transparent 72%);
  opacity: 0.7;
  filter: blur(6px);
  animation: blue-drift 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.section-alt > *,
.album-hero > *,
.album-preview > *,
.album-cta > *,
.album-section > * {
  position: relative;
  z-index: 1;
}

.album-hero::after,
.album-section::after,
.album-preview::after,
.album-cta::after {
  content: none;
}

.section-header {
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
  display: grid;
  gap: 1rem;
}

.section-header p {
  margin: 0;
}

.brochure-copy {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 2.6rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.brochure-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.brochure-copy strong {
  color: var(--text);
}

.brochure-copy::before,
.media-card::before,
.team-card::before,
.gallery-item::before,
.values-list li::before {
  content: "";
  position: absolute;
  width: clamp(160px, 28vw, 220px);
  height: clamp(160px, 28vw, 220px);
  top: -25%;
  right: -18%;
  background: radial-gradient(circle, var(--glow-soft) 0%, transparent 70%);
  opacity: 0.6;
  filter: blur(6px);
  transition: opacity var(--transition), transform 600ms ease;
  pointer-events: none;
  z-index: 0;
}

.brochure-copy:hover::before,
.media-card:hover::before,
.team-card:hover::before,
.gallery-item:hover::before,
.values-list li:hover::before {
  opacity: 0.95;
  transform: translate(-6%, 4%) scale(1.05);
}

.brochure-copy > *,
.media-card > *,
.team-card > *,
.gallery-item > *,
.values-list li > * {
  position: relative;
  z-index: 1;
}

.album-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(8, 18, 33, 0.7), rgba(90, 162, 255, 0.35));
}

.album-preview {
  text-align: center;
  background: linear-gradient(135deg, rgba(20, 40, 64, 0.78), rgba(90, 162, 255, 0.3));
}

.album-preview-inner {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}

.album-preview-inner p {
  color: var(--text-muted);
  margin: 0;
}

.album-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1.5rem;
}

.album-hero .btn {
  justify-self: center;
}

.section-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
  counter-reset: steps;
}

.timeline li {
  position: relative;
  padding-left: 3rem;
  border-left: 1px solid var(--border);
}

.timeline li::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: -45px;
  top: 0;
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.timeline h3 {
  margin-bottom: 0.6rem;
}

.timeline p {
  margin: 0;
  color: var(--text-muted);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.6rem, 4vw, 2.4rem);
  margin-top: 2rem;
}

.details-grid dt {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
}

.details-grid dd {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
}

.album-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.album-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4 / 3;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.album-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 400ms ease;
}

.album-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 12, 23, 0.55) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.album-grid figure:hover,
.album-grid figure:focus-within {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(2, 8, 20, 0.4),
    0 0 26px rgba(90, 162, 255, 0.35);
  border-color: rgba(90, 162, 255, 0.7);
}

.album-grid figure:hover img,
.album-grid figure:focus-within img {
  transform: scale(1.05);
}

.album-grid figure:hover::after,
.album-grid figure:focus-within::after {
  opacity: 1;
}

.media-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--border);
  display: grid;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.media-card,
.team-card,
.gallery-item,
.values-list li {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.media-card:hover,
.media-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(2, 8, 20, 0.36);
  border-color: rgba(59, 130, 246, 0.6);
}

.media-card figcaption {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.4rem;
}

.values-list li {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(6, 12, 24, 0.2);
}

.values-list strong {
  color: var(--accent);
}

.album-cta {
  text-align: center;
  background: linear-gradient(115deg, rgba(8, 18, 33, 0.7), rgba(90, 162, 255, 0.4));
}

.album-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.team-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.2rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.team-card p {
  color: var(--text-muted);
}

.team-card ul {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2rem, 5vw, 3rem);
}

.gallery-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.gallery-item figcaption {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.photo-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.photo-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 22px 50px rgba(2, 8, 20, 0.32);
  position: relative;
  aspect-ratio: 4 / 3;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.photo-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 23, 0) 0%, rgba(5, 12, 23, 0.45) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.photo-grid figure:hover,
.photo-grid figure:focus-within {
  transform: translateY(-6px);
  border-color: rgba(90, 162, 255, 0.7);
  box-shadow: 0 30px 70px rgba(2, 8, 20, 0.38),
    0 0 24px rgba(90, 162, 255, 0.32);
}

.photo-grid figure:hover img,
.photo-grid figure:focus-within img {
  transform: scale(1.04);
}

.photo-grid figure:hover::after,
.photo-grid figure:focus-within::after {
  opacity: 1;
}

@keyframes blue-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(6%, -4%, 0);
    opacity: 1;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(0.95) rotate(0deg);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.05) rotate(2deg);
    opacity: 0.9;
  }
}

@keyframes sweep {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta {
  padding: clamp(5rem, 11vw, 7rem) clamp(1.2rem, 4vw, 4.5rem);
  background: radial-gradient(circle at 20% 20%, rgba(90, 162, 255, 0.42), transparent 65%),
    linear-gradient(180deg, #0f203b 0%, #0b1527 100%);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1.5rem;
}

.cta-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  justify-items: center;
  width: 100%;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-note a {
  color: var(--accent);
  text-decoration: none;
}

.cta-note a:hover,
.cta-note a:focus-visible {
  text-decoration: underline;
}

.cta-note.motto {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-footer {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--border);
  background: rgba(13, 26, 46, 0.72);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-media {
    order: 2;
  }

  .hero-content {
    margin: 0 auto;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    padding: clamp(5rem, 12vw, 7rem) 1.5rem 2rem;
    background: rgba(8, 16, 30, 0.96);
    width: 100vw;
    height: 100vh;
    z-index: 1100;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 70px rgba(2, 8, 20, 0.45);
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    font-size: 1.1rem;
  }

  .nav-open #site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    color: var(--text);
  }

  #vino .section-grid > div {
    background: rgba(8, 18, 33, 0.78);
    border: 1px solid rgba(90, 162, 255, 0.3);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: 0 20px 50px rgba(2, 8, 20, 0.28);
  }

  #vino .details-grid dd {
    color: var(--text);
  }

  .section::after {
    inset: 0 8%;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }
}

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