:root {
  --pietra: #F5F3EE;
  --pietra-soft: #FAF9F6;
  --pietra-line: #E3E0D8;
  --ink: #262220;
  --ink-soft: #635B54;
  --bordeaux: #8A3149;
  --bordeaux-deep: #5F2033;
  --ramina: #55693F;
  --white: #FFFFFF;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 12px 32px -16px rgba(38, 34, 32, 0.22);
  --shadow-soft: 0 3px 14px -6px rgba(38, 34, 32, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Archivo', sans-serif;
  color: var(--ink);
  background: var(--pietra);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 600; margin: 0; text-wrap: balance; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Top nav ---------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 64px;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pietra-line);
}

.topnav .logo { position: relative; z-index: 2; }
.topnav .logo img { height: 54px; width: auto; display: block; }

.topnav .navlinks { display: flex; align-items: center; gap: 36px; }
.nav-list,
.nav-meta { display: contents; }
.nav-ig { display: none; }

.lang-toggle {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--pietra-line);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--ink-soft);
  padding: 5px 11px;
  border-radius: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn.active { background: var(--bordeaux); color: white; }
.lang-btn:not(.active):hover { color: var(--ink); }

.nav-list a {
  font-family: 'Cinzel Decorative', serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ink-soft);
  padding: 8px 2px;
  position: relative;
  transition: color 0.25s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--bordeaux);
  border-radius: 2px;
  transition: right 0.25s ease;
}

.nav-list a:hover { color: var(--bordeaux); }
.nav-list a:hover::after { right: 0; }

.nav-list a.active { color: var(--bordeaux); }
.nav-list a.active::after { right: 0; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  margin-right: -10px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.topnav.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.topnav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.topnav.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

html.nav-lock,
html.nav-lock body { overflow: hidden; }
html.nav-lock body { touch-action: none; }

@media (max-width: 780px) {
  body { padding-top: 65px; }
  .topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    backdrop-filter: none;
  }
  .topnav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(250, 249, 246, 0.94);
    backdrop-filter: blur(8px);
    pointer-events: none;
  }
  .topnav.nav-open::before {
    background: var(--pietra-soft);
    backdrop-filter: none;
  }
  .topnav .logo { z-index: 3; }
  .topnav .logo img { height: 40px; }
  .nav-toggle {
    display: block;
    z-index: 3;
  }

  .navlinks {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 88px 28px max(120px, calc(36px + env(safe-area-inset-bottom)));
    background: var(--pietra-soft);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
  }
  .topnav.nav-open {
    border-bottom-color: transparent;
  }
  .topnav.nav-open .navlinks {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
  .navlinks::before {
    content: "";
    position: absolute;
    top: 46%;
    left: 50%;
    width: min(420px, 90vw);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: url("../assets/img/mascotte-ink.png") center / contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
  }
  .topnav.nav-open .navlinks::before {
    animation: mascotteFloat 16s ease-in-out infinite;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
  }
  .nav-list a {
    display: inline-block;
    width: auto;
    text-align: center;
    padding: 12px 8px;
    font-size: clamp(17px, 5vw, 22px);
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(12px);
    transition: color 0.25s ease, opacity 0.4s ease, transform 0.4s ease;
  }
  .topnav.nav-open .nav-list a {
    opacity: 1;
    transform: none;
  }
  .topnav.nav-open .nav-list a:nth-child(1) { transition-delay: 0.06s; }
  .topnav.nav-open .nav-list a:nth-child(2) { transition-delay: 0.12s; }
  .topnav.nav-open .nav-list a:nth-child(3) { transition-delay: 0.18s; }
  .topnav.nav-open .nav-list a:nth-child(4) { transition-delay: 0.24s; }
  .nav-list a::after { bottom: 8px; height: 1.5px; }
  .nav-list a:focus-visible {
    outline: 2px solid var(--bordeaux);
    outline-offset: 6px;
    border-radius: 2px;
  }

  .nav-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: max(28px, env(safe-area-inset-bottom));
    z-index: 1;
  }
  .lang-toggle { margin: 0; }

  .nav-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15px;
    text-transform: none;
    color: var(--ink-soft);
    padding: 4px 0;
    transition: color 0.2s ease;
  }
  .nav-ig svg { width: 15px; height: 15px; }
  .nav-ig:hover { color: var(--bordeaux); }
}

