/* =====================================================
   BOTTEGA CERASELLA — Stylesheet
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CUSTOM PROPERTIES ─────────────────────────── */
:root {
  --cream:       #FBF4EA;
  --cream-dark:  #F2E8D8;
  --terracotta:  #C8572F;
  --terra-light: #E8885A;
  --terra-pale:  #F7D5C4;
  --blue:        #2E519F;
  --blue-light:  #4A73C4;
  --blue-pale:   #D0DAFA;
  --sage:        #7B9E6E;
  --sage-light:  #A8C49B;
  --sage-pale:   #DFF0D8;
  --gold:        #C8923A;
  --gold-pale:   #FAE9C8;
  --dark:        #1C1008;
  --mid:         #5C4030;
  --light:       #FEFAF4;
  --white:       #FFFFFF;
  --border:      rgba(28,16,8,0.10);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  48px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(28,16,8,0.08);
  --shadow-md: 0 6px 24px rgba(28,16,8,0.12);
  --shadow-lg: 0 16px 48px rgba(28,16,8,0.16);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; }
.display-xl { font-size: clamp(3.5rem, 10vw, 9rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 300; line-height: 1; letter-spacing: -0.02em; }
.display-md { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.1; }
.display-sm { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 400; }
.label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-body); }
.body-lg { font-size: 1.1rem; line-height: 1.7; }
.body-sm { font-size: 0.875rem; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--dark); color: var(--light);
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-terra {
  background: var(--terracotta); color: var(--white);
}
.btn-terra:hover { background: #a84320; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-etsy {
  background: #F1641E; color: var(--white);
  font-weight: 600;
}
.btn-etsy:hover { background: #d85519; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-etsy svg { width: 18px; height: 18px; }
.btn-outline {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--light); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ─── CHIP / TAG ─────────────────────────────────── */
.chip {
  display: inline-block; padding: 4px 12px;
  border-radius: var(--radius-pill); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.chip-terra { background: var(--terra-pale); color: var(--terracotta); }
.chip-blue  { background: var(--blue-pale); color: var(--blue); }
.chip-sage  { background: var(--sage-pale); color: var(--sage); }
.chip-gold  { background: var(--gold-pale); color: var(--gold); }
.chip-dark  { background: var(--dark); color: var(--cream); }

/* ─── NAVBAR ──────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(251,244,234,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 32px;
  box-shadow: var(--shadow-sm);
}
.navbar__logo { display: flex; align-items: center; gap: 10px; }
.navbar__logo svg { width: 38px; height: 40px; }
.navbar__logo-text {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 400; letter-spacing: 0.02em; color: var(--dark);
  line-height: 1.2;
}
.navbar__logo-text span { display: block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); font-family: var(--font-body); }
.navbar__links { display: flex; align-items: center; gap: 32px; }
.navbar__links a {
  font-size: 0.88rem; font-weight: 500; color: var(--dark);
  transition: color var(--transition); position: relative;
}
.navbar__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.navbar__links a:hover::after, .navbar__links a.active::after { transform: scaleX(1); }
.navbar__links a:hover { color: var(--terracotta); }
.navbar__actions { display: flex; align-items: center; gap: 16px; }
.navbar__ig {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); transition: var(--transition);
  color: var(--dark);
}
.navbar__ig:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.navbar__account, .navbar__cart {
  position: relative;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); transition: var(--transition);
  color: var(--dark); cursor: pointer;
}
.navbar__account:hover, .navbar__cart:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.navbar__cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px;
  background: var(--terracotta); color: var(--white);
  font-size: 0.68rem; font-weight: 700; line-height: 18px; text-align: center;
}
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.navbar__hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--cream); padding: 100px 32px 40px;
  flex-direction: column; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--dark); }

@media (max-width: 768px) {
  .navbar__links, .navbar__actions .btn { display: none; }
  .navbar__ig { display: none; }
  .navbar__logo-text { display: none; }
  .navbar__actions { gap: 8px; }
  .navbar__hamburger { display: flex; }
  .navbar { padding: 16px 20px; }
}

/* ─── NAVBAR LOGO (immagine PNG) ──────────────────────── */
.navbar__logo img { height: 40px; width: auto; display: block; }
.footer__brand-logo img { height: 30px; width: auto; opacity: 0.85; }

/* ─── HERO FULL (foto a tutta pagina, con parallax) ──── */
.hero-full {
  position: relative; height: 100svh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-full__bg-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-full__bg {
  position: absolute; top: -22%; left: 0; width: 100%; height: 144%;
  object-fit: cover; will-change: transform;
}
.hero-full__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,16,10,.4) 0%, rgba(23,16,10,.1) 35%, rgba(23,16,10,.7) 100%),
    linear-gradient(100deg, rgba(209,120,46,.22), rgba(23,16,10,.05));
}
.hero-full__content {
  position: relative; z-index: 2; text-align: center; color: var(--light);
  max-width: 760px; padding: 0 24px;
}
.hero-full__logo { height: 56px; width: auto; margin: 0 auto 28px; opacity: .96; }
.hero-full__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem); line-height: 1.02; letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-full__title em { font-style: italic; color: var(--terra-light); font-weight: 400; }
.hero-full__title span {
  display: inline-block; opacity: 0; transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.hero-full__title.in-view span { opacity: 1; transform: translateY(0); }
.hero-full__title.in-view span:nth-child(1) { transition-delay: .05s; }
.hero-full__title.in-view span:nth-child(2) { transition-delay: .2s; }
.hero-full__title.in-view span:nth-child(3) { transition-delay: .35s; }
.hero-full__desc {
  font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,.88);
  max-width: 480px; margin: 0 auto 36px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 1s ease .55s, transform 1s ease .55s;
}
.hero-full__desc.in-view { opacity: 1; transform: translateY(0); }
.hero-full__ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity 1s ease .7s, transform 1s ease .7s;
}
.hero-full__ctas.in-view { opacity: 1; transform: translateY(0); }
.btn-fill-light { background: var(--light); color: var(--dark); }
.btn-fill-light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero-full__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.75); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-full__scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.hero-full__scroll-line::after {
  content:''; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background: var(--white); animation: heroScrollLine 2s ease-in-out infinite;
}
@keyframes heroScrollLine { 0% { top:-100%; } 60%,100% { top:100%; } }

