@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-bg: #faf8f5;
  --color-bg-alt: #f3ede4;
  --color-bg-dark: #1e1a16;
  --color-surface: #ffffff;
  --color-border: #d4c9b8;
  --color-border-strong: #b8a898;
  --color-text: #2a231a;
  --color-text-muted: #6b5d4f;
  --color-text-light: #9c8c7c;
  --color-accent: #c8622a;
  --color-accent-hover: #a84e1e;
  --color-accent-light: rgba(200, 98, 42, 0.08);
  --color-accent-mid: rgba(200, 98, 42, 0.15);
  --shadow-xs: 0 1px 3px rgba(42, 35, 26, 0.06);
  --shadow-sm: 0 2px 8px rgba(42, 35, 26, 0.08), 0 1px 3px rgba(42, 35, 26, 0.05);
  --shadow-md: 0 4px 16px rgba(42, 35, 26, 0.10), 0 2px 6px rgba(42, 35, 26, 0.06);
  --shadow-lg: 0 8px 32px rgba(42, 35, 26, 0.12), 0 4px 12px rgba(42, 35, 26, 0.07), 0 1px 4px rgba(42, 35, 26, 0.04);
  --shadow-xl: 0 16px 48px rgba(42, 35, 26, 0.15), 0 6px 20px rgba(42, 35, 26, 0.08);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --max-width: 1200px;
  --nav-height: 72px;
  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 420ms ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Sora', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; color: var(--color-text); }

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

.global-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.global-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  white-space: nowrap;
  min-height: 44px;
}

.global-btn--outline {
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}

.global-btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.global-btn--filled {
  background: var(--color-accent);
  color: #fff;
  border: 1.5px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.global-btn--filled:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.global-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-fast);
}

.global-link-arrow:hover { border-bottom-color: var(--color-accent); gap: var(--space-3); }

.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
  transition: box-shadow var(--transition-base);
}

.global-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.global-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.global-header__logo img { height: 36px; width: auto; }

.global-header__nav { display: flex; align-items: center; gap: var(--space-1); }

.global-header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.global-header__nav-link:hover,
.global-header__nav-link.active {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.global-header__actions { display: flex; align-items: center; gap: var(--space-3); }

.global-header__search-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.global-header__search-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.global-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.global-header__hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.global-header__hamburger:hover { border-color: var(--color-accent); }
.global-header__hamburger:hover span { background: var(--color-accent); }

.global-header__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.global-header__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.global-header__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.global-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(30, 26, 22, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.global-search-overlay.is-open { opacity: 1; pointer-events: all; }

.global-search-overlay__inner {
  width: 100%;
  max-width: 640px;
  padding: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border-bottom: 1.5px solid rgba(255,255,255,0.2);
}

.global-search-overlay__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 300;
  color: #fff;
  caret-color: var(--color-accent);
}

.global-search-overlay__input::placeholder { color: rgba(255,255,255,0.35); }

.global-search-overlay__close {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}

.global-search-overlay__close:hover { color: #fff; }

.global-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}

.global-mobile-menu.is-open { transform: translateX(0); }

.global-mobile-menu__left {
  width: 55%;
  background: var(--color-bg-dark);
  padding: var(--space-7) var(--space-7) var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  overflow-y: auto;
}

.global-mobile-menu__close {
  align-self: flex-start;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.global-mobile-menu__close:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

.global-mobile-menu__nav { display: flex; flex-direction: column; gap: var(--space-2); margin-top: auto; }

.global-mobile-menu__link {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition-fast);
  display: block;
}

.global-mobile-menu__link:hover { color: #fff; padding-left: var(--space-3); }

.global-mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
}

.global-mobile-menu__contact a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

.global-mobile-menu__contact a:hover { color: rgba(255,255,255,0.8); }

.global-mobile-menu__right {
  width: 45%;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.global-mobile-menu__img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.global-mobile-menu__brand {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-5);
  display: flex;
  flex-direction: column;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  mix-blend-mode: multiply;
}

.global-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}

.global-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-10) var(--space-6) var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-9);
}

.global-footer__logo { filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: var(--space-5); }

.global-footer__story {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-6);
  max-width: 360px;
}

