/* ═══════════════════════════════════════════════════════════════════════════
   CSS Custom Properties — sourced from Figma variables
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  /* Colors */
  --color-blue-dark:   #111d2f;
  --color-blue-medium: #192a44;
  --color-cream:       #faf9f6;
  --color-gold:        #e3b069;
  --color-gold-light:  #efd3ac;
  --color-white-muted: rgba(255,255,255,0.3);

  /* Typography — display uses Gravesend Sans; fallback to Barlow Condensed */
  --font-display: 'Gravesend Sans', 'Barlow Condensed', 'Oswald', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Type scale */
  --text-h1:   clamp(2.25rem, 4.2vw, 3.75rem);  /* 60px */
  --lh-h1:     1.1;
  --ls-h1:     0.05em;

  --text-footer-h: 1.375rem;  /* 22px */
  --lh-footer-h:   1.273;

  --text-body:     1rem;       /* 16px */
  --lh-body:       1.375;

  --text-small:    0.875rem;   /* 14px */
  --lh-small:      1.571;

  --text-caption:  0.75rem;    /* 12px */
  --ls-caption:    0.05em;

  --text-menu:     0.875rem;
  --ls-menu:       0.05em;

  /* Spacing */
  --space-section:  6.25rem;   /* 100px */
  --space-card:     2.5rem;    /* 40px */
  --space-inner:    3rem;
  --pad-x:          clamp(1.5rem, 8.89vw, 8rem);  /* ~128px at 1440 */
  --pad-x-narrow:   clamp(1.5rem, 3.61vw, 3.25rem); /* ~52px at 1440 */
  --card-radius:    2.5rem;
	--header-h:				6.125rem;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 300ms;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Reset & base
   ═══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
	background: linear-gradient(90deg, #010101 4.46%, #010102 6.43%, #0a101a 42.84%, #0f1929 75.32%, var(--color-blue-dark) 102.87%);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 300;
  overflow-x: hidden;
}

body#policy {
	background: white;
}

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

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

body:not(#policy) ul,
body:not(#policy) ol {
  list-style: none;
	padding-left: 0;
}

body#policy ul,
body#policy ol {
  padding-left: 60px;
}

address {
  font-style: normal;
}


/* ═══════════════════════════════════════════════════════════════════════════
   Shared utilities
   ═══════════════════════════════════════════════════════════════════════════ */
.divider-gold {
  width: 72px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.section-header--center {
  align-items: center;
  text-align: center;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 500;
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
  text-transform: uppercase;
  color: var(--color-cream);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0.625rem;
  padding: 0 1.5rem;
  height: 3.125rem;
  cursor: pointer;
  border: none;
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn--light {
  background: var(--color-cream);
  color: var(--color-blue-dark);
  height: 4.0625rem;
  width: 18.375rem;
}

.btn--outline {
  background: var(--color-blue-medium);
  color: var(--color-cream);
  border: 1px solid var(--color-cream);
  height: 3.125rem;
  width: 12.5rem;
}

.btn--outline-sm {
  background: var(--color-blue-medium);
  color: var(--color-cream);
  border: 1px solid var(--color-cream);
  height: 2.5rem;
  width: 10.5625rem;
  font-family: var(--font-display);
  font-size: var(--text-menu);
  font-weight: 500;
  letter-spacing: var(--ls-menu);
  text-transform: uppercase;
  border-radius: 0.625rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--duration) var(--ease);
}

.btn--outline-sm:hover { opacity: 0.8; }

/* ═══════════════════════════════════════════════════════════════════════════
   Card section wrapper (dark-blue rounded card)
   ═══════════════════════════════════════════════════════════════════════════ */
.card-section {
  background: var(--color-blue-medium);
  border-radius: var(--card-radius);
  overflow: clip;
  width: calc(100% - var(--pad-x) * 2);
  /* max-width: 83.5rem;    /* 1336px */
  margin-inline: auto;
}

.card-section--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-section);
  padding: var(--space-section) var(--pad-x);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Header
   ═══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, #111d2f 46.73%, rgba(17,29,47,0) 100%);
  transition: background var(--duration) var(--ease);
}

body#policy > .site-header {
	position: relative;
	background: #111d2f;
}

.site-header.scrolled {
  background: var(--color-blue-dark);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--pad-x);
}