@media (prefers-reduced-motion: reduce) {
  .navlinks,
  .topnav.nav-open .navlinks,
  .nav-toggle span,
  .nav-list a::after { transition: none; }
  .nav-list a { opacity: 1; transform: none; }
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 64px; }
@media (max-width: 860px) { .wrap { padding: 0 24px; } }

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--bordeaux);
}

/* Drop an <img> inside .frame to replace the placeholder. */
.frame {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(138, 49, 73, 0.05), transparent 62%),
    linear-gradient(165deg, #EFEBE3 0%, var(--pietra-line) 100%);
}
.frame:not(:has(img))::before {
  content: "";
  position: absolute;
  inset: 18%;
  background: url("../assets/img/mascotte-ink.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(38, 34, 32, 0.08);
  pointer-events: none;
  z-index: 2;
}
.frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  z-index: 1;
  transition: transform 0.7s ease;
  user-select: none;
  -webkit-user-drag: none;
}

/*
  Ritaglio foto — object-position: X% Y%
  X: 0 = mostra la sinistra, 50 = centro, 100 = destra
  Y: 0 = mostra l'alto,     50 = centro, 100 = il basso
  Esempio: 70% 40% sposta il soggetto verso sinistra nel riquadro
  (perché inquadra di più il lato destro della foto).
*/
.frame img[src*="pumi-dipinti"] { object-position: 50% 50%; }
.frame img[src*="pumi-bianchi"] { object-position: 50% 50%; }
.frame img[src*="lampada-pumo"] { object-position: 50% 38%; }
.frame img[src*="lampada-volto"] { object-position: 50% 32%; }
.frame img[src*="centrotavola-melagrane"] { object-position: 50% 50%; }
.frame img[src*="piatto-ulivo"] { object-position: 50% 50%; }
.frame img[src*="piatto-fichi-dindia"] { object-position: 50% 50%; }
.frame img[src*="oliere-mediterranee"] { object-position: 50% 48%; }
.frame img[src*="gufi"] { object-position: 50% 50%; }
.frame img[src*="acquasantiera"] { object-position: 50% 38%; }
.frame img[src*="acquasantiera-angeli"] { object-position: 50% 40%; }
.frame img[src*="presepe"] { object-position: 50% 42%; }
.frame img[src*="crocifisso"] { object-position: 50% 36%; }
.frame img[src*="piatto-cristo"] { object-position: 50% 42%; }
.frame img[src*="statuina-santo"] { object-position: 50% 28%; }
.frame img[src*="artigiano"] { object-position: 50% 28%; }
.frame img[src*="scaffale-bottega"] { object-position: 50% 32%; }
.frame img[src*="vetrina"] { object-position: 50% 42%; }
.frame img[src*="/studio/"] { object-position: 50% 48%; }