.global-footer__cta { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.global-footer__cta:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); }

.global-footer__right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.global-footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-4);
}

.global-footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.global-footer__link:hover { color: rgba(255,255,255,0.9); }

.global-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.global-footer__bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.global-footer__legal-info, .global-footer__copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--color-bg);
  overflow: hidden;
}

.home-hero > * {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-9) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  width: 100%;
}

.home-hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

.home-hero__heading {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.home-hero__heading em {
  font-style: normal;
  color: var(--color-accent);
  position: relative;
}

.home-hero__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-7);
  max-width: 480px;
}

.home-hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.home-hero__images {
  position: relative;
  height: 500px;
}

.home-hero__img-wrap {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.home-hero__img-wrap--back {
  width: 72%;
  height: 78%;
  top: 0;
  right: 0;
  transform: rotate(2.5deg);
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--color-surface);
}

.home-hero__img-wrap--front {
  width: 55%;
  height: 56%;
  bottom: 0;
  left: 0;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--color-surface);
  z-index: 2;
}

.home-hero__img { width: 100%; height: 100%; object-fit: cover; }

.home-intro {
  padding: var(--space-10) 0;
  background: var(--color-surface);
}

.home-intro__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.home-intro__label-row { margin-bottom: var(--space-6); }

.home-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.home-intro__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.home-intro__body-col p {
  margin-bottom: var(--space-4);
  font-size: 1rem;
  line-height: 1.75;
}

.home-intro__body-col p:last-of-type { margin-bottom: var(--space-6); }

.home-services {
  padding: var(--space-10) 0;
  background: var(--color-bg);
}

.home-services__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.home-services__header {
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-services__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 540px;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.home-services__card {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  background: transparent;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.home-services__card:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.home-services__card-icon {
  width: 48px; height: 48px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--color-accent);
  transition: all var(--transition-base);
}

.home-services__card:hover .home-services__card-icon {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.home-services__card-title { font-size: 1.1rem; font-weight: 700; }

.home-services__card-text { font-size: 0.9rem; line-height: 1.7; flex: 1; }

.home-services__card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  width: fit-content;
  transition: all var(--transition-fast);
}

.home-services__card-link:hover { background: var(--color-accent); color: #fff; }

.home-visual {
  padding: var(--space-10) 0;
  background: var(--color-bg-alt);
}

.home-visual__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-9);
  align-items: center;
}

.home-visual__left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-4);
  height: 520px;
}

.home-visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
}

.home-visual__img--top { transform: rotate(-1.5deg); box-shadow: var(--shadow-lg); }
.home-visual__img--bottom { transform: rotate(1deg); box-shadow: var(--shadow-lg); }

.home-visual__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.home-visual__right p { font-size: 0.95rem; line-height: 1.75; margin-bottom: var(--space-4); }
.home-visual__right p:last-of-type { margin-bottom: var(--space-6); }

.home-visual__steps { display: flex; flex-direction: column; gap: var(--space-5); }

.home-visual__step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-4) var(--space-5);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: all var(--transition-base);
}

.home-visual__step:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.home-visual__step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.home-visual__step strong { display: block; font-weight: 700; margin-bottom: 4px; color: var(--color-text); }
.home-visual__step p { font-size: 0.875rem; margin: 0; }

.home-gallery {
  padding: var(--space-10) 0;
  background: var(--color-bg-dark);
}

.home-gallery__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.home-gallery__header {
  margin-bottom: var(--space-8);
}

.home-gallery__header .global-section-label {
  border-color: rgba(200, 98, 42, 0.5);
  color: var(--color-accent);
}

.home-gallery__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: var(--space-3);
}

.home-gallery__subtext { color: rgba(255,255,255,0.45); font-size: 0.95rem; }

.home-gallery__swiper { padding-bottom: var(--space-8) !important; }

.home-gallery__slide {
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  transition: all var(--transition-base);
}

.home-gallery__slide:hover { border-color: var(--color-accent); }

.home-gallery__slide-img-wrap { height: 280px; overflow: hidden; }

.home-gallery__slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.home-gallery__slide:hover .home-gallery__slide-img { transform: scale(1.04); }

.home-gallery__slide-info { padding: var(--space-5); }