.header__logo {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  width: 2.5rem;
  height: 3.125rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.header__menu {
	display: flex;
	align-items: center;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  font-family: var(--font-display);
  font-size: var(--text-menu);
  font-weight: 500;
  letter-spacing: var(--ls-menu);
  text-transform: uppercase;
  color: var(--color-cream);
  position: relative;
  padding-block: 0.5rem;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--duration) var(--ease);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.header__lang {
  font-family: var(--font-display);
  font-size: var(--text-caption);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-cream);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 2rem;
}

.lang--inactive { color: #999; }

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

/* Mobile nav */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  background: var(--color-blue-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration) var(--ease), padding var(--duration) var(--ease);
}

.mobile-nav[aria-hidden="false"] {
  max-height: 30rem;
  padding: 1.5rem var(--pad-x) 2rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--header-h) var(--pad-x) 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(85deg, rgb(2,2,2) 18.7%, rgba(17,29,46,0) 78.3%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 36.87rem;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 500;
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
  text-transform: uppercase;
  color: var(--color-cream);
}

.hero p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 300;
  color: var(--color-cream);
}

.hero strong {
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   The Story
   ═══════════════════════════════════════════════════════════════════════════ */
.story {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 50rem;
  position: relative;
}

.story__image {
  position: absolute;
  inset: 0;
  left: 0;
  width: 55%;
}

.story__image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--color-blue-medium));
  pointer-events: none;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.story__content {
  position: relative;
  z-index: 1;
  width: 50%;
  max-width: 37.75rem;
  padding: var(--space-section) 4rem var(--space-section) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  background: linear-gradient(-87deg, var(--color-blue-medium) 2%, rgba(25,42,68,0) 40%);
}

.story__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story__body p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 300;
}

.story__body strong { font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════════════
   The Philosophy
   ═══════════════════════════════════════════════════════════════════════════ */
.philosophy {
  position: relative;
  padding: var(--space-section) var(--pad-x);
  min-height: 50rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.philosophy__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  z-index: 0;
}

.philosophy__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
}

.philosophy__bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-blue-dark) 10%,
    transparent 50%
  );
}

.philosophy__content {
  position: relative;
  z-index: 1;
  max-width: 37.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.philosophy__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.philosophy__body p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 300;
}

.philosophy__body strong { font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════════════
   Decorative ornament (before Formats)
   ═══════════════════════════════════════════════════════════════════════════ */
.deco-ornament {
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-top: var(--space-section);
}

.deco-ornament img {
  width: 28.125rem;
  height: auto;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════════════════
   The Experience
   ═══════════════════════════════════════════════════════════════════════════ */
.experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-section);
  padding: var(--space-section) 0;
  overflow: hidden;
}

.experience .section-header {
  padding-inline: var(--pad-x);
  max-width: 80rem;
  width: 100%;
}

.experience .section-header p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 300;
  max-width: 46.875rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Slider
   ═══════════════════════════════════════════════════════════════════════════ */
.slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
	padding: 0 var(--pad-x);
}

.slider__track {
  width: 100%;
}

.slider__slide {
  width: 25rem;              /* 400px */
  height: 50rem;             /* 800px */
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  margin-right: 4.25rem;    /* 68px gap between experience slides */
}

/* Menu slider — wider cards with smaller gap */
.slider--menus .menu-card {
  margin-right: 3.125rem;   /* 50px gap between menu cards */
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 79.7%, rgba(17,29,47,0.8) 104%);
}

.slider__dots {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(217,217,217,0.7);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.slider__dot--active,
.slider__dot:hover {
  background: var(--color-gold);
  transform: scale(1.2);
}


/* ═══════════════════════════════════════════════════════════════════════════
   Formats
   ═══════════════════════════════════════════════════════════════════════════ */
.formats__grid {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
}

.format-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--color-blue-dark);
  border: 1px solid var(--color-white-muted);
  border-radius: 1.25rem;
  min-height: 17.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.125rem 1rem;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.format-card:hover {
  border-color: var(--color-gold-light);
  transform: translateY(-4px);
}

.format-card__icon {
  height: 7rem;
  width: 9.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.format-card__icon img,
.format-card__icon svg {
  max-width: 100%;
  max-height: 7rem;
  object-fit: contain;
}

.format-card__icon--fa i {
  font-size: 4rem;
  color: var(--color-cream);
  opacity: 0.9;
}

.format-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  max-width: 14.25rem;
}

.format-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-cream);
}

.format-card p {
  font-size: var(--text-small);
  font-weight: 300;
  line-height: 1.43;
  color: var(--color-cream);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Available In
   ═══════════════════════════════════════════════════════════════════════════ */
.available-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-section);
  padding: var(--space-section) var(--pad-x);
  text-align: center;
}