@media (max-width: 640px) {
  .hero-full__title { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .hero-full__logo { height: 44px; }
}

/* ─── MANIFESTO ──────────────────────────────────────── */
.manifesto {
  max-width: 780px; margin: 0 auto; padding: 140px 24px; text-align: center;
}
.manifesto__text {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.45; color: var(--dark);
}
.manifesto__text em { font-style: italic; color: var(--terracotta); }
@media (max-width: 640px) { .manifesto { padding: 88px 24px; } }

/* ─── PARALLAX PANEL (foto a tutta larghezza) ────────── */
.parallax-panel {
  position: relative; height: 85svh; min-height: 480px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.parallax-panel__bg-wrap { position: absolute; inset: 0; overflow: hidden; }
.parallax-panel__bg {
  position: absolute; top: -22%; left: 0; width: 100%; height: 144%;
  object-fit: cover; will-change: transform;
}
.parallax-panel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(23,16,10,.55) 0%, rgba(23,16,10,0) 45%);
}
.parallax-panel__caption {
  position: relative; z-index: 2; color: var(--light);
  padding: 56px; max-width: 520px;
}
.parallax-panel__caption .label { color: var(--terra-light); margin-bottom: 12px; display: block; }
.parallax-panel__caption h3 {
  font-family: var(--font-display); font-weight: 300; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}
.parallax-panel[data-align="right"] { justify-content: flex-end; }
.parallax-panel[data-align="right"] .parallax-panel__caption { text-align: right; }
@media (max-width: 768px) {
  .parallax-panel { height: 65svh; min-height: 380px; }
  .parallax-panel__caption { padding: 32px; }
}