/* ================= HOME ================= */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background: var(--pietra-soft);
  border-bottom: 1px solid var(--pietra-line);
  overflow: hidden;
}
.hero-ghost {
  position: absolute;
  top: 50%;
  left: 22%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: auto;
  opacity: 0.045;
  z-index: 0;
  pointer-events: none;
  animation: mascotteFloat 16s ease-in-out infinite;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 { font-size: 44px; font-weight: 600; line-height: 1.18; margin: 16px 0 18px; color: var(--ink); }
.hero p.lead { font-size: 17px; line-height: 1.65; color: var(--ink-soft); max-width: 42ch; margin-bottom: 28px; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-photo img.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 1.1s ease;
}
.hero-photo:hover img.hero-image { transform: scale(1.035); }

@media (max-width: 780px) {
  .hero { padding: 36px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { order: 2; }
  .hero-photo { order: 1; }
  .hero h1 { font-size: 32px; }
  .hero p.lead { max-width: none; }
  .hero-ghost { width: 300px; left: 50%; top: 18%; }
  .hero-photo img.hero-image { aspect-ratio: 5/4; }
}

/* ---------- Entrance + scroll motion ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mascotteFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 14px)); }
}
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p.lead,
.hero-copy .btn-primary {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.hero-copy .eyebrow { animation-delay: 0.05s; }
.hero-copy h1 { animation-delay: 0.15s; }
.hero-copy p.lead { animation-delay: 0.28s; }
.hero-copy .btn-primary { animation-delay: 0.4s; }
.hero-photo {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.18s;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.11s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.39s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.46s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.53s; }

.page-hero .eyebrow, .page-hero h1, .page-hero p {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.page-hero .eyebrow { animation-delay: 0.05s; }
.page-hero h1 { animation-delay: 0.15s; }
.page-hero p { animation-delay: 0.28s; }

.appear {
  animation: fadeUp 0.6s ease both;
}
.filters.appear { animation-delay: 0.2s; }
.cta-banner.appear { animation-delay: 0.28s; }

.appear-in > * {
  animation: fadeUp 0.55s ease both;
}
.appear-in > *:nth-child(1) { animation-delay: 0.12s; }
.appear-in > *:nth-child(2) { animation-delay: 0.18s; }
.appear-in > *:nth-child(3) { animation-delay: 0.24s; }
.appear-in > *:nth-child(4) { animation-delay: 0.30s; }
.appear-in > *:nth-child(5) { animation-delay: 0.36s; }
.appear-in > *:nth-child(6) { animation-delay: 0.42s; }
.appear-in > *:nth-child(7) { animation-delay: 0.48s; }
.appear-in > *:nth-child(8) { animation-delay: 0.54s; }
.appear-in > *:nth-child(n+9) { animation-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .hero-copy .eyebrow, .hero-copy h1, .hero-copy p.lead, .hero-copy .btn-primary, .hero-photo,
  .page-hero .eyebrow, .page-hero h1, .page-hero p,
  .appear, .appear-in > * {
    animation: none; opacity: 1;
  }
  .hero-ghost, .topnav.nav-open .navlinks::before { animation: none; transform: translate(-50%, -50%); }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .look-stage img { transition: none; }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bordeaux);
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover { color: var(--bordeaux); border-color: var(--bordeaux); }

.section-white { background: var(--white); padding: 80px 0; }
.section-pietra { background: var(--pietra); padding: 80px 0; }
@media (max-width: 560px) {
  .section-white, .section-pietra { padding: 52px 0; }
}
.section-head { text-align: center; margin-bottom: 46px; }
.section-head h2 { font-size: 32px; margin-top: 10px; }
.section-head p { color: var(--ink-soft); margin-top: 10px; font-size: 15.5px; }

.cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 18px;
}
.cat-card {
  display: block;
  color: inherit;
  width: 108px;
  text-align: center;
}
.cat-card .frame {
  width: 88px;
  height: 88px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.cat-card .frame::after { border-radius: 50%; }
.cat-card:hover .frame { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.cat-card:hover .frame img { transform: scale(1.06); }
.cat-card:hover .frame:not(:has(img))::before { transform: scale(1.08); opacity: 0.14; }
.cat-card .body { padding: 10px 0 0; }
.cat-card h3 { font-size: 13.5px; font-weight: 600; margin: 0; line-height: 1.3; }
.cat-card .count { display: none; }
.cat-more {
  text-align: center;
  margin-top: 28px;
}

.storia-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.storia-teaser .frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.storia-teaser .frame::after { border-radius: var(--radius-lg); }
.storia-teaser h2 { font-size: 30px; margin: 10px 0 16px; }
.storia-teaser p { color: var(--ink-soft); line-height: 1.7; font-size: 15.5px; margin-bottom: 18px; }
.link-arrow { color: var(--bordeaux); font-weight: 600; font-size: 15px; border-bottom: 1px solid transparent; transition: border-color 0.2s ease, transform 0.2s ease; }
.link-arrow:hover { border-bottom-color: var(--bordeaux); transform: translateX(3px); }

@media (max-width: 780px) {
  .storia-teaser { grid-template-columns: 1fr; gap: 28px; }
  .storia-teaser .frame { margin-bottom: 0; aspect-ratio: 4/3; }
}

.info-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-teaser .map { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); position: relative; }
.info-teaser h2 { font-size: 30px; margin: 10px 0 18px; }
.info-teaser .line { display: flex; gap: 10px; margin-bottom: 10px; font-size: 15px; color: var(--ink-soft); }
.info-teaser .line b { color: var(--ink); font-weight: 700; min-width: 92px; display: inline-block; font-family: 'Archivo', sans-serif; }

@media (max-width: 780px) { .info-teaser { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Reviews carousel ---------- */
.reviews-carousel-wrap { position: relative; max-width: 720px; margin: 0 auto; }
.reviews-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 4px 4px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  box-shadow: var(--shadow-soft);
}
.review-card .review-source { display: flex; align-items: center; gap: 9px; color: var(--bordeaux); margin-bottom: 16px; }
.review-card .review-source .google-g,
.review-card .review-source .fb-icon { width: 18px; height: 18px; flex-shrink: 0; }
.review-card .review-source span { font-size: 17px; letter-spacing: 3px; }
.review-card .review-source .fb-icon + span { font-size: 14px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; }
.review-card .review-text { font-size: 16px; line-height: 1.75; color: var(--ink); margin-bottom: 22px; white-space: pre-line; }
.review-card .review-author .name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px; color: var(--ink); display: block; }
.review-card .review-author .meta { font-size: 12.5px; color: var(--ink-soft); }