.available-in .section-header p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 300;
}

.available-in__map {
  position: relative;
  width: min(44.5rem, 90%);
  isolation: isolate;
}

.available-in__map::before {
  content: '';
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(120,170,220,0.30) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.available-in__map img,
.available-in__map svg {
  width: 100%;
  height: auto;
  display: block;
}

.available-in__label {
  position: absolute;
  top: 22%;
  left: 28%;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-cream);
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 0 3px 2px #030d1c;
  white-space: nowrap;
}

.available-in__pin {
  color: var(--color-gold);
  font-size: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Every Detail Matters
   ═══════════════════════════════════════════════════════════════════════════ */
.every-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: var(--space-section) var(--pad-x);
}

.every-detail .section-header {
  width: 100%;
}

.every-detail__layout {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  width: 100%;
}

.process-list {
	position: sticky;
	top: calc(var(--header-h) + 4rem);
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  flex: 1;
  padding-left: 1.25rem;
}

.process-list li {
  font-size: var(--text-small);
  font-weight: 300;
  line-height: var(--lh-small);
  color: var(--color-cream);
}

.process-list strong {
  font-weight: 700;
}

.every-detail__image {
  flex-shrink: 0;
  width: 20vw;
	padding-top: var(--space-section);
}

.every-detail__image img,
.every-detail__image video {
  width: 100%;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Selections
   ═══════════════════════════════════════════════════════════════════════════ */
.selections {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-section);
  padding: var(--space-section) 0;
}

.selections .section-header {
  padding-inline: var(--pad-x);
  width: 100%;
}

.selections .section-header p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 300;
}

/* Menu card */
.menu-card {
  flex-shrink: 0;
  width: 33.125rem;
	height: 100%;
  border-radius: 1.25rem;
  border: 2px solid var(--color-white-muted);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
  padding: 2.125rem;
}

.menu-card--gold {
  border-color: var(--color-gold-light);
}

.menu-card__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.menu-card__bg img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
	justify-content: space-between;
  align-items: center;
  gap: 1.5625rem;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}

.menu-card__content::-webkit-scrollbar { display: none; }

.menu-card__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5625rem;
  flex-shrink: 0;
	margin-bottom: 1.5625rem;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--color-cream);
  text-align: center;
  text-shadow: 0 2px 2px rgba(0,0,0,0.25);
	min-height: 50px;
}

.menu-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.menu-card li {
  font-size: var(--text-body);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--color-cream);
  text-shadow: 0 2px 2px rgba(0,0,0,0.25);
}

.menu-card em {
  font-style: italic;
  font-weight: 300;
}

.selections__disclaimer {
  font-size: var(--text-small);
  font-weight: 300;
  line-height: var(--lh-small);
  color: var(--color-cream);
  text-align: center;
  padding-inline: var(--pad-x);
  max-width: 80rem;
}

.selections__hat {
  display: none; /* spostato nella CTA banner */
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA Banner (pre-footer)
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: var(--space-section) var(--pad-x);
  text-align: center;
}
.cta-banner .btn {
  height: 4.0625rem;
  width: 18.375rem;
  font-size: 1.0625rem;
}
.cta-banner .cta-banner__hat {
	max-width: 350px;
	width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-blue-medium);
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  padding: 4rem var(--pad-x) 2rem;
  position: relative;
  overflow: hidden;
  /* ensure footer is visually distinct */
  box-shadow: 0 -4px 40px rgba(0,0,0,0.4);
}

.footer__deco {
  position: absolute;
  right: -5%;
	top: 0;
  width: 55%;
	height: 100%;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: luminosity;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: cover;
}

.footer__deco img { width: 100%; }

.footer__inner {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-footer-h);
  font-weight: 700;
  line-height: var(--lh-footer-h);
  text-transform: uppercase;
  color: var(--color-cream);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: var(--ls-menu);
  text-transform: uppercase;
  line-height: var(--lh-small);
  color: var(--color-cream);
}

.footer__col nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: var(--ls-menu);
  text-transform: uppercase;
  line-height: var(--lh-small);
  color: var(--color-cream);
  display: block;
  transition: color var(--duration) var(--ease);
}