/* ─── PHOTO HEADER (versione più bassa, per pagine interne) ─ */
.photo-header {
  position: relative; height: 60svh; min-height: 420px; overflow: hidden;
  display: flex; align-items: flex-end; padding-top: 80px;
}
.photo-header__bg-wrap { position: absolute; inset: 0; overflow: hidden; }
.photo-header__bg {
  position: absolute; top: -18%; left: 0; width: 100%; height: 136%;
  object-fit: cover; will-change: transform;
}
.photo-header__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(23,16,10,.6) 0%, rgba(23,16,10,.1) 60%);
}
.photo-header__content { position: relative; z-index: 2; padding: 0 64px 48px; color: var(--light); width: 100%; }
.photo-header__breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.photo-header__breadcrumb a:hover { color: var(--white); }
.photo-header__row {
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.photo-header__row .label { color: var(--terra-light); }
.photo-header__row h1 { color: var(--white); margin-top: 8px; }
.photo-header__row p { color: rgba(255,255,255,.8); margin-top: 12px; max-width: 500px; }
.photo-header__row > a { color: rgba(255,255,255,.75); }
.photo-header__row > a:hover { color: var(--white); }
@media (max-width: 768px) {
  .photo-header { height: 46svh; min-height: 340px; }
  .photo-header__content { padding: 0 24px 32px; }
}

/* ─── HERO (vecchio layout split, non più usato in home) ─ */
.hero {
  min-height: 100svh; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; padding-top: 80px;
}
.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 48px 80px 64px; position: relative; z-index: 2;
}
.hero__tag { margin-bottom: 24px; }
.hero__title { margin-bottom: 24px; }
.hero__title em { font-style: italic; color: var(--terracotta); }
.hero__desc { max-width: 440px; margin-bottom: 40px; color: var(--mid); }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__images {
  position: relative; overflow: hidden;
  background: var(--cream-dark);
}
.hero__images img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 8s ease;
}
.hero__images img:hover { transform: scale(1.04); }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; z-index: 3;
  color: var(--mid);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--mid), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.3; transform: scaleY(0.5); } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: 60vh auto; }
  .hero__images { grid-row: 1; }
  .hero__content { grid-row: 2; padding: 48px 24px; }
}

/* ─── MARQUEE ─────────────────────────────────────── */
.marquee-strip {
  background: var(--dark); color: var(--cream);
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.marquee-strip__inner {
  display: inline-flex; animation: marquee 28s linear infinite;
}
.marquee-strip__inner span {
  font-family: var(--font-display); font-size: 1rem; font-weight: 300;
  font-style: italic; padding: 0 24px;
}
.marquee-strip__inner .dot {
  color: var(--terracotta); font-style: normal; font-size: 1.2rem;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS ─────────────────────────────────────── */
.section { padding: 100px 64px; }
.section--sm { padding: 64px; }
.section--tight { padding: 64px 64px 0; }
.section__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 24px; }
.section__header-left { display: flex; flex-direction: column; gap: 12px; }
.container { max-width: 1440px; margin: 0 auto; }

@media (max-width: 768px) {
  .section { padding: 72px 24px; }
  .section--sm { padding: 48px 24px; }
  .section__header { flex-direction: column; align-items: flex-start; }
}

/* ─── ABOUT STRIP ─────────────────────────────────── */
.about-strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px; background: var(--border);
}
.about-strip__item {
  background: var(--cream); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background var(--transition);
}
.about-strip__item:hover { background: var(--terracotta); color: var(--white); }
.about-strip__item:hover .about-strip__icon { color: var(--white); }
.about-strip__icon { font-size: 2rem; }
.about-strip__item h3 { font-size: 1rem; font-weight: 600; }
.about-strip__item p { font-size: 0.875rem; opacity: 0.75; line-height: 1.5; }

@media (max-width: 900px) { .about-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .about-strip { grid-template-columns: 1fr; } }