.rev-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--ink); z-index: 2;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rev-nav:hover { transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow-card); }
.rev-nav.prev { left: -21px; }
.rev-nav.next { right: -21px; }
@media (max-width: 860px) {
  .rev-nav.prev { left: -6px; }
  .rev-nav.next { right: -6px; }
}
@media (max-width: 640px) { .rev-nav { display: none; } }

.reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.reviews-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pietra-line); cursor: pointer; padding: 0; transition: background 0.2s ease, transform 0.2s ease; }
.reviews-dots .dot.active { background: var(--bordeaux); transform: scale(1.2); }

.reviews-cta { text-align: center; margin-top: 26px; }

footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.88);
  padding: 56px 0 36px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; }
.footer-mark { height: 64px; width: auto; margin-bottom: 14px; opacity: 0.95; }
.footer-sign {
  font-family: 'Cinzel Decorative', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: white;
  margin: 0 0 22px;
}
.footer-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 22px;
  max-width: 640px;
}
.footer-facts span + span::before,
.footer-facts a::before {
  content: "·";
  margin: 0 10px;
  opacity: 0.5;
}
.footer-facts a { color: inherit; }
.footer-facts a:hover { color: white; }
footer.site-footer .ig { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; padding: 4px 0; color: rgba(255,255,255,0.88); }
footer.site-footer .ig svg { width: 16px; height: 16px; }
footer.site-footer .ig:hover { color: white; }
footer.site-footer .copyright { margin-top: 28px; font-size: 12px; opacity: 0.5; }
footer.site-footer .credit {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  opacity: 0.7;
}
footer.site-footer .credit a { border-bottom: 1px solid transparent; transition: border-color 0.15s ease, opacity 0.15s ease; }
footer.site-footer .credit a:hover { border-bottom-color: currentColor; opacity: 0.95; }
footer.site-footer a.credit-brand {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px 6px;
  background: var(--pietra-soft);
  border-radius: 6px;
  opacity: 1;
  border-bottom: none;
}
footer.site-footer a.credit-brand img {
  height: 26px;
  width: auto;
}
footer.site-footer a.credit-brand:hover {
  border-bottom: none;
  background: var(--white);
}

