@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

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

:root {
  --ink: #1c1410;
  --ink-light: #4a3d32;
  --ink-faint: #7a6a58;
  --rule: #d8cfc4;
  --cream: #f0ece6;
  --bg: #faf8f4;
  --accent: #7a6a58;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

/* Nav */
nav {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

nav .site-name {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
}

nav .nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav .nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s;
}

nav .nav-links a:hover,
nav .nav-links a.active { color: var(--ink); }

/* Lang toggle */
.lang-toggle {
  display: flex;
  margin-bottom: 2.5rem;
  border: 1px solid var(--rule);
  width: fit-content;
  border-radius: 2px;
  overflow: hidden;
}

.lang-btn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border: none;
  background: transparent;
  color: var(--ink-faint);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active { background: var(--ink); color: var(--cream); }
.lang-btn:not(.active):hover { background: var(--cream); color: var(--ink); }

/* Content */
.lang-block { display: none; }
.lang-block.visible { display: block; }

.section { margin-bottom: 2.5rem; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
}

.body-text {
  font-size: 19px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.body-text:last-child { margin-bottom: 0; }

hr { border: none; border-top: 1px solid var(--rule); margin: 2rem 0; }

/* Listino */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.price-row:first-of-type { border-top: 1px solid var(--rule); }

.service-name {
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-faint);
  margin-top: 3px;
  line-height: 1.5;
}

.price {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.price.quote {
  font-style: italic;
  color: var(--ink-light);
  font-size: 13px;
}

.note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-faint);
  line-height: 1.7;
}

/* Homepage */
.home-title {
  font-size: 52px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.home-sub {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-faint);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.menu-list { list-style: none; }

.menu-list li {
  border-bottom: 1px solid var(--rule);
}

.menu-list li:first-child { border-top: 1px solid var(--rule); }

.menu-list a {
  display: block;
  padding: 1rem 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}

.menu-list a:hover { color: var(--ink); }

.social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.social-icons a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s;
}

.social-icons a:hover { color: var(--ink); }

/* Contatti */
.contact-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-light);
}

.contact-item:first-of-type { border-top: 1px solid var(--rule); }

.contact-item a {
  color: var(--ink-light);
  text-decoration: none;
}

.contact-item a:hover { color: var(--ink); }

/* Waves background */
.wave-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
  background: var(--bg);
}

.wave-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -8%;
  transform: translateY(-50%);
  width: 45%;
  height: 50%;
  background: url('waves.jpg') center/contain no-repeat;
  opacity: 0.25;
  mix-blend-mode: multiply;
}

.wave-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%) scaleX(-1);
  width: 45%;
  height: 50%;
  background: url('waves.jpg') center/contain no-repeat;
  opacity: 0.25;
  mix-blend-mode: multiply;
}

/* Mobile */
@media (max-width: 600px) {
  nav { flex-direction: column; gap: 1rem; }
  nav .nav-links { flex-wrap: wrap; gap: 1rem; }
  .home-title { font-size: 32px; }
}