.home-gallery__slide-type {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.home-gallery__slide-info h3 { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.85); }

.home-gallery__pagination { bottom: 0 !important; }
.home-gallery__pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.3); }
.home-gallery__pagination .swiper-pagination-bullet-active { background: var(--color-accent); }

.home-gallery__prev, .home-gallery__next {
  color: rgba(255,255,255,0.6) !important;
  border: 1.5px solid rgba(255,255,255,0.15) !important;
  border-radius: var(--radius-full) !important;
  width: 44px !important; height: 44px !important;
  transition: all var(--transition-fast) !important;
}

.home-gallery__prev:hover, .home-gallery__next:hover {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
}

.home-gallery__prev::after, .home-gallery__next::after { font-size: 0.875rem !important; }

.home-packages {
  padding: var(--space-10) 0;
  background: var(--color-surface);
}

.home-packages__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.home-packages__header { margin-bottom: var(--space-8); }

.home-packages__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.home-packages__subtext { font-size: 0.95rem; max-width: 560px; line-height: 1.7; }

.home-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.home-packages__card {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: all var(--transition-base);
}

.home-packages__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.home-packages__card--featured {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  box-shadow: var(--shadow-md);
  position: relative;
}

.home-packages__card--featured::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.home-packages__card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.home-packages__card-name { font-size: 1.5rem; font-weight: 800; }

.home-packages__card-list { display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }

.home-packages__card-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.home-packages__card-list li i { color: var(--color-accent); margin-top: 2px; flex-shrink: 0; }

.home-packages__card-cta { width: 100%; justify-content: center; }

.home-packages__note {
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-align: center;
}

.home-packages__note a { color: var(--color-accent); border-bottom: 1px solid transparent; }
.home-packages__note a:hover { border-bottom-color: var(--color-accent); }

.home-contact-preview {
  padding: var(--space-10) 0;
  background: var(--color-bg);
}

.home-contact-preview__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.home-contact-preview__header { margin-bottom: var(--space-8); }

.home-contact-preview__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

.home-contact-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.home-contact-preview__card {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: all var(--transition-base);
}

.home-contact-preview__card:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  box-shadow: var(--shadow-sm);
}

.home-contact-preview__card-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--color-accent);
  transition: all var(--transition-base);
}

.home-contact-preview__card:hover .home-contact-preview__card-icon {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.home-contact-preview__card h3 { font-size: 0.9rem; font-weight: 700; }

.home-contact-preview__card p { font-size: 0.875rem; line-height: 1.6; }

.home-contact-preview__card a { color: var(--color-accent); }
.home-contact-preview__card a:hover { text-decoration: underline; }

.perche-hero {
  padding-top: calc(var(--nav-height) + var(--space-9));
  padding-bottom: var(--space-9);
  background: var(--color-bg-alt);
}

.perche-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.perche-hero__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  max-width: 700px;
}

.perche-hero__text {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}

.perche-reasons {
  padding: var(--space-10) 0;
  background: var(--color-surface);
}

.perche-reasons__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.perche-reasons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.perche-reasons__item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  display: flex;
  gap: var(--space-6);
  transition: all var(--transition-base);
}

.perche-reasons__item:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  box-shadow: var(--shadow-md);
}

.perche-reasons__item-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}

.perche-reasons__item-content h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: var(--space-4); }

.perche-reasons__item-content p { font-size: 0.9rem; line-height: 1.75; margin-bottom: var(--space-3); }

.perche-approach {
  padding: var(--space-10) 0;
  background: var(--color-bg);
}

.perche-approach__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}

.perche-approach__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.perche-approach__left p { font-size: 0.95rem; line-height: 1.75; margin-bottom: var(--space-4); }
.perche-approach__left p:last-of-type { margin-bottom: var(--space-6); }

.perche-approach__feature-list { display: flex; flex-direction: column; gap: var(--space-4); }

.perche-approach__feature {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-5);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.perche-approach__feature:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.perche-approach__feature > i {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.perche-approach__feature strong { display: block; font-weight: 700; margin-bottom: 4px; color: var(--color-text); }
.perche-approach__feature p { font-size: 0.875rem; margin: 0; }

.perche-cta {
  padding: var(--space-10) 0;
  background: var(--color-bg-dark);
}

.perche-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  text-align: center;
}

