@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --green: #0b6b3a;
  --green2: #119754;
  --lime: #b7e43b;
  --ink: #07130d;
  --muted: #5f6f66;
  --cream: #f4f7f2;
  --white: #fff;
  --line: rgba(7, 19, 13, 0.1);
  --shadow: 0 24px 70px rgba(5, 35, 20, 0.13);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select {
  font: inherit;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow:before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 4px;
  background: var(--lime);
}
.header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.header > a:first-child {
  display: flex;
  align-items: center;
  border-radius: 50%;
}
.header-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.25s;
}
.header > a:first-child:hover .header-logo {
  transform: scale(1.04);
}
.menu ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu a {
  display: block;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 0.94rem;
  position: relative;
}
.menu a:after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: 0.25s;
}
.menu a:hover:after,
.menu a.active:after {
  transform: scaleX(1);
}
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 13px 22px;
  font-weight: 800;
  transition: 0.25s;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11, 107, 58, 0.2);
}
.header-cta:hover,
.button:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.button.secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.button.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}
.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #eef4ef;
  position: relative;
  cursor: pointer;
}
.hamburger span,
.hamburger:before,
.hamburger:after {
  content: "";
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s;
}
.hamburger:before {
  top: 15px;
}
.hamburger span {
  top: 22px;
}
.hamburger:after {
  top: 29px;
}
.menu-open .hamburger span {
  opacity: 0;
}
.menu-open .hamburger:before {
  transform: translateY(7px) rotate(45deg);
}
.menu-open .hamburger:after {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(3, 18, 10, 0.9) 0%,
      rgba(3, 18, 10, 0.63) 48%,
      rgba(3, 18, 10, 0.18) 100%
    ),
    url("home.webp") center/cover no-repeat;
  color: #fff;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, var(--cream));
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: auto;
  padding: 110px 0 150px;
}
.hero-content {
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 800;
}
.hero h1 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
  margin: 24px 0;
}
.hero h1 span {
  color: var(--lime);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 630px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 42px;
  margin-top: 55px;
}
.hero-stat strong {
  display: block;
  font: 800 1.65rem Montserrat;
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}
.section {
  padding: 110px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head h2 {
  font: 800 clamp(2.2rem, 5vw, 4.2rem) / 1 Montserrat;
  margin: 8px 0 0;
  letter-spacing: -0.045em;
  max-width: 760px;
}
.section-head p {
  max-width: 430px;
  color: var(--muted);
  margin: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.media-card {
  position: relative;
}
.media-card img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-badge {
  position: absolute;
  right: -24px;
  bottom: 36px;
  background: var(--lime);
  padding: 22px;
  border-radius: 20px;
  width: 190px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: var(--shadow);
}
.about-copy h2 {
  font: 800 clamp(2.2rem, 5vw, 4rem) / 1.05 Montserrat;
  letter-spacing: -0.045em;
  margin: 16px 0 24px;
}
.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.value strong {
  display: block;
  font-family: Montserrat;
  margin-bottom: 4px;
}
.value span {
  font-size: 0.88rem;
  color: var(--muted);
}
.dark-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark-section:before {
  content: "RV";
  position: absolute;
  right: -40px;
  top: -120px;
  font: 900 26rem Montserrat;
  color: rgba(255, 255, 255, 0.025);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  color: var(--ink);
  min-height: 285px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.28s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.card-number {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #eaf5ed;
  color: var(--green);
  display: grid;
  place-items: center;
  font: 800 1.1rem Montserrat;
}
.card h3 {
  font: 800 1.45rem Montserrat;
  margin: 28px 0 12px;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
}
.card.featured {
  background: var(--green);
  color: #fff;
}
.card.featured .card-number {
  background: rgba(255, 255, 255, 0.14);
  color: var(--lime);
}
.card.featured p,
.card.featured a {
  color: rgba(255, 255, 255, 0.78);
}
.banner {
  margin: 0 auto 110px;
  width: min(1160px, calc(100% - 40px));
  background:
    linear-gradient(105deg, rgba(11, 107, 58, 0.96), rgba(7, 19, 13, 0.9)),
    url("cover.webp") center/cover;
  border-radius: 32px;
  padding: 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow);
}
.banner h2 {
  font: 800 clamp(2rem, 4vw, 3.6rem) / 1 Montserrat;
  margin: 0 0 15px;
  letter-spacing: -0.04em;
}
.banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
}
.page-hero {
  min-height: 420px;
  display: flex;
  align-items: end;
  padding: 80px 0;
  background:
    linear-gradient(rgba(3, 18, 10, 0.75), rgba(3, 18, 10, 0.75)),
    url("cover.webp") center/cover;
  color: #fff;
}
.page-hero h1 {
  font: 800 clamp(3rem, 7vw, 5.4rem) / 0.95 Montserrat;
  letter-spacing: -0.055em;
  margin: 14px 0;
}
.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.08rem;
}
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.story-row:nth-child(even) .story-image {
  order: 2;
}
.story-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}
.story-copy h2 {
  font: 800 clamp(2rem, 4vw, 3.3rem) / 1.05 Montserrat;
  letter-spacing: -0.04em;
  margin: 14px 0 20px;
}
.story-copy p {
  color: var(--muted);
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.category-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: #e5f2e9;
  color: var(--green);
  font-weight: 800;
  font-size: 0.88rem;
}
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.package {
  background: #fff;
  border-radius: 26px;
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px rgba(5, 35, 20, 0.06);
  display: flex;
  flex-direction: column;
}
.package-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.package h3 {
  font: 800 1.75rem/1.1 Montserrat;
  margin: 18px 0;
}
.package p {
  color: var(--muted);
}
.package ul {
  padding: 0;
  list-style: none;
  margin: 18px 0 28px;
}
.package li {
  padding: 8px 0 8px 25px;
  position: relative;
}
.package li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.package .button {
  margin-top: auto;
}
.package.featured {
  background: var(--green);
  color: #fff;
  transform: translateY(-16px);
}
.package.featured p,
.package.featured .package-label {
  color: rgba(255, 255, 255, 0.76);
}
.package.featured li:before {
  color: var(--lime);
}
.package.featured .button {
  background: #fff;
  color: var(--ink);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.shop-card {
  position: relative;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 30px;
  color: #fff;
  background-position: center;
  background-size: cover;
}
.shop-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(3, 18, 10, 0.94));
}
.shop-card:nth-child(1) {
  background-image: url("1.svg");
}
.shop-card:nth-child(2) {
  background-image: url("3.svg");
}
.shop-card:nth-child(3) {
  background-image: url("shop.svg");
}
.shop-card > div {
  position: relative;
}
.shop-card h3 {
  font: 800 1.7rem Montserrat;
  margin: 0 0 8px;
}
.shop-card p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 20px;
}
.shop-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 11px 15px;
  font-weight: 800;
  cursor: pointer;
}
.shop-cart-trigger span {
  min-width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
}
.shop-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 45px;
}
.shop-heading h2 {
  max-width: 680px;
  margin: 10px 0 0;
  font: 800 clamp(2.2rem, 5vw, 4rem) / 1 Montserrat;
  letter-spacing: -0.045em;
}
.shop-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(5, 35, 20, 0.08);
  transition:
    transform 0.28s,
    box-shadow 0.28s;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.product-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ink);
}
.product-card-body {
  padding: 26px;
}
.product-category {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin: 9px 0 10px;
}
.product-title-row h3 {
  margin: 0;
  font: 800 1.55rem Montserrat;
}
.product-title-row > strong {
  white-space: nowrap;
  color: var(--green);
  font: 800 1.15rem Montserrat;
}
.product-card-body p {
  min-height: 52px;
  margin: 0 0 20px;
  color: var(--muted);
}
.product-card-body label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card-body select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #dfe7e1;
  border-radius: 13px;
  background: #f8fbf8;
  color: var(--ink);
  outline: none;
}
.product-card-body .button {
  width: 100%;
}
.shop-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.shop-assurance > div {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.shop-assurance strong {
  font-family: Montserrat;
}
.shop-assurance span {
  color: var(--muted);
  font-size: 0.85rem;
}
body.cart-open {
  overflow: hidden;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(3, 18, 10, 0.58);
  opacity: 0;
  transition: opacity 0.25s;
}
.cart-overlay.is-visible {
  opacity: 1;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  width: min(470px, 100%);
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  box-shadow: -24px 0 70px rgba(3, 18, 10, 0.2);
  transform: translateX(105%);
  transition: transform 0.32s ease;
}
.cart-drawer.is-open {
  transform: none;
}
.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 {
  margin: 6px 0 0;
  font: 800 2rem Montserrat;
}
.cart-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #eef4ef;
  color: var(--ink);
  font-size: 1.8rem;
  cursor: pointer;
}
.cart-items {
  display: grid;
  gap: 15px;
  overflow-y: auto;
  padding: 22px 3px 22px 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.cart-item > img {
  width: 92px;
  height: 92px;
  border-radius: 15px;
  object-fit: cover;
}
.cart-item-copy > div:first-child,
.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.cart-item-copy > span {
  display: block;
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 0.8rem;
}
.remove-item {
  border: 0;
  background: none;
  color: #a23a3a;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}
.quantity-control {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.quantity-control button {
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 50%;
  background: #eef4ef;
  cursor: pointer;
}
.cart-empty {
  margin: auto;
  display: grid;
  gap: 7px;
  padding: 35px;
  text-align: center;
}
.cart-empty[hidden] {
  display: none;
}
.cart-empty span {
  color: var(--muted);
}
.cart-summary {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.cart-summary > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font: 800 1.25rem Montserrat;
}
.checkout-button {
  width: 100%;
}
.payment-choice {
  display: grid;
  gap: 9px;
}
.payment-choice > span {
  margin-bottom: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.paypal-button {
  background: #0070ba;
}
.stripe-button {
  background: #635bff;
}
.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}
.cart-summary p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-panel,
.contact-image {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact-panel {
  padding: 45px;
}
.contact-panel h2 {
  font: 800 2.5rem/1.05 Montserrat;
  margin: 12px 0 30px;
}
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-item {
  display: block;
  padding: 18px;
  border-radius: 18px;
  background: #f1f6f2;
}
.contact-item small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}
.contact-item strong {
  font-size: 1.02rem;
}
.contact-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.payment-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.payment-info {
  background: var(--green);
  color: #fff;
  padding: 40px;
  border-radius: var(--radius);
}
.payment-info h2 {
  font: 800 2.3rem/1.05 Montserrat;
}
.payment-info p {
  color: rgba(255, 255, 255, 0.75);
}
.subscription-summary {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.subscription-summary > div {
  display: grid;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}
.subscription-summary span,
.subscription-summary small {
  color: rgba(255, 255, 255, 0.7);
}
.subscription-summary strong {
  margin: 3px 0;
  font: 800 1.35rem Montserrat;
}
.payment-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.payment-form {
  display: grid;
  gap: 16px;
}
.payment-form label {
  font-size: 0.83rem;
  font-weight: 800;
}
.payment-form input,
.payment-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #dfe7e1;
  border-radius: 13px;
  background: #fbfdfb;
  outline: none;
}
.payment-form input:focus,
.payment-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(11, 107, 58, 0.1);
}
.manage-btn {
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
}
.registration-payment-choice {
  display: grid;
  gap: 10px;
  margin: 5px 0;
  padding: 0;
  border: 0;
}
.registration-payment-choice legend {
  margin-bottom: 8px;
  font-size: 0.83rem;
  font-weight: 800;
}
.registration-payment-choice > label {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid #dfe7e1;
  border-radius: 15px;
  background: #fbfdfb;
  cursor: pointer;
}
.registration-payment-choice input {
  width: 19px;
  height: 19px;
  accent-color: var(--green);
}
.registration-payment-choice span {
  display: grid;
}
.registration-payment-choice small,
.recurring-consent {
  color: var(--muted);
  font-size: 0.76rem;
}
.recurring-consent {
  margin: 4px 0 2px;
}
.footer {
  background: #050d08;
  color: #fff;
  padding: 65px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 50px;
}
.footer-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 20px;
}
.footer p {
  color: rgba(255, 255, 255, 0.58);
  max-width: 420px;
}
.footer h4 {
  font: 800 1rem Montserrat;
  margin: 0 0 18px;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}
.footer-links a:hover {
  color: var(--lime);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
}
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}
.transition-logo {
  width: 180px;
}
.is-transitioning .page-transition {
  opacity: 1;
  visibility: visible;
}
.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--ink);
}
.status-card {
  max-width: 620px;
  background: #fff;
  border-radius: 30px;
  padding: 55px;
  text-align: center;
}
.status-card h1 {
  font: 800 2.7rem Montserrat;
}
.status-card p {
  color: var(--muted);
}
.status-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
}
@media (max-width: 900px) {
  .header {
    height: 78px;
    padding: 0 20px;
  }
  .header-logo {
    width: 60px;
    height: 60px;
  }
  .header-cta {
    display: none;
  }
  .shop-cart-trigger {
    margin-left: auto;
    margin-right: 10px;
  }
  .hamburger {
    display: block;
  }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100dvh - 78px);
    background: #fff;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition:
      transform 0.32s ease,
      opacity 0.22s ease,
      visibility 0.32s;
    padding: 34px 24px 60px;
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 60px rgba(3, 18, 10, 0.12);
  }
  .menu-open .menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .menu ul {
    display: grid;
    gap: 6px;
    width: min(100%, 560px);
    margin: 0 auto;
  }
  .menu a {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 12px 18px;
    border-radius: 16px;
    font: 800 clamp(1.15rem, 5vw, 1.45rem) Montserrat;
    transition:
      background 0.2s,
      color 0.2s;
  }
  .menu a:hover,
  .menu a.active {
    background: #eaf5ed;
    color: var(--green);
  }
  .menu a::after {
    display: none;
  }
  .hero {
    min-height: 650px;
  }
  .hero-stats {
    gap: 24px;
  }
  .about-grid,
  .story-row,
  .contact-grid,
  .payment-wrap {
    grid-template-columns: 1fr;
  }
  .media-card img {
    height: 430px;
  }
  .media-badge {
    right: 15px;
  }
  .cards,
  .packages,
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }
  .package.featured {
    transform: none;
  }
  .story-row:nth-child(even) .story-image {
    order: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
  .hero-inner {
    width: min(100% - 28px, 1160px);
    padding: 80px 0 130px;
  }
  .hero h1 {
    font-size: 3.25rem;
  }
  .hero p {
    font-size: 0.98rem;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .hero-stat strong {
    font-size: 1.25rem;
  }
  .hero-stat span {
    font-size: 0.7rem;
  }
  .section {
    padding: 78px 0;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 18px;
  }
  .about-grid {
    gap: 35px;
  }
  .media-card img,
  .story-image img {
    height: 340px;
  }
  .media-badge {
    width: 160px;
    padding: 16px;
  }
  .values,
  .cards,
  .packages,
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-heading {
    display: block;
  }
  .shop-heading > p {
    margin-top: 18px;
  }
  .product-grid,
  .shop-assurance {
    grid-template-columns: 1fr;
  }
  .product-card-body p {
    min-height: 0;
  }
  .shop-cart-trigger {
    padding: 9px 11px;
    font-size: 0.8rem;
  }
  .cart-drawer {
    padding: 22px 18px;
  }
  .banner {
    padding: 36px 25px;
    display: block;
  }
  .banner .button {
    margin-top: 25px;
  }
  .page-hero {
    min-height: 350px;
  }
  .story-row {
    gap: 30px;
    margin-bottom: 65px;
  }
  .contact-panel,
  .payment-box,
  .payment-info {
    padding: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    display: block;
  }
  .status-card {
    padding: 35px 24px;
  }
}
/* BLOCCO SCHERMO E CORREZIONE SCORRIMENTO LATERALE */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

header,
main,
footer,
section {
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Blocca la pagina dietro al menu hamburger */
body.menu-open {
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.menu-open main,
body.menu-open footer {
  pointer-events: none;
}

/* Checkout shop e conferma pagamento */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.checkout-button[aria-disabled="true"] {
  opacity: 0.48;
  pointer-events: none;
}
.checkout-header {
  position: relative;
  background: #fff;
}
.secure-checkout-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}
.secure-checkout-label span {
  color: var(--green2);
  font-size: 0.65rem;
}
.checkout-back {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
}
.checkout-main {
  padding: 58px 0 90px;
  background:
    radial-gradient(circle at 85% 10%, rgba(183, 228, 59, 0.16), transparent 24rem),
    var(--cream);
}
.checkout-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}
.checkout-intro h1 {
  margin: 10px 0 0;
  font: 900 clamp(2.2rem, 5vw, 4rem)/0.98 Montserrat;
  letter-spacing: -0.045em;
}
.checkout-steps {
  display: flex;
  gap: 28px;
  margin: 0 0 7px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.checkout-steps li {
  display: grid;
  grid-template-columns: 26px auto;
  align-items: center;
  gap: 8px;
  color: #88938d;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}
.checkout-steps li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid #cfd8d2;
  border-radius: 50%;
  background: #fff;
}
.checkout-steps li.done,
.checkout-steps li.active {
  color: var(--green);
}
.checkout-steps li.done::before {
  content: "✓";
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.checkout-steps li.active::before {
  border: 2px solid var(--green);
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 28px;
  align-items: start;
}
.checkout-panel,
.order-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(5, 35, 20, 0.07);
}
.checkout-panel {
  padding: 38px;
}
.order-panel {
  position: sticky;
  top: 24px;
  padding: 30px;
}
.checkout-section-head {
  display: flex;
  gap: 15px;
  align-items: start;
  margin-bottom: 24px;
}
.checkout-section-head > span {
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: #eaf5ed;
  color: var(--green);
  font: 800 0.76rem Montserrat;
}
.checkout-section-head h2,
.order-panel h2 {
  margin: 0;
  font: 800 1.38rem/1.2 Montserrat;
}
.checkout-section-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}
.checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.checkout-fields .field-full {
  grid-column: 1 / -1;
}
.checkout-fields label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.8rem;
  font-weight: 800;
}
.checkout-fields label small {
  color: var(--muted);
  font-weight: 500;
}
.checkout-fields input,
.checkout-fields textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #dfe7e1;
  border-radius: 12px;
  background: #fbfdfb;
  outline: none;
  resize: vertical;
}
.checkout-fields input:focus,
.checkout-fields textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(11, 107, 58, 0.1);
}
.payment-method-title {
  margin-top: 38px;
}
.checkout-payment-methods {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  border: 0;
}
.checkout-payment-methods > label {
  display: grid;
  grid-template-columns: 62px 1fr 22px;
  align-items: center;
  gap: 15px;
  min-height: 78px;
  padding: 13px 16px;
  border: 1px solid #dfe7e1;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.2s;
}
.checkout-payment-methods > label:has(input:checked) {
  border-color: var(--green);
  background: #f7fbf8;
  box-shadow: 0 0 0 3px rgba(11, 107, 58, 0.08);
}
.checkout-payment-methods input {
  position: absolute;
  opacity: 0;
}
.provider-mark {
  display: grid;
  width: 62px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font: 800 0.76rem Montserrat;
}
.paypal-mark {
  background: #0877bd;
  color: #fff;
}
.stripe-mark {
  background: #635bff;
  color: #fff;
}
.checkout-payment-methods label > span:nth-of-type(2) {
  display: grid;
}
.checkout-payment-methods small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}
.radio-check {
  width: 20px;
  height: 20px;
  border: 2px solid #bcc8c0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff;
}
input:checked ~ .radio-check {
  border-color: var(--green);
  background: var(--green);
}
.checkout-error {
  margin: 18px 0 0;
  padding: 13px 15px;
  border-radius: 12px;
  background: #fff0ef;
  color: #8e2d26;
  font-size: 0.84rem;
  font-weight: 700;
}
.checkout-submit {
  width: 100%;
  margin-top: 22px;
  padding: 16px 24px;
}
.checkout-submit span {
  margin-left: auto;
}
.checkout-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}
.checkout-legal {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}
.order-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 15px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.order-panel-head .eyebrow {
  margin-bottom: 6px;
}
.order-panel-head a {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}
.checkout-order-items {
  display: grid;
  gap: 18px;
  padding: 24px 0;
}
.checkout-order-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 13px;
}
.checkout-order-image {
  position: relative;
}
.checkout-order-image img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}
.checkout-order-image span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}
.checkout-order-item > div:nth-child(2) {
  display: grid;
}
.checkout-order-item small {
  color: var(--muted);
}
.checkout-order-item > strong {
  font-size: 0.86rem;
}
.checkout-totals {
  display: grid;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.84rem;
}
.checkout-grand-total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.checkout-grand-total span {
  font-weight: 800;
}
.checkout-grand-total strong {
  font: 900 1.4rem Montserrat;
}
.checkout-assurance {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-top: 24px;
  padding: 15px;
  border-radius: 14px;
  background: #eef6f0;
}
.checkout-assurance > span {
  display: grid;
  flex: 0 0 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.74rem;
}
.checkout-assurance p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}
.checkout-assurance strong {
  color: var(--ink);
}
.checkout-empty {
  padding: 34px 4px 8px;
  text-align: center;
}
.checkout-empty p {
  color: var(--muted);
}
.checkout-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.8rem;
}
.checkout-footer .container {
  display: flex;
  justify-content: space-between;
}
.checkout-footer a {
  color: var(--green);
  font-weight: 800;
}
.confirmation-page {
  min-height: 100vh;
  padding: 36px 20px;
  background:
    radial-gradient(circle at 50% 0, rgba(183, 228, 59, 0.22), transparent 34rem),
    var(--ink);
}
.confirmation-shell {
  width: min(100%, 690px);
  margin: auto;
}
.confirmation-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #fff;
  font: 800 0.9rem Montserrat;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.confirmation-brand img {
  width: 54px;
  height: 54px;
}
.confirmation-card {
  padding: 50px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  text-align: center;
}
.confirmation-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 10px #e8f4eb;
  color: #fff;
  font: 900 2rem Montserrat;
}
.confirmation-card h1 {
  margin: 13px 0 12px;
  font: 900 clamp(2rem, 6vw, 3.2rem)/1 Montserrat;
  letter-spacing: -0.04em;
}
.confirmation-card > p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--muted);
}
.confirmation-details {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr;
  margin: 32px 0 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.confirmation-details > div {
  display: grid;
  gap: 3px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
}
.confirmation-details > div:last-child {
  border-right: 0;
}
.confirmation-details span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.confirmation-details strong {
  overflow-wrap: anywhere;
  font-size: 0.88rem;
}
.confirmation-next {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 14px;
  background: #f1f6f2;
  text-align: left;
}
.confirmation-next span {
  display: grid;
  flex: 0 0 23px;
  height: 23px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-family: Georgia, serif;
  font-weight: 800;
}
.confirmation-next p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.confirmation-card > .button {
  min-width: 210px;
}
.confirmation-help {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .order-panel {
    position: static;
    order: -1;
  }
}

@media (max-width: 700px) {
  .checkout-header {
    height: 76px;
  }
  .checkout-header .header-logo {
    width: 58px;
    height: 58px;
  }
  .secure-checkout-label {
    display: none;
  }
  .checkout-main {
    padding: 38px 0 68px;
  }
  .checkout-intro {
    display: block;
  }
  .checkout-steps {
    gap: 14px;
    margin-top: 26px;
  }
  .checkout-steps li {
    grid-template-columns: 24px auto;
    gap: 6px;
    font-size: 0.64rem;
  }
  .checkout-steps li::before {
    width: 24px;
    height: 24px;
  }
  .checkout-panel,
  .order-panel {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .checkout-fields {
    grid-template-columns: 1fr;
  }
  .checkout-fields .field-full {
    grid-column: auto;
  }
  .checkout-payment-methods > label {
    grid-template-columns: 54px 1fr 20px;
    gap: 11px;
    padding: 12px;
  }
  .provider-mark {
    width: 54px;
  }
  .confirmation-card {
    padding: 40px 22px 32px;
  }
  .confirmation-details {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .confirmation-details > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .confirmation-details > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .header {
    width: 100%;
    max-width: 100vw;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100dvh - 78px);
    overflow-y: auto;
    overflow-x: hidden;
  }
}

/* Navigazione estesa */
@media (min-width: 901px) {
  .menu ul {
    gap: 1px;
  }
  .menu a {
    padding: 12px 8px;
    font-size: 0.78rem;
  }
  .menu a::after {
    left: 8px;
    right: 8px;
  }
}

/* Modulistica */
.page-hero-documents {
  background:
    linear-gradient(rgba(3, 18, 10, 0.78), rgba(3, 18, 10, 0.78)),
    url("contatti.webp") center 42% / cover;
}
.documents-intro,
.teams-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 42px;
  margin-bottom: 42px;
}
.documents-intro h2,
.teams-intro h2 {
  margin: 10px 0 0;
  font: 800 clamp(2.3rem, 5vw, 4rem) / 1 Montserrat;
  letter-spacing: -0.045em;
}
.documents-intro > p,
.teams-intro > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}
.documents-download-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #e8f4ec;
  color: var(--ink);
  font-size: 0.88rem;
}
.documents-note-label {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 7px;
  background: #fff;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.document-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(5, 35, 20, 0.07);
}
.document-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  background: var(--green);
  color: #fff;
  font: 800 0.8rem Montserrat;
}
.document-status {
  align-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f4ec;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.document-card h2 {
  margin: 14px 0 10px;
  font: 800 1.6rem/1.12 Montserrat;
}
.document-card > p {
  margin: 0 0 23px;
  color: var(--muted);
}
.document-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.77rem;
}
.document-meta strong {
  color: var(--ink);
}
.document-action {
  width: 100%;
  margin-top: 4px;
  min-height: 48px;
}
.document-action-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.document-action:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.document-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
  padding: 36px;
  border-radius: 26px;
  background: var(--green);
  color: #fff;
}
.document-help .eyebrow {
  color: var(--lime);
}
.document-help h2 {
  margin: 8px 0;
  font: 800 2rem/1.05 Montserrat;
}
.document-help p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* Calendario */
.page-hero-calendar {
  background:
    linear-gradient(rgba(3, 18, 10, 0.78), rgba(3, 18, 10, 0.78)),
    url("prima-categoria.webp") center 44% / cover;
}
.calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}
.calendar-main,
.calendar-info-card,
.calendar-notice {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}
.calendar-main {
  padding: 36px;
  box-shadow: 0 18px 48px rgba(5, 35, 20, 0.07);
}
.calendar-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.calendar-heading h2 {
  margin: 8px 0 0;
  font: 800 clamp(2rem, 4vw, 3rem) / 1 Montserrat;
}
.calendar-season {
  padding: 9px 13px;
  border-radius: 999px;
  background: #eaf5ed;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
}
.calendar-empty-state {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  padding: 44px 0;
}
.calendar-date-placeholder {
  display: grid;
  height: 120px;
  place-items: center;
  align-content: center;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
}
.calendar-date-placeholder span {
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.calendar-date-placeholder strong {
  font: 900 2rem Montserrat;
}
.calendar-update-label {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.calendar-empty-state h3 {
  margin: 7px 0 8px;
  font: 800 1.55rem/1.15 Montserrat;
}
.calendar-empty-state p {
  margin: 0;
  color: var(--muted);
}
.calendar-categories {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.calendar-categories > span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}
.calendar-categories > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.calendar-categories > div span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #eef5f0;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}
.calendar-aside {
  display: grid;
  gap: 18px;
}
.calendar-info-card {
  padding: 30px;
  background: var(--green);
  color: #fff;
}
.calendar-info-card .eyebrow {
  color: var(--lime);
}
.calendar-info-card h2 {
  margin: 10px 0;
  font: 800 2rem/1.05 Montserrat;
}
.calendar-info-card p {
  color: rgba(255, 255, 255, 0.72);
}
.calendar-info-card .button {
  margin-top: 9px;
  background: #fff;
  color: var(--ink);
}
.calendar-notice {
  padding: 24px;
}
.calendar-notice strong {
  font-family: Montserrat;
}
.calendar-notice p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Squadre e categorie */
.page-hero-teams {
  background:
    linear-gradient(rgba(3, 18, 10, 0.7), rgba(3, 18, 10, 0.82)),
    url("giovani-real-villa.webp") center 42% / cover;
}
.teams-list {
  display: grid;
  gap: 34px;
}
.team-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(5, 35, 20, 0.07);
}
.team-row:nth-child(even) .team-image {
  order: 2;
}
.team-image {
  position: relative;
  min-height: 470px;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-image > span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(7, 19, 13, 0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.team-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}
.team-copy h2 {
  margin: 10px 0 15px;
  font: 800 clamp(2.2rem, 4vw, 3.5rem) / 0.98 Montserrat;
  letter-spacing: -0.045em;
}
.team-copy > p {
  margin: 0;
  color: var(--muted);
}
.team-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 27px 0;
}
.team-facts > div {
  display: grid;
  padding: 13px;
  border-radius: 13px;
  background: #eef5f0;
}
.team-facts span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.team-facts strong {
  margin-top: 3px;
  font-size: 0.76rem;
}
.team-copy .button {
  align-self: start;
}

/* Percorsi Shop */
.shop-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 72px;
}
.shop-path {
  display: grid;
  grid-template-columns: 50px 1fr 34px;
  align-items: center;
  gap: 17px;
  min-height: 154px;
  padding: 25px;
  border-radius: 24px;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.shop-path:hover {
  transform: translateY(-5px);
}
.shop-path-new {
  background: var(--green);
}
.shop-path-existing {
  background: var(--ink);
}
.shop-path-number {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  font: 800 0.8rem Montserrat;
}
.shop-path > span:nth-child(2) {
  display: grid;
}
.shop-path small {
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.shop-path strong {
  margin: 3px 0;
  font: 800 1.55rem Montserrat;
}
.shop-path em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-style: normal;
}
.shop-path-arrow {
  font-size: 1.6rem;
  text-align: right;
}
.shop-channel {
  scroll-margin-top: 110px;
}
.shop-channel-existing {
  margin-top: 96px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .documents-intro,
  .teams-intro,
  .document-help {
    align-items: start;
  }
  .calendar-layout,
  .team-row {
    grid-template-columns: 1fr;
  }
  .team-row:nth-child(even) .team-image {
    order: 0;
  }
  .team-image {
    min-height: 420px;
  }
}

@media (max-width: 650px) {
  .documents-intro,
  .teams-intro,
  .document-help,
  .calendar-heading {
    display: block;
  }
  .documents-intro > p,
  .teams-intro > p {
    margin-top: 18px;
  }
  .documents-grid,
  .shop-paths {
    grid-template-columns: 1fr;
  }
  .document-card,
  .calendar-main,
  .calendar-info-card,
  .team-copy {
    padding: 26px 22px;
  }
  .document-help .button {
    margin-top: 22px;
  }
  .calendar-season {
    display: inline-flex;
    margin-top: 16px;
  }
  .calendar-empty-state {
    grid-template-columns: 1fr;
  }
  .calendar-date-placeholder {
    width: 120px;
  }
  .team-image {
    min-height: 310px;
  }
  .team-facts {
    grid-template-columns: 1fr;
  }
  .shop-paths {
    margin-bottom: 58px;
  }
  .shop-path {
    grid-template-columns: 44px 1fr 24px;
    padding: 22px 18px;
  }
  .shop-path-number {
    width: 44px;
    height: 44px;
  }
  .shop-channel-existing {
    margin-top: 72px;
    padding-top: 62px;
  }
}