/* ─── PRODUCT GRID ─────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--light); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
  border: 1px solid var(--border); position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__img {
  aspect-ratio: 1/1.05; overflow: hidden; position: relative;
  background: var(--cream-dark);
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.product-card__body { padding: 22px 22px 24px; }
.product-card__cat {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
  color: var(--dark); margin-bottom: 8px; line-height: 1.25;
}
.product-card__desc {
  font-size: 0.825rem; color: var(--mid); line-height: 1.5; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card__price {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 600; color: var(--dark);
}
.product-card__price span { font-size: 0.8rem; font-weight: 400; color: var(--mid); }
.product-card__coming {
  font-size: 0.78rem; color: var(--mid); font-style: italic;
}

/* ─── CATEGORY FILTERS ─────────────────────────────── */
.category-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.cat-btn {
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 500; border: 1.5px solid var(--border);
  background: var(--light); color: var(--mid);
  transition: var(--transition); cursor: pointer;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}

/* ─── BENTO GALLERY ─────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  padding: 0 64px 100px;
}
.bento-item {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; background: var(--cream-dark);
}
.bento-item img { width: 100%; height: 100%; object-fit: cover; }
.bento-item--1 { grid-column: span 7; grid-row: span 2; min-height: 480px; }
.bento-item--2 { grid-column: span 5; min-height: 230px; }
.bento-item--3 { grid-column: span 5; min-height: 230px; }
.bento-item--4 { grid-column: span 4; min-height: 280px; }
.bento-item--5 { grid-column: span 4; min-height: 280px; }
.bento-item--6 { grid-column: span 4; min-height: 280px; }
.bento-item__label {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(251,244,234,0.92); backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; padding: 0 24px 72px; }
  .bento-item--1, .bento-item--2, .bento-item--3, .bento-item--4, .bento-item--5, .bento-item--6 {
    grid-column: span 1; min-height: 240px;
  }
  .bento-item--1 { grid-column: span 2; min-height: 320px; }
}

/* ─── BOMBONIERE BANNER ─────────────────────────────── */
.bomboniere-banner {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px; overflow: hidden;
}
.bomboniere-banner__content {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.bomboniere-banner__tag { color: var(--terra-light); }
.bomboniere-banner__title { color: var(--white); }
.bomboniere-banner__title em { color: var(--terra-light); }
.bomboniere-banner__desc { color: rgba(251,244,234,0.7); max-width: 400px; }
.bomboniere-banner__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.bomboniere-banner__img {
  position: relative; overflow: hidden; background: var(--mid);
}
.bomboniere-banner__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.bomboniere-banner__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 30%);
}

@media (max-width: 900px) {
  .bomboniere-banner { grid-template-columns: 1fr; }
  .bomboniere-banner__img { min-height: 280px; }
  .bomboniere-banner__img::after { background: linear-gradient(to bottom, transparent, var(--dark)); }
  .bomboniere-banner__content { padding: 48px 24px; }
}

/* ─── CONTACT STRIP ─────────────────────────────────── */
.contact-strip {
  background: var(--terracotta); color: var(--white);
  padding: 40px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.contact-strip h2, .contact-strip h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; font-style: italic; }
.contact-strip p { font-size: 0.9rem; opacity: 0.85; margin-top: 4px; }
.contact-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 768px) { .contact-strip { padding: 40px 24px; } }

/* ─── BLOG PREVIEW ───────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--light); border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--cream-dark); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 24px; }
.blog-card__meta { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card__date { font-size: 0.78rem; color: var(--mid); }
.blog-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; margin-bottom: 10px; line-height: 1.3; }
.blog-card__desc { font-size: 0.85rem; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
.blog-card__link { font-size: 0.85rem; font-weight: 600; color: var(--terracotta); display: flex; align-items: center; gap: 4px; }
.blog-card__link:hover { gap: 8px; }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ─── ABOUT PAGE / SECTION ───────────────────────────── */
.about-hero {
  padding: 160px 64px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-hero__images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-hero__img { border-radius: var(--radius-lg); overflow: hidden; }
.about-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__img--tall { grid-row: span 2; }
.about-hero__img--tall img { height: 100%; min-height: 500px; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--dark); color: rgba(251,244,234,0.7);
  padding: 80px 64px 40px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand-logo { display: flex; align-items: center; gap: 10px; }
.footer__brand-logo svg { opacity: 0.9; filter: invert(1) brightness(2); width: 32px; height: 34px; }
.footer__brand-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--cream); }
.footer__brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer__col h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--cream); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 0.875rem; transition: color var(--transition); }
.footer__col ul a:hover { color: var(--terra-light); }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(251,244,234,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(251,244,234,0.7); font-size: 1rem; transition: var(--transition);
}
.footer__social a:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(251,244,234,0.1); padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer__bottom p { font-size: 0.8rem; }
.footer__bottom a { color: var(--terra-light); }