.perche-cta__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: var(--space-4);
}

.perche-cta__inner p { color: rgba(255,255,255,0.55); margin-bottom: var(--space-7); }

.perche-cta__actions { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }

.perche-cta__actions .global-btn--outline {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

.perche-cta__actions .global-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.services-hero {
  padding-top: calc(var(--nav-height) + var(--space-9));
  padding-bottom: var(--space-9);
  background: var(--color-bg-alt);
  text-align: center;
}

.services-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.services-hero__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

.services-hero__text { font-size: 1.05rem; line-height: 1.7; }

.services-grid-section {
  padding: var(--space-10) 0;
  background: var(--color-surface);
}

.services-grid-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.services-grid__item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.services-grid__item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.services-grid__item--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

.services-grid__item--dark {
  background: var(--color-bg-dark);
  border-color: rgba(255,255,255,0.08);
  grid-column: span 2;
}

.services-grid__item--dark:hover { border-color: var(--color-accent); }

.services-grid__item--dark .services-grid__item-tag { color: var(--color-accent); }

.services-grid__item--dark .services-grid__item-title { color: #fff; }

.services-grid__item--dark p { color: rgba(255,255,255,0.55); }

.services-grid__item-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

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

.services-grid__item-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.services-grid__item-title { font-size: 1.25rem; font-weight: 700; }

.services-grid__item p { font-size: 0.9rem; line-height: 1.75; }

.services-grid__item-list { display: flex; flex-direction: column; gap: var(--space-2); }

.services-grid__item-list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-left: var(--space-4);
  position: relative;
}

.services-grid__item-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-accent);
}

.services-process {
  padding: var(--space-10) 0;
  background: var(--color-bg);
}

.services-process__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.services-process__header { margin-bottom: var(--space-8); }

.services-process__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

.services-process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.services-process__step {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  transition: all var(--transition-base);
}

.services-process__step:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.services-process__step-icon {
  width: 52px; height: 52px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--color-accent);
  transition: all var(--transition-base);
}

.services-process__step:hover .services-process__step-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.services-process__step h3 { font-size: 0.9rem; font-weight: 700; }

.services-process__step p { font-size: 0.8rem; line-height: 1.6; }

.services-cta {
  padding: var(--space-10) 0;
  background: var(--color-bg-alt);
}

.services-cta__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  text-align: center;
}

.services-cta__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.services-cta__inner p { margin-bottom: var(--space-7); }

.eventi-hero {
  padding-top: calc(var(--nav-height) + var(--space-9));
  padding-bottom: var(--space-9);
  background: var(--color-bg-alt);
}

.eventi-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.eventi-hero__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  max-width: 700px;
}

.eventi-hero__text { font-size: 1.05rem; line-height: 1.7; max-width: 600px; }

.eventi-workshops {
  padding: var(--space-10) 0;
  background: var(--color-surface);
}

.eventi-workshops__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.eventi-workshops__header { margin-bottom: var(--space-8); }

.eventi-workshops__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.eventi-workshops__subtext { font-size: 0.95rem; max-width: 600px; line-height: 1.7; }

.eventi-workshops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.eventi-workshops__card {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: all var(--transition-base);
}

.eventi-workshops__card:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.eventi-workshops__card-icon {
  width: 52px; height: 52px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: all var(--transition-base);
}

.eventi-workshops__card:hover .eventi-workshops__card-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.eventi-workshops__card-level {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eventi-workshops__card-title { font-size: 1.1rem; font-weight: 700; }

.eventi-workshops__card-content { display: flex; flex-direction: column; gap: var(--space-4); flex: 1; }

.eventi-workshops__card-content p { font-size: 0.875rem; line-height: 1.7; flex: 1; }

.eventi-workshops__card-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.eventi-workshops__card-details span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.eventi-workshops__card-details i { color: var(--color-accent); }

.eventi-workshops__card-cta { width: 100%; justify-content: center; }

.eventi-events {
  padding: var(--space-10) 0;
  background: var(--color-bg);
}

.eventi-events__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}

.eventi-events__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.eventi-events__left p { font-size: 0.95rem; line-height: 1.75; margin-bottom: var(--space-4); }
.eventi-events__left p:last-of-type { margin-bottom: var(--space-6); }