/* ================= CATALOGO ================= */
.page-hero {
  padding: 60px 0 46px;
  background: var(--pietra-soft);
  border-bottom: 1px solid var(--pietra-line);
  text-align: center;
}
.page-hero h1 { font-size: 37px; margin: 12px 0 14px; }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-size: 15.5px; line-height: 1.6; }

@media (max-width: 560px) {
  .page-hero { padding: 44px 0 36px; }
  .page-hero h1 { font-size: 28px; }
}

.filters { display: flex; gap: 6px 28px; justify-content: center; flex-wrap: wrap; margin: 40px 0 52px; }
.filter-pill {
  padding: 8px 2px;
  border-radius: 0;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  border-bottom: 1.5px solid transparent;
  color: var(--ink-soft);
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.filter-pill:hover { color: var(--ink); }
.filter-pill.active {
  background: transparent;
  color: var(--bordeaux);
  border-bottom-color: var(--bordeaux);
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 28px;
  padding-bottom: 80px;
}
@media (min-width: 700px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid.is-all .prod-card.is-featured { grid-column: 1 / 3; }
  .prod-grid.is-all .prod-card.is-featured .frame { aspect-ratio: 16/10; }
}
.prod-card { background: none; }
.prod-card .frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  transition: box-shadow 0.35s ease;
}
.prod-card .frame::after { border-radius: var(--radius); }
.prod-card:hover .frame { box-shadow: var(--shadow-card); }
.prod-card:hover .frame img { transform: scale(1.05); }
.prod-card:hover .frame:not(:has(img))::before { transform: scale(1.08); opacity: 0.14; }
.prod-card .body { padding: 14px 2px 0; }
.prod-card .cat-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--ramina); font-weight: 700; }
.prod-card .name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; margin-top: 6px; }
.prod-card .note { font-size: 13px; line-height: 1.5; color: var(--ink-soft); margin-top: 6px; }
.prod-card .ask-wa {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bordeaux);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.prod-card .ask-wa:hover { border-bottom-color: var(--bordeaux); }
.prod-card .frame:has(img) {
  cursor: zoom-in;
}
.prod-card .frame:has(img):focus-visible {
  outline: 2px solid var(--bordeaux);
  outline-offset: 3px;
}

.look {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  flex-direction: column;
  background: #1a1614;
  color: var(--pietra);
}
.look[hidden] { display: none; }
.look-stage {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 72px 8px;
  touch-action: pan-y;
  cursor: grab;
}
.look-stage:active { cursor: grabbing; }
.look-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 18px 48px -18px rgba(0, 0, 0, 0.55);
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.look-stage img.is-leave { opacity: 0; transform: translateX(var(--look-dir, 12px)); }
.look-stage img.is-enter { opacity: 0; transform: translateX(calc(var(--look-dir, 12px) * -1)); }
.look-caption {
  flex-shrink: 0;
  text-align: center;
  padding: 16px 24px max(24px, env(safe-area-inset-bottom));
}
.look-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #b7c4a6;
}
.look-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  margin-top: 6px;
}
.look-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(245, 243, 238, 0.55);
}
.look-wa {
  color: #e8c9d1;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.look-wa:hover { border-bottom-color: #e8c9d1; }
.look-close,
.look-nav {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  color: var(--pietra);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, color 0.2s ease;
}
.look-close:hover,
.look-nav:hover { background: rgba(255, 255, 255, 0.14); color: white; }
.look-close {
  top: max(12px, env(safe-area-inset-top));
  right: 14px;
  font-size: 28px;
  line-height: 1;
}
.look-nav {
  top: 46%;
  transform: translateY(-50%);
  font-size: 32px;
  line-height: 1;
}
.look-nav.prev { left: 12px; }
.look-nav.next { right: 12px; }
@media (max-width: 700px) {
  .look-stage { padding: 56px 18px 8px; }
  .look-nav { top: auto; bottom: max(86px, calc(72px + env(safe-area-inset-bottom))); transform: none; }
  .look-nav.prev { left: 10px; }
  .look-nav.next { right: 10px; }
}

.cta-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 44px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  margin-bottom: 90px;
  box-shadow: var(--shadow-card);
}
.cta-banner h3 { font-size: 23px; margin-bottom: 6px; }
.cta-banner p { font-size: 14.5px; opacity: 0.85; margin: 0; }
.cta-banner .btn-primary { background: var(--bordeaux); color: white; }