.footer__link:hover { color: var(--color-gold); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.social-icon:hover {
  background: var(--color-gold);
  transform: scale(1.1);
}

.social-icon i {
  color: var(--color-gold);
  font-size: 1.1rem;
}

.social-icon:hover i {
  color: var(--color-blue-dark);
}

.footer__bottom {
  border-top: 1px solid var(--color-gold);
  padding-top: 2.0625rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer__bottom p {
  font-family: var(--font-display);
  font-size: var(--text-caption);
  font-weight: 300;
  letter-spacing: var(--ls-caption);
  color: #FAF7F2;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Floating actions
   ═══════════════════════════════════════════════════════════════════════════ */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

#scroll-top {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-cream);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
  text-decoration: none;
}

#scroll-top i {
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  flex-shrink: 0;
}

#scroll-top:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

#scroll-top {
  background: var(--color-blue-medium);
  color: var(--color-cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}

#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ----- floating actions - whatsapp contact ----- */
.include-wa-icon {
	--whatsapp-green: #26c13f;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99999;
}
.include-wa-icon a:before {
	content: '';
	position: absolute;
	top: -7.5px;
	left: -7.5px;
	display: block;
	width: 55px;
	height: 55px;
	z-index: -1;
	border-radius: 50%;
	background-color: var(--whatsapp-green);
	transform-origin: center;
	transform: scale(0);
	transition: transform 0.2s ease-in-out;
}
.include-wa-icon a:hover:before {
	transform: scale(1);
}
.include-wa-icon a > img {
	max-width: 40px;
	max-height: 40px;
	transform: scale(1);
	transition: transform 0.3s ease-in-out;
}
.include-wa-icon a:hover > img {
	transform: scale(0.8);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Section spacing (gap between page sections)
   ═══════════════════════════════════════════════════════════════════════════ */
main > * + * {
  margin-top: var(--space-section);
}

/* No margin between card-sections and adjacent elements */
main > .card-section + *,
main > * + .card-section {
  margin-top: var(--space-section);
}


/* ═══════════════════════════════════════════════════════════════════════════
   Policy
   ═══════════════════════════════════════════════════════════════════════════ */
.policy {
	min-height: calc(100vh - var(--header-h));
	padding: var(--space-section) var(--pad-x);
}
.policy .policy__content .policy__titolo {
	color: var(--color-blue-dark) !important;
}
.policy .policy__content .policy__testo {
	color: var(--color-blue-dark) !important;
}





/* ═══════════════════════════════════════════════════════════════════════════
   Responsive — tablet
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --text-h1: clamp(2rem, 5vw, 3rem);
    --pad-x: 2.5rem;
  }

  .header__nav { display: none; }
  body:not(#policy) .header__lang { display: none; }
  .header__hamburger { display: flex; }

  .story {
    flex-direction: column;
    justify-content: flex-start;
  }

  .story__image {
    position: relative;
    width: 100%;
    height: 22rem;
  }

  .story__content {
    width: 100%;
    max-width: none;
    background: none;
    padding: var(--space-card);
  }

  .philosophy__bg { width: 100%; opacity: 0.15; }

  .formats__grid {
    gap: 1.25rem;
  }

  .every-detail__layout {
    flex-direction: column;
  }

  .every-detail__image {
    width: 100%;
  }

  /* Tablet keeps image below; mobile overrides below */

  .footer__inner {
    gap: 2rem;
  }

  .available-in__label {
    font-size: 1.25rem;
    left: 25%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Responsive — mobile
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --pad-x: 1.25rem;
    --space-section: 4rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 6rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .slider__slide {
    width: 80vw;
    height: 65vw;
    margin-right: 1rem;
  }

  .formats__grid {
    flex-wrap: wrap;
  }

  .format-card {
    flex: 0 0 100%;
    min-height: auto;
    padding: 1.25rem 0.5rem;
  }

  .menu-card {
    width: 85vw;
    height: 32rem;
  }

  .card-section {
    width: 100%;
    border-radius: 1.5rem;
  }

  .available-in__label {
    font-size: 1rem;
    gap: 0.5rem;
    left: 22%;
    top: 22%;
  }

  .floating-actions {
    right: 1rem;
    bottom: 1rem;
  }

  /* Every Detail — mobile: lista a sinistra, immagine sticky a destra */
  .every-detail__layout {
    flex-direction: row;
    align-items: stretch;
    gap: 1.5rem;
  }

  .every-detail__image {
    width: 30%;
    flex-shrink: 0;
    align-self: flex-start;
    position: sticky;
    top: 7rem;
  }

  .every-detail__image img {
    width: 100%;
    height: auto;
  }

  .process-list {
    gap: 2.5rem;
  }
}
