:root {
  --ink: oklch(22% 0.02 60);
  --ink-soft: oklch(35% 0.02 60);
  --ink-muted: oklch(45% 0.02 60);
  --ink-faint: oklch(50% 0.02 60);
  --brown: oklch(40% 0.08 40);
  --brown-hover: oklch(32% 0.09 40);
  --brown-deep: oklch(38% 0.07 40);
  --brown-logo: oklch(30% 0.08 40);
  --brown-tint-bg: oklch(90% 0.05 40);
  --brown-tint-text: oklch(32% 0.08 40);
  --paper: oklch(97% 0.015 60);
  --paper-bg-a: oklch(97% 0.015 60 / 0.92);
  --line: oklch(90% 0.015 60);
  --line-strong: oklch(88% 0.02 60);
  --border-btn: oklch(80% 0.02 60);
  --photo-bg: oklch(94% 0.015 60);
  --dark: oklch(22% 0.02 60);
  --dark-text: oklch(85% 0.01 60);
}

* { box-sizing: border-box; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

a {
  color: var(--brown);
  text-decoration: none;
}
a:hover {
  color: var(--brown-hover);
}

img {
  max-width: 100%;
}

/* <picture> wraps the <img> for WebP delivery; `contents` keeps the img
   sized by its container exactly as when it was a direct child. */
picture {
  display: contents;
}

figure {
  margin: 0;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 6vw;
  position: sticky;
  top: 0;
  background: var(--paper-bg-a);
  backdrop-filter: blur(6px);
  z-index: 50;
  border-bottom: 1px solid var(--line-strong);
  flex-wrap: wrap;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  color: var(--brown-logo);
}

.logo-sub {
  font-size: 12px;
  color: var(--ink-muted);
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--ink);
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  gap: 5vw;
  padding: 110px 6vw;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 420px;
  min-width: 300px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--brown-tint-bg);
  color: var(--brown-tint-text);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 20px;
}

.hero-copy h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(38px, 5.5vw, 58px);
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--brown-deep);
}

.hero-copy .lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}

.btn-primary {
  background: var(--brown);
  color: white;
}
.btn-primary:hover {
  background: var(--brown-hover);
  color: white;
}

.btn-outline {
  border: 1.5px solid var(--border-btn);
  color: var(--ink);
}
.btn-outline:hover {
  color: var(--brown-hover);
}

.hero-photos {
  flex: 1 1 420px;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.hero-photo {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-contain img {
  object-fit: contain;
  background: var(--photo-bg);
}

/* Chi sono */
.chi-sono {
  padding: 80px 6vw;
  display: flex;
  gap: 6vw;
  align-items: center;
  flex-wrap: wrap-reverse;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chi-sono-photo {
  flex: 1 1 340px;
  min-width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.chi-sono-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--photo-bg);
}

.chi-sono-copy {
  flex: 1 1 420px;
  min-width: 300px;
}

.chi-sono-copy h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 34px;
  margin: 0 0 18px;
}

.chi-sono-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.chi-sono-copy p:last-child {
  margin: 0;
}

/* Section headings shared by Servizi / Galleria / Recensioni / Prezzi */
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 34px;
  margin: 0 0 12px;
  text-align: center;
}

.galleria .section-title,
.recensioni .section-title {
  margin: 0 0 40px;
}

.section-subtitle {
  text-align: center;
  color: var(--ink-muted);
  font-size: 16px;
  margin: 0 0 50px;
}

/* Servizi */
.servizi {
  padding: 90px 6vw;
}

.servizi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.card-photo {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-photo-contain img {
  object-fit: contain;
  background: var(--photo-bg);
}

.card h3 {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 10px;
}

.card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

/* Galleria */
.galleria {
  padding: 90px 6vw;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.galleria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.galleria-item {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--photo-bg);
}

.galleria-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.galleria-video {
  position: relative;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: oklch(100% 0 0 / 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent var(--brown-logo);
  margin-left: 3px;
}

/* Recensioni */
.recensioni {
  padding: 90px 6vw;
}

.recensioni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.recensioni-grid .card {
  padding: 28px;
}

.quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.attribution {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  margin: 0;
}

/* Prezzi */
.prezzi {
  padding: 90px 6vw;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.prezzi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.price-card-featured {
  border: 2px solid var(--brown);
  position: relative;
}

.price-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 6px;
}

.price {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  margin: 14px 0;
}

.price-card p {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
}

/* Zona di copertura */
.zona {
  padding: 90px 6vw;
  display: flex;
  gap: 6vw;
  align-items: center;
  flex-wrap: wrap;
}

.zona-copy {
  flex: 1 1 420px;
  min-width: 300px;
}

.zona-copy h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 34px;
  margin: 0 0 18px;
}

.zona-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.zona-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

.zona-map {
  flex: 1 1 420px;
  min-width: 300px;
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}

.zona-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Contatti */
.contatti {
  padding: 90px 6vw;
  background: var(--dark);
  color: white;
}

.contatti-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contatti-inner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 34px;
  margin: 0 0 18px;
  color: white;
}

.contatti-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-text);
  margin: 0 0 28px;
}

.contatti-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 17px;
  align-items: center;
}

.contatti-links a {
  color: white;
}

/* Footer */
.site-footer {
  padding: 32px 6vw;
  text-align: center;
}

.footer-logo {
  font-size: 20px;
  margin-bottom: 4px;
}

.footer-sub {
  font-size: 13px;
  color: var(--ink-faint);
  margin: 0;
}

/* Small screens */
@media (max-width: 520px) {
  .site-header {
    padding: 18px 6vw;
  }
  .site-nav {
    gap: 16px;
    font-size: 13px;
  }
  .hero {
    padding: 64px 6vw;
  }
}