@media (max-width: 640px) {
  .cta-banner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 32px 28px; }
  .cta-banner .btn-primary { align-self: stretch; justify-content: center; }
}

/* ================= STORIA ================= */
.storia-banner { aspect-ratio: 16/7; min-height: 280px; }
.storia-banner.frame { border-radius: 0; }
.storia-banner.frame::after { border-radius: 0; }
.storia-banner img { object-position: center 45%; }

.storia-seal { display: flex; justify-content: center; margin: -58px 0 40px; position: relative; z-index: 3; }
.storia-seal img { height: 116px; width: auto; background: var(--white); border-radius: 50%; padding: 14px; box-shadow: var(--shadow-card); }

.storia-body { padding-top: 66px; padding-bottom: 24px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; }
@media (max-width: 900px) { .storia-body { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 560px) {
  .storia-seal img { height: 88px; padding: 10px; }
  .storia-seal { margin: -44px 0 28px; }
  .storia-banner { aspect-ratio: 16/10; min-height: 200px; }
}
.storia-body .prose p { font-size: 16px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 20px; }
.pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--bordeaux);
  padding-left: 22px;
  margin: 34px 0;
}
.pull-quote .who { display: block; font-family: 'Archivo', sans-serif; font-style: normal; font-size: 13px; color: var(--ink-soft); margin-top: 10px; font-weight: 700; }

.block-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--bordeaux); margin: 30px 0 8px; }
.block-label:first-child { margin-top: 0; }

.fact-list { display: flex; flex-direction: column; gap: 26px; }
.fact-item { border-left: 3px solid var(--bordeaux); padding-left: 18px; }
.fact-item .fact-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--bordeaux); margin-bottom: 5px; }
.fact-item .fact-value { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.fact-item .fact-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

.storia-portrait {
  max-width: 440px;
  padding-top: 24px;
  padding-bottom: 90px;
}
.storia-portrait .frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.storia-portrait .frame::after { border-radius: var(--radius-lg); }
.storia-portrait-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 16px 0 0;
}

/* ================= INFO & CONTATTI ================= */
.info-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; padding-top: 60px; padding-bottom: 80px; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 560px) {
  .info-grid { padding: 40px 0 50px; }
  .info-card { padding: 26px 22px; }
  .map-block { min-height: 280px; }
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 36px;
  box-shadow: var(--shadow-soft);
}
.info-card h3 { font-size: 21px; margin-bottom: 20px; }
.info-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--pietra-line); align-items: flex-start; }
.info-row:last-of-type { border-bottom: none; }
.info-row .ic { width: 20px; height: 20px; color: var(--bordeaux); flex-shrink: 0; margin-top: 2px; }
.info-row .lbl { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--ink-soft); font-weight: 700; margin-bottom: 3px; }
.info-row .val { font-size: 15px; color: var(--ink); font-weight: 500; }
.info-row .val a { border-bottom: 1px solid transparent; transition: border-color 0.15s ease; }
.info-row .val a:hover { border-bottom-color: var(--bordeaux); }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ramina);
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--radius);
  margin-top: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-whatsapp svg { width: 20px; height: 20px; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

/* ---------- Contact form ---------- */
.contact-form-section { background: var(--white); padding: 72px 0 86px; border-top: 1px solid var(--pietra-line); }
.contact-form-section .inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.contact-form-section .section-head { margin-bottom: 36px; }
form.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
form.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
form.contact-form label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ink-soft);
}
form.contact-form input,
form.contact-form textarea {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--pietra-soft);
  border: 1.5px solid var(--pietra-line);
  border-radius: var(--radius);
  padding: 12px 14px;
  resize: vertical;
}
form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
}
form.contact-form .honeypot { position: absolute; left: -9999px; }
form.contact-form button.btn-primary { align-self: flex-start; margin-top: 6px; }
form.contact-form .privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 4px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}
form.contact-form .privacy-check input {
  margin-top: 3px;
  accent-color: var(--bordeaux);
  width: auto;
  padding: 0;
  background: none;
  border: none;
}
form.contact-form .privacy-check a { color: var(--bordeaux); font-weight: 600; }