@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .footer { padding: 64px 24px 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── BLOG ARTICLE ───────────────────────────────────── */
.article-hero {
  padding: 120px 0 0; position: relative;
  background: var(--dark); min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.article-hero__bg {
  position: absolute; inset: 0; overflow: hidden;
}
.article-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.article-hero__content {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
  padding: 64px 64px 80px;
  color: var(--white);
}
.article-hero__meta { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.article-hero__date { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.article-body {
  max-width: 820px; margin: 0 auto;
  padding: 72px 64px 100px;
}
.article-body h2 { font-size: 1.8rem; margin: 48px 0 16px; }
.article-body h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.article-body p { margin-bottom: 20px; line-height: 1.85; color: var(--mid); }
.article-body strong { color: var(--dark); }
.article-body ul, .article-body ol { margin: 16px 0 24px 24px; color: var(--mid); line-height: 1.8; }
.article-body li { margin-bottom: 8px; }
.article-body img { border-radius: var(--radius-md); margin: 32px 0; width: 100%; }
.article-body .article-cta {
  background: var(--cream-dark); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; margin: 48px 0;
}
.article-body .article-cta h3 { font-size: 1.5rem; margin-bottom: 12px; }
.article-body .article-cta p { margin-bottom: 24px; }

@media (max-width: 768px) {
  .article-hero__content, .article-body { padding: 48px 24px; }
}

/* ─── CONTACT FORM ───────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; color: var(--mid); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 18px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--light);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--terracotta);
}
.form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-group.full { grid-column: span 1; } }

/* ─── UTILITY ─────────────────────────────────────────── */
.text-terra  { color: var(--terracotta); }
.text-blue   { color: var(--blue); }
.text-mid    { color: var(--mid); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.bg-cream    { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-dark     { background: var(--dark); }
.bg-terra    { background: var(--terracotta); }
.bg-sage     { background: var(--sage); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ─── PAGE HEADER ─────────────────────────────────────── */
.page-header {
  padding: 160px 64px 64px;
  background: var(--cream-dark);
}
.page-header__breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; font-size: 0.82rem; color: var(--mid); }
.page-header__breadcrumb a:hover { color: var(--terracotta); }

@media (max-width: 768px) { .page-header { padding: 120px 24px 48px; } }

/* ─── BOMBONIERE PAGE ─────────────────────────────────── */
.bomboniere-hero {
  min-height: 100svh; background: var(--dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.bomboniere-hero__bg { position: absolute; inset: 0; }
.bomboniere-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.bomboniere-hero__content {
  position: relative; z-index: 2;
  padding: 120px 64px 80px;
  max-width: 780px;
}
.bomboniere-hero__content h1 { color: var(--white); margin-bottom: 24px; }
.bomboniere-hero__content h1 em { color: var(--terra-light); }
.bomboniere-hero__content p { color: rgba(251,244,234,0.75); max-width: 520px; margin-bottom: 40px; }

@media (max-width: 768px) {
  .bomboniere-hero__content { padding: 100px 24px 60px; }
}

/* ─── PROCESS STEPS ──────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.step {
  padding: 48px 32px; background: var(--light);
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.step:hover { background: var(--terracotta); color: var(--white); }
.step:hover .step__num, .step:hover p { color: inherit; opacity: 0.9; }
.step__num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--terra-pale); line-height: 1; }
.step h3 { font-size: 1rem; }
.step p { font-size: 0.875rem; color: var(--mid); line-height: 1.6; }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* ─── GALLERY MASONRY ────────────────────────────────── */
.masonry {
  columns: 3; column-gap: 16px; padding: 0 64px 100px;
}
.masonry img {
  width: 100%; margin-bottom: 16px; border-radius: var(--radius-md);
  break-inside: avoid; display: block;
}
@media (max-width: 900px) { .masonry { columns: 2; padding: 0 24px 72px; } }
@media (max-width: 600px) { .masonry { columns: 1; } }

/* ─── STICKY CONTACT BTN ─────────────────────────────── */
.sticky-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: var(--transition);
  text-decoration: none;
}
.sticky-wa:hover { transform: scale(1.1) translateY(-2px); background: #128C7E; }
.sticky-wa svg { width: 28px; height: 28px; }

/* ─── NO RESULTS ─────────────────────────────────────── */
.no-results {
  grid-column: 1/-1; text-align: center;
  padding: 80px 24px; color: var(--mid);
}
.no-results h3 { font-size: 1.5rem; margin-bottom: 8px; }

/* ─── LEGAL PAGES (privacy/cookie/termini) ───────────── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 140px 24px 96px; }
.legal-page__updated { font-size: 0.82rem; color: var(--mid); margin-bottom: 40px; }
.legal-page h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal-page h2 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.3rem;
  margin: 44px 0 16px; padding-top: 8px; color: var(--dark);
}
.legal-page h2:first-of-type { margin-top: 16px; }
.legal-page p { font-size: 0.95rem; line-height: 1.75; color: var(--mid); margin-bottom: 16px; }
.legal-page ul { margin: 0 0 16px 0; padding-left: 0; }
.legal-page li {
  font-size: 0.95rem; line-height: 1.75; color: var(--mid);
  padding-left: 22px; position: relative; margin-bottom: 8px;
}
.legal-page li::before {
  content: '—'; position: absolute; left: 0; color: var(--terracotta);
}
.legal-page strong { color: var(--dark); font-weight: 600; }
.legal-page a { color: var(--terracotta); text-decoration: underline; }
.legal-page__toc {
  background: var(--cream-dark); border-radius: var(--radius-md);
  padding: 20px 24px; margin-bottom: 40px;
}
.legal-page__toc p { margin-bottom: 8px; font-weight: 600; color: var(--dark); }
.legal-page__toc ul { margin-bottom: 0; }
.legal-page__toc li::before { content: none; padding-left: 0; }
.legal-page__toc li { padding-left: 0; margin-bottom: 4px; }
.legal-page__toc a { text-decoration: none; }
.legal-page__toc a:hover { text-decoration: underline; }

.legal-page table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 0.88rem; }
.legal-page th, .legal-page td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--cream-dark); vertical-align: top; color: var(--mid); }
.legal-page th { color: var(--dark); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
.legal-page__box {
  background: var(--cream-dark); border-radius: var(--radius-md);
  padding: 20px 24px; margin: 32px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.legal-page__box p { margin: 0; font-size: 0.9rem; }
.legal-todo {
  background: rgba(200,87,47,0.12); color: var(--terracotta);
  padding: 1px 8px; border-radius: 6px; font-weight: 600; font-size: 0.88em; white-space: nowrap;
}

/* ─── COOKIE BANNER ───────────────────────────────────── */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 999;
  max-width: 480px; margin: 0 auto;
  background: var(--dark); color: var(--cream);
  border-radius: var(--radius-lg); padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 16px;
  transform: translateY(calc(100% + 40px)); opacity: 0;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), opacity 0.5s ease;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner__icon { font-size: 1.6rem; line-height: 1; }
.cookie-banner__title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
  margin-bottom: 6px; color: var(--white);
}
.cookie-banner__text { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.72); margin: 0; }
.cookie-banner__text a { color: var(--terra-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; }
.cookie-banner__actions .btn-terra { flex: 1; justify-content: center; }
@media (max-width: 560px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px 22px; max-width: none; }
}

/* ─── RESPONSIVE HELPERS (sezioni a 2 o 3 colonne) ───── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; gap: 32px; } }

.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .cards-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards-grid-3 { grid-template-columns: 1fr; } }

.blog-featured__text { padding: 48px 48px 48px 0; }
@media (max-width: 900px) { .blog-featured__text { padding: 32px 24px; } }
