:root {
  --cream: #F7F1E5;
  --cream-2: #FBF7EE;
  --paper: #F2E9D6;
  --gold: #AE8438;
  --gold-d: #876225;
  --gold-l: #D6B566;
  --gold-br: #ECD79A;
  --wine: #47202A;
  --wine-d: #371822;
  --ink: #562A1F;
  --ink-2: #7A4736;
  --header-h: 72px;
  --footer-h: auto;
  --max-w: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: radial-gradient(ellipse at 50% 0%, #FCF8F0 0%, #F3EAD7 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gold-text {
  background: linear-gradient(177deg, #F2DFA6 0%, #D9B96B 28%, #B58B3D 58%, #8C6627 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(247, 241, 229, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(174, 132, 56, 0.35);
  box-shadow: 0 4px 24px rgba(90, 60, 20, 0.08);
}

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

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  flex-shrink: 0;
}

.site-logo__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
}

.site-logo__tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--wine);
  background: rgba(174, 132, 56, 0.12);
}

.site-nav a.is-cta {
  background: linear-gradient(180deg, var(--gold-br), var(--gold));
  color: var(--wine-d);
  font-weight: 600;
}

.site-nav a.is-cta:hover {
  background: linear-gradient(180deg, var(--gold-l), var(--gold-d));
  color: var(--wine-d);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(174, 132, 56, 0.45);
  background: #fff;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--wine);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Main ───────────────────────────────────────────────── */
.site-main { flex: 1; }

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
}

.section--hero {
  padding: 80px 24px 72px;
  text-align: center;
}

.hero-rule {
  width: min(520px, 80%);
  height: 2px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg, transparent, var(--gold-l) 12%, var(--gold) 50%, var(--gold-l) 88%, transparent);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(72px, 14vw, 148px);
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  filter: drop-shadow(0 6px 14px rgba(120, 88, 30, 0.22));
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(22px, 3.5vw, 36px);
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 28px;
}

.hero-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--gold-d);
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(180deg, var(--gold-br), var(--gold));
  color: var(--wine-d);
  box-shadow: 0 8px 20px rgba(120, 90, 30, 0.2);
}

.btn--secondary {
  background: #fff;
  color: var(--wine);
  border: 1.5px solid var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  color: var(--wine);
  text-align: center;
  margin-bottom: 12px;
}

.section-rule {
  width: 160px;
  height: 1.5px;
  margin: 0 auto 36px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-lead {
  text-align: center;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 auto 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid rgba(174, 132, 56, 0.4);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 12px 26px rgba(90, 60, 20, 0.08);
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--wine);
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}

.cta-band {
  background: linear-gradient(180deg, #FBF4E2, #F3E7C9);
  border-top: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  padding: 48px 24px;
  text-align: center;
}

.cta-band p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--wine);
  margin-bottom: 24px;
}

/* ── Contatti page ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--wine);
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  line-height: 1.5;
}

.contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
}

.contact-list a:hover { color: var(--wine); }

.contact-map {
  background: var(--wine);
  color: #F4E9DC;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(90, 60, 20, 0.16);
}

.contact-map p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-map strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  display: block;
  margin-bottom: 16px;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--wine);
  color: #F4E9DC;
  margin-top: auto;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.site-footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--gold-l);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.site-footer p,
.site-footer a {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(244, 233, 220, 0.88);
  text-decoration: none;
}

.site-footer a:hover { color: #fff; text-decoration: underline; }

.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(244, 233, 220, 0.65);
  line-height: 1.6;
}

.site-footer__bottom a {
  color: var(--gold-l);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__bottom a:hover { color: #fff; }

.site-footer__bottom strong { color: var(--gold-l); font-weight: 500; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .site-header__inner { padding: 0 16px; gap: 12px; }

  .site-logo__name {
    font-size: 24px;
    letter-spacing: 0.08em;
    text-indent: 0.08em;
  }

  .site-logo__tag {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(247, 241, 229, 0.98);
    border-bottom: 1px solid rgba(174, 132, 56, 0.35);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px calc(20px + env(safe-area-inset-bottom, 0px));
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 16px;
    font-size: 15px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .section {
    padding: 40px 20px;
  }

  .section--hero {
    padding: 48px 20px 40px;
  }

  .hero-rule {
    margin-bottom: 28px;
  }

  .hero-title {
    font-size: clamp(56px, 18vw, 96px);
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }

  .hero-sub {
    font-size: clamp(18px, 4.8vw, 26px);
    letter-spacing: 0.1em;
    text-indent: 0;
    margin-top: 20px;
    padding: 0 4px;
    line-height: 1.35;
    text-wrap: balance;
  }

  .hero-lead {
    font-size: clamp(18px, 4.2vw, 22px);
    margin-top: 16px;
    padding: 0 8px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    min-height: 52px;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 36px);
    padding: 0 4px;
    text-wrap: balance;
  }

  .section-rule { margin-bottom: 24px; }

  .section-lead {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    text-align: left;
    padding: 0 2px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    padding: 22px 20px;
  }

  .card h3 {
    font-size: 22px;
    line-height: 1.25;
  }

  .card p {
    font-size: 17px;
    line-height: 1.65;
  }

  .cta-band {
    padding: 36px 20px;
  }

  .cta-band p {
    font-size: clamp(19px, 4.5vw, 24px);
    line-height: 1.45;
    padding: 0 4px;
    text-wrap: balance;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-block h3 {
    font-size: 24px;
  }

  .contact-list li {
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-list a {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contact-map {
    padding: 24px 20px;
  }

  .contact-map strong { font-size: 22px; }

  .contact-map p {
    font-size: 17px;
    line-height: 1.65;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 20px 24px;
  }

  .site-footer h4 { font-size: 20px; }

  .site-footer p,
  .site-footer a,
  .site-footer li a {
    font-size: 15px;
    line-height: 1.7;
  }

  .site-footer ul { gap: 10px; }

  .site-footer__bottom {
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    font-size: 14px;
    line-height: 1.75;
    text-wrap: balance;
  }
}

@media (max-width: 380px) {
  .hero-sub {
    letter-spacing: 0.06em;
    font-size: 17px;
  }

  .site-logo__tag { display: none; }
}