table.hours { width: 100%; border-collapse: collapse; margin-top: 6px; }
table.hours td { padding: 6px 0; font-size: 14.5px; }
table.hours td:first-child { color: var(--ink-soft); }
table.hours td:last-child { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }

.map-block { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); position: relative; height: 100%; min-height: 380px; }
.map-open-btn { position: absolute; bottom: 20px; left: 20px; z-index: 3; }
.map-wrap { position: relative; }
.map-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  text-align: center;
  background: var(--pietra-soft);
}
.map-cover[hidden] { display: none; }
.map-cover p {
  margin: 0;
  max-width: 28ch;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.cookie-bar {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 180;
  max-width: 420px;
  padding: 18px 18px 16px;
  background: var(--white);
  border: 1px solid var(--pietra-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.cookie-bar[hidden] { display: none; }
.cookie-bar .cookie-text {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.cookie-accept {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: var(--bordeaux);
  color: white;
}
.cookie-needed {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 4px;
  color: var(--ink-soft);
}
.cookie-needed:hover { color: var(--ink); }
.cookie-more {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bordeaux);
  margin-left: auto;
}
.cookie-more:hover { border-bottom: 1px solid var(--bordeaux); }
html:not(.site-open) .cookie-bar { display: none !important; }
@media (max-width: 560px) {
  .cookie-bar { bottom: max(88px, calc(18px + env(safe-area-inset-bottom))); }
}
@media print { .cookie-bar { display: none; } }
.footer-legal { margin-top: 14px; font-size: 12px; opacity: 0.55; }
.footer-legal a:hover { color: white; opacity: 1; }
.privacy-page { max-width: 680px; margin: 0 auto 80px; }
.privacy-page h2 { font-size: 22px; margin: 32px 0 10px; }
.privacy-page p, .privacy-page li { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.privacy-page ul { padding-left: 1.2em; margin: 0 0 14px; }
.privacy-page li { margin: 0 0 8px; }
.privacy-page a { color: var(--bordeaux); font-weight: 600; }
.privacy-updated { margin-top: 8px; font-size: 13px; color: var(--ink-soft) !important; }

.ig-strip { background: var(--pietra-soft); padding: 64px 24px 80px; text-align: center; border-top: 1px solid var(--pietra-line); }
.ig-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  margin: 0 auto;
  color: inherit;
}
.ig-glyph {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--bordeaux);
  border: 1.5px solid var(--pietra-line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.ig-glyph svg { width: 34px; height: 34px; }
.ig-card h3 { font-size: 24px; margin: 0 0 6px; }
.ig-card .handle { color: var(--bordeaux); font-weight: 600; margin: 0 0 18px; }
.ig-go {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.ig-card:hover .ig-glyph {
  transform: translateY(-3px);
  border-color: var(--bordeaux);
  color: var(--bordeaux-deep);
}
.ig-card:hover .ig-go { color: var(--bordeaux); border-bottom-color: var(--bordeaux); }

/* ---------- Assistente bottega ---------- */
.ask {
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 160;
  font-family: 'Archivo', sans-serif;
}
.topnav.nav-open ~ .ask,
.look:not([hidden]) ~ .ask { display: none; }
.ask-fab {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0;
  background: none;
  border: none;
  z-index: 2;
}
.ask-hint {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--pietra-line);
  border-radius: 999px;
  padding: 6px 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ask-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--pietra-line);
  display: grid;
  place-items: center;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.ask-fab img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.85;
}
.ask-fab-x {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: var(--ink-soft);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ask-fab:hover .ask-hint,
.ask-fab:focus-visible .ask-hint {
  opacity: 1;
  transform: translateY(-50%);
}
.ask.is-open .ask-hint { opacity: 0 !important; }
.ask.is-open .ask-fab img { opacity: 0; }
.ask.is-open .ask-fab-x { opacity: 1; transform: none; }
.ask-fab:hover .ask-dot { border-color: var(--bordeaux); transform: translateY(-1px); }
.ask-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(320px, calc(100vw - 40px));
  max-height: min(480px, calc(100vh - 100px));
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--pietra-line);
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}
.ask-panel[hidden] { display: none; }
.ask-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 12px 18px;
  border-bottom: 1px solid var(--pietra-line);
  background: var(--white);
}
.ask-head strong {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
}
.ask-x {
  width: 36px;
  height: 36px;
  font-size: 22px;
  color: var(--ink-soft);
  border-radius: 50%;
}
.ask-x:hover { color: var(--ink); }
.ask-thread {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
}
.ask-bubble {
  max-width: 92%;
  padding: 10px 13px;
  font-size: 13.5px;
  line-height: 1.45;
  border-radius: 12px;
}
.ask-bubble.is-bot {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--pietra-line);
  border-bottom-left-radius: 4px;
}
.ask-bubble.is-me {
  align-self: flex-end;
  background: var(--bordeaux);
  color: white;
  border-bottom-right-radius: 4px;
}
.ask-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 14px 12px;
}
.ask-chip {
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--pietra-line);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.ask-chip:hover { border-color: var(--bordeaux); color: var(--bordeaux); }
.ask-wa {
  display: block;
  text-align: center;
  padding: 12px 16px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bordeaux);
  background: none;
  border-top: 1px solid var(--pietra-line);
}
.ask-wa:hover { background: none; color: var(--bordeaux-deep); }
@media print { .ask { display: none; } }