.eventi-events__list { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }

.eventi-events__list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.eventi-events__list i { color: var(--color-accent); }

.eventi-events__img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform var(--transition-slow);
}

.eventi-events__img:hover { transform: rotate(0deg); }

.eventi-custom {
  padding: var(--space-10) 0;
  background: var(--color-bg-dark);
}

.eventi-custom__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  text-align: center;
}

.eventi-custom__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: var(--space-5);
}

.eventi-custom__content .global-section-label { border-color: rgba(200,98,42,0.5); }

.eventi-custom__content p { color: rgba(255,255,255,0.55); margin-bottom: var(--space-4); font-size: 0.95rem; line-height: 1.75; }

.eventi-custom__content p:last-of-type { margin-bottom: var(--space-7); }

.contact-hero {
  padding-top: calc(var(--nav-height) + var(--space-9));
  padding-bottom: var(--space-9);
  background: var(--color-bg-alt);
}

.contact-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.contact-hero__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  max-width: 600px;
}

.contact-hero__text { font-size: 1.05rem; line-height: 1.7; max-width: 500px; }

.contact-form-section {
  padding: var(--space-10) 0;
  background: var(--color-surface);
}

.contact-form-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-9);
  align-items: start;
}

.contact-form-section__heading { font-size: 1.75rem; font-weight: 700; margin-bottom: var(--space-3); }

.contact-form-section__subtext { font-size: 0.9rem; line-height: 1.7; margin-bottom: var(--space-6); }

.contact-form-section__form { display: flex; flex-direction: column; gap: var(--space-4); }

.contact-form-section__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.contact-form-section__field { display: flex; flex-direction: column; gap: var(--space-2); }

.contact-form-section__label { font-size: 0.8rem; font-weight: 600; color: var(--color-text); }

.contact-form-section__input,
.contact-form-section__textarea {
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  outline: none;
  transition: all var(--transition-fast);
  width: 100%;
  resize: vertical;
}

.contact-form-section__input::placeholder,
.contact-form-section__textarea::placeholder { color: var(--color-text-light); }

.contact-form-section__input:focus,
.contact-form-section__textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px var(--color-accent-mid);
}

.contact-form-section__form:has(:focus) { }

.contact-form-section__privacy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.contact-form-section__privacy-label {
  display: flex;
align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.contact-form-section__privacy-check {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px; height: 16px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.contact-form-section__privacy-label a { color: var(--color-accent); text-decoration: underline; }

.contact-form-section__info-cards { display: flex; flex-direction: column; gap: var(--space-4); }

.contact-form-section__info-card {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: all var(--transition-base);
}

.contact-form-section__info-card:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.contact-form-section__info-card > i {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-form-section__info-card strong { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 2px; }

.contact-form-section__info-card p { font-size: 0.875rem; line-height: 1.6; margin: 0; }

.contact-form-section__info-card a { color: var(--color-accent); }
.contact-form-section__info-card a:hover { text-decoration: underline; }

.contact-map-section {
  padding: var(--space-10) 0;
  background: var(--color-bg);
}

.contact-map-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.contact-map-section__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--space-6);
}

.contact-map-section__map {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map-section__map iframe { display: block; }

.thanks-main {
  min-height: calc(100vh - var(--nav-height) - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--space-6);
}

.thanks-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.thanks-dot {
  width: 24px; height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  animation: thanksDotExpand 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform: scale(0);
}

@keyframes thanksDotExpand {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  opacity: 0;
  animation: thanksFadeIn 0.7s ease 0.6s forwards;
}

@keyframes thanksFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.thanks-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  opacity: 0;
  animation: thanksFadeIn 0.6s ease 1.1s forwards;
  transition: all var(--transition-base);
}

.thanks-link:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.legal-main {
  padding-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height));
}

.legal-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-9) var(--space-6);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-8);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
}

.legal-sidebar__mobile-toggle { display: none; }

.legal-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  background: var(--color-surface);
}

.legal-sidebar__link {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 7px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  line-height: 1.4;
}

