* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1d1f;
  --muted: #5b5e67;
  --paper: #f8f6f2;
  --accent: #1f6f78;
  --accent-dark: #15535a;
  --accent-soft: #d7ecec;
  --warm: #f1e7dd;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
  background: var(--paper);
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #ece8e2;
}

.brand {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 10px 12px;
  border-radius: 12px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
}

.nav a {
  padding: 8px 0;
}

.nav a:focus,
.nav a:hover {
  color: var(--accent-dark);
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--warm);
  border-radius: 18px;
}

.sidebar-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 32px 5vw 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  background: #1b2f33;
  color: #ffffff;
  padding: 64px 48px;
  border-radius: 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  background-size: cover;
  background-position: center;
}

.hero-italy {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1508921912186-1d1a45ebb3c1?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1473163928189-364b2c4e1135?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1473187983305-f615310e7daa?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
}

.hero h1 {
  font-size: 40px;
  line-height: 1.1;
  max-width: 620px;
}

.hero p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
}

.section {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tone-sage {
  background: #e7efe9;
}

.tone-warm {
  background: #f2efe8;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .media {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe7e4;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #f7f4ee;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media {
  border-radius: 14px;
  overflow: hidden;
  background: #dfe7e4;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.highlight {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 18px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6d0c9;
  font-size: 14px;
}

textarea {
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.footer {
  background: #ffffff;
  padding: 24px 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.legal-note {
  color: var(--muted);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-visual {
  min-height: 180px;
  border-radius: 22px;
  overflow: hidden;
  background: #e6e0d9;
  display: flex;
}

.banner-italy {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.small-muted {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ece8e2;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