/* Per aprire il sito: in js/gate.js metti SITE_OPEN = true */
.site-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 48px 28px 96px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(138, 49, 73, 0.05), transparent 58%),
    var(--pietra-soft);
  overflow: hidden;
}
.site-gate-ghost {
  position: absolute;
  top: 46%;
  left: 50%;
  width: min(420px, 78vw);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  pointer-events: none;
  animation: mascotteFloat 16s ease-in-out infinite;
}
.site-gate-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 28rem;
  animation: fadeUp 0.8s ease both;
}
.site-gate-logo {
  height: 92px;
  width: auto;
  margin-bottom: 28px;
}
.site-gate .eyebrow {
  margin-bottom: 12px;
}
.site-gate h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.02em;
}
.site-gate-when {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 0;
  color: var(--ink);
}
.site-gate-day {
  font-family: 'Fraunces', serif;
  font-size: clamp(64px, 14vw, 96px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.site-gate-month {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.site-gate-rule {
  display: block;
  width: 36px;
  height: 1.5px;
  margin: 22px 0 18px;
  background: var(--bordeaux);
}
.site-gate-inner > p:not(.site-gate-when) {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(15px, 2.2vw, 17px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 28ch;
  margin: 0;
}
.site-gate-credit {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 1;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  animation: fadeUp 0.8s ease 0.2s both;
}
.site-gate-credit a {
  color: var(--bordeaux);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-gate-credit a:hover { border-bottom-color: var(--bordeaux); }
.site-confetti {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
@media (max-width: 560px) {
  .site-gate-logo { height: 76px; }
  .site-gate-credit { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-gate-ghost { animation: none; }
}
html:not(.site-open),
html:not(.site-open) body {
  overflow: hidden;
  height: 100%;
}
html.site-open .site-gate { display: none; }
html.site-open,
html.site-open body {
  overflow: auto;
  height: auto;
}
html:not(.site-open) .ask { display: none !important; }