.legal-sidebar__link:hover,
.legal-sidebar__link.is-active {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.legal-content__header { margin-bottom: var(--space-8); padding-bottom: var(--space-7); border-bottom: 1.5px solid var(--color-border); }

.legal-content__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: var(--space-3);
}

.legal-content__meta {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-5);
}

.legal-content__intro { font-size: 0.95rem; line-height: 1.75; }

.legal-content__section {
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--color-border);
}

.legal-content__section:last-child { border-bottom: none; }

.legal-content__section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.legal-content__section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.legal-content__section p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

.legal-content__section p:last-child { margin-bottom: 0; }

.legal-content__section a { color: var(--color-accent); text-decoration: underline; }

.legal-content__box {
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-4) 0;
}

.legal-content__box p { margin: 0; font-size: 0.875rem; line-height: 1.7; }

.legal-content__table-wrap { overflow-x: auto; margin: var(--space-4) 0; }

.legal-content__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.legal-content__table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  color: var(--color-text);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
}

.legal-content__table td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  vertical-align: top;
}

.legal-content__table tr:nth-child(even) td { background: var(--color-bg); }

.cookie-bell-icon {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 800;
  width: 52px; height: 52px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.cookie-bell-icon:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.cookie-bell-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-surface);
  display: none;
}

.cookie-bell-badge.is-visible { display: block; }

.cookie-panel {
  position: fixed;
  bottom: 0;
  right: var(--space-6);
  width: 380px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-xl);
  z-index: 850;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-panel.is-open { transform: translateY(0); }

.cookie-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-panel__title { font-size: 1rem; font-weight: 700; }

.cookie-panel__close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.cookie-panel__close:hover { border-color: var(--color-accent); color: var(--color-accent); }

.cookie-panel__text { font-size: 0.8rem; line-height: 1.6; }

.cookie-panel__options { display: flex; flex-direction: column; gap: var(--space-3); }

.cookie-panel__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}

.cookie-panel__option:has(input:checked) { border-color: var(--color-accent); background: var(--color-accent-light); }

.cookie-panel__option-info { display: flex; flex-direction: column; gap: 2px; }

.cookie-panel__option-info strong { font-size: 0.8rem; font-weight: 600; }

