* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1b1a;
  --muted: #5a5a5a;
  --paper: #faf7f2;
  --accent: #d66a3a;
  --accent-dark: #b6572e;
  --soft: #f1e6d8;
  --sand: #e7dacb;
  --teal: #2f6f6d;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fffaf4;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--teal);
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  margin-bottom: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--sand);
}

.button:hover {
  background: var(--accent-dark);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.highlight-stack {
  margin-top: 14px;
}

.prezzi-note {
  margin-top: 18px;
}

.link {
  color: var(--teal);
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.media {
  background: var(--soft);
  border-radius: 16px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media.tall {
  min-height: 360px;
}

.hero-visual {
  background: var(--soft);
  border-radius: 18px;
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1568828668638-b1b4014d91a2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.story-bg {
  background: var(--soft);
  border-radius: 20px;
  padding: 40px;
  background-image: url("https://images.unsplash.com/photo-1558907353-ceb54f3882ed?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.story-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.45);
  border-radius: 20px;
}

.story-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.trust-bg {
  background: var(--sand);
  border-radius: 20px;
  padding: 28px;
  background-image: url("https://images.unsplash.com/photo-1558877385-81a1c7e67d72?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.highlight {
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  border-radius: 12px;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  flex: 1 1 160px;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--sand);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--sand);
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 4;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--sand);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.legal-note {
  margin-top: 18px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  background: #fff;
  padding: 48px 0;
}

.about-visual {
  background: var(--soft);
  min-height: 320px;
  border-radius: 18px;
  background-image: url("https://images.unsplash.com/photo-1679061519536-74e1f8a2f0bc?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.about-bg {
  background: #f7efe4;
  border-radius: 20px;
  padding: 32px;
  background-image: url("https://images.unsplash.com/photo-1683614548328-ad7caaf311bd?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.services-visual {
  background: #f4efe7;
  border-radius: 18px;
  min-height: 320px;
  background-image: url("https://images.unsplash.com/photo-1674169797248-edbeb76f8cc7?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.media-block {
  background: var(--soft);
  border-radius: 16px;
  overflow: hidden;
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.notice {
  background: #fffaf4;
  border: 1px dashed var(--sand);
  padding: 16px;
  border-radius: 12px;
}

.notice.spaced {
  margin-top: 20px;
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