.cookie-panel__option-info span { font-size: 0.72rem; color: var(--color-text-light); }

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 40px; height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle span {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle span::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.cookie-toggle input:checked + span { background: var(--color-accent); }

.cookie-toggle input:checked + span::before { transform: translateX(18px); }

.cookie-toggle--disabled span { background: var(--color-accent); cursor: not-allowed; opacity: 0.6; }

.cookie-toggle--disabled span::before { transform: translateX(18px); }

.cookie-panel__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.cookie-panel__btn {
  flex: 1;
  min-width: 100px;
  justify-content: center;
  padding: 9px 12px;
  font-size: 0.78rem;
}

.cookie-panel__legal {
  font-size: 0.72rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.cookie-panel__legal a { color: var(--color-accent); text-decoration: underline; }

@media (max-width: 1024px) {
  .global-header__nav { display: none; }
  .global-header__hamburger { display: flex; }
  .global-header__search-btn { display: none; }

  .home-hero > * { grid-template-columns: 1fr; gap: var(--space-7); }
  .home-hero__images { height: 340px; }
  .home-hero__content { order: 1; }
  .home-hero__images { order: 2; }

  .home-intro__grid { grid-template-columns: 1fr; gap: var(--space-6); }

  .home-services__grid { grid-template-columns: 1fr; }

  .home-visual__inner { grid-template-columns: 1fr; gap: var(--space-7); }
  .home-visual__left { height: 320px; grid-template-rows: 1fr; grid-template-columns: 1fr 1fr; }

  .home-packages__grid { grid-template-columns: 1fr; }

  .home-contact-preview__grid { grid-template-columns: repeat(2, 1fr); }

  .perche-reasons__grid { grid-template-columns: 1fr; }

  .perche-approach__inner { grid-template-columns: 1fr; gap: var(--space-7); }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid__item--wide { grid-column: span 1; grid-template-columns: 1fr; }
  .services-grid__item--dark { grid-column: span 1; }

  .services-process__steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }

  .eventi-workshops__grid { grid-template-columns: 1fr; }

  .eventi-events__inner { grid-template-columns: 1fr; gap: var(--space-7); }

  .contact-form-section__inner { grid-template-columns: 1fr; gap: var(--space-7); }

  .global-footer__inner { grid-template-columns: 1fr; gap: var(--space-7); }
  .global-footer__right { grid-template-columns: repeat(3, 1fr); }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .legal-sidebar__nav { display: none; }
  .legal-sidebar__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--color-surface);
    margin-bottom: var(--space-4);
  }
  .legal-sidebar.is-open .legal-sidebar__nav { display: flex; }
  .legal-sidebar.is-open .legal-sidebar__mobile-toggle i { transform: rotate(180deg); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .global-header__inner { padding: 0 var(--space-5); }

  .global-mobile-menu__left { width: 65%; padding: var(--space-6); }
  .global-mobile-menu__right { width: 35%; }

  .home-hero { min-height: auto; padding-top: var(--nav-height); }
  .home-hero > * { padding: var(--space-7) var(--space-5); }
  .home-hero__images { height: 260px; }

  .home-intro__inner,
  .home-services__inner,
  .home-visual__inner,
  .home-gallery__inner,
  .home-packages__inner,
  .home-contact-preview__inner { padding: 0 var(--space-5); }

  .home-intro,
  .home-services,
  .home-visual,
  .home-gallery,
  .home-packages,
  .home-contact-preview { padding: var(--space-8) 0; }

  .home-contact-preview__grid { grid-template-columns: 1fr; }

  .home-visual__left { height: 260px; }

  .perche-hero__inner,
  .perche-reasons__inner,
  .perche-approach__inner,
  .perche-cta__inner { padding: 0 var(--space-5); }

  .perche-hero,
  .perche-reasons,
  .perche-approach,
  .perche-cta { padding: var(--space-8) 0; }
  .perche-hero { padding-top: calc(var(--nav-height) + var(--space-7)); }

  .services-hero__inner,
  .services-grid-section__inner,
  .services-process__inner,
  .services-cta__inner { padding: 0 var(--space-5); }

  .services-hero,
  .services-grid-section,
  .services-process,
  .services-cta { padding: var(--space-8) 0; }
  .services-hero { padding-top: calc(var(--nav-height) + var(--space-7)); }

  .services-process__steps { grid-template-columns: 1fr; }

  .eventi-hero__inner,
  .eventi-workshops__inner,
  .eventi-events__inner,
  .eventi-custom__inner { padding: 0 var(--space-5); }

  .eventi-hero,
  .eventi-workshops,
  .eventi-events,
  .eventi-custom { padding: var(--space-8) 0; }
  .eventi-hero { padding-top: calc(var(--nav-height) + var(--space-7)); }

  .contact-hero__inner,
  .contact-form-section__inner,
  .contact-map-section__inner { padding: 0 var(--space-5); }

  .contact-hero,
  .contact-form-section,
  .contact-map-section { padding: var(--space-8) 0; }
  .contact-hero { padding-top: calc(var(--nav-height) + var(--space-7)); }

  .contact-form-section__row { grid-template-columns: 1fr; }

  .contact-form-section__privacy-row { flex-direction: column; align-items: flex-start; }
  .contact-form-section__submit { width: 100%; justify-content: center; }

  .global-footer__inner { padding: var(--space-8) var(--space-5) var(--space-7); }
  .global-footer__right { grid-template-columns: 1fr 1fr; }
  .global-footer__bottom-inner { padding: var(--space-4) var(--space-5); }

  .legal-layout { padding: var(--space-7) var(--space-5); }

  .cookie-panel { width: calc(100vw - var(--space-5) * 2); right: var(--space-5); }

  .perche-reasons__item { flex-direction: column; gap: var(--space-3); }
  .perche-reasons__item-num { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .global-mobile-menu__left { width: 100%; }
  .global-mobile-menu__right { display: none; }

  .home-hero__actions { flex-direction: column; }
  .home-hero__actions .global-btn { width: 100%; justify-content: center; }

  .global-footer__right { grid-template-columns: 1fr; }

  .cookie-panel { right: 0; width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-left: none; border-right: none; }

  .cookie-bell-icon { bottom: var(--space-4); right: var(--space-4); }
}