/* ════════════════════════════════════════════════
   CUOI E PELLAMI — style.css
   Font: Plus Jakarta Sans (Google Fonts)
   Palette: Forest #586457 · Gold #CCAC61 · Camel #A88759
   ════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --forest:    #586457;
  --forest-dk: #3f4a3e;
  --gold:      #CCAC61;
  --camel:     #A88759;
  --cream:     #F5F0E8;
  --offwhite:  #FDFAF6;
  --dark:      #1E1C18;
  --mid:       #6B6860;
  --light:     #C8C4BC;
  --line:      rgba(88, 100, 87, 0.15);
  --line-lt:   rgba(88, 100, 87, 0.08);

  --ff:        'Plus Jakarta Sans', system-ui, sans-serif;
  --r-sm:      4px;
  --r-md:      8px;
  --shadow:    0 4px 32px rgba(30,28,24,.09);
  --shadow-lg: 0 12px 48px rgba(30,28,24,.14);
  --trans:     .28s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff);
  background: var(--offwhite);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button, input, select, textarea {
  font-family: var(--ff);
  font-size: inherit;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section        { padding: 100px 40px; }
.section--cream { background: var(--cream); }

/* ── UTILITY ── */
.eyebrow {
  display: block;
  font-size: .60rem;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--dark { color: var(--camel); }

h1, h2, h3, h4 {
  font-family: var(--ff);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
}

.highlight { color: var(--camel); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--dark); }

.link-arrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--camel);
  border-bottom: 1px solid var(--camel);
  padding-bottom: 2px;
  transition: color var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.link-arrow:hover { color: var(--forest); border-color: var(--forest); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--ff);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn--solid  { background: var(--gold); color: var(--dark); }
.btn--solid:hover { background: var(--camel); color: #fff; box-shadow: 0 8px 24px rgba(168,135,89,.35); }

.btn--ghost  { background: transparent; color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.4); padding-left: 0; padding-right: 0; }
.btn--ghost:hover { color: #fff; border-color: #fff; }

.btn--outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn--outline:hover { background: var(--forest); color: #fff; }

.btn--nav { background: var(--forest); color: #fff; }
.btn--nav:hover { background: var(--gold); color: var(--dark); }

.btn--full { width: 100%; text-align: center; padding: 16px; margin-top: 8px; }

/* PILLS */
.pill-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill {
  border: 1px solid rgba(204,172,97,.6);
  color: var(--gold);
  padding: 5px 15px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 4rem;
}
.img-placeholder--tall  { height: 360px; background: linear-gradient(145deg, #d4c4a8, #b8a882); border-radius: var(--r-md); }
.img-placeholder--fill  { width: 100%; height: 100%; background: linear-gradient(145deg, #e0d0b8, #c4ad8a); }
.img-placeholder__lbl {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(88,100,87,.55);
}

/* FADE-IN ANIMATION */
.fade-in          { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible  { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; gap: 32px;
  padding: 0 40px; height: 64px;
  background: #F7F0E6;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--trans);
}
.nav--scrolled { box-shadow: 0 2px 20px rgba(30,28,24,.08); }

.nav__logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 58px;
  width: auto;
  display: block;
  /* il logo ha sfondo chiaro: lo rendiamo trasparente su nav scuro */
  mix-blend-mode: multiply;
}

.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--trans);
}
.nav__links a:hover { color: var(--forest); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--forest); transition: var(--trans); }


/* ════════════════════════════════════════════════
   SEZ 1 — HERO
   ════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 64px;
}

/* Left */
.hero__left {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 64px;
  position: relative;
  overflow: hidden;
}
.hero__left::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(204,172,97,.1);
  pointer-events: none;
}
.hero__h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  font-weight: 800;
}
.hero__h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero__desc {
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,.72);
  max-width: 440px;
  margin-bottom: 44px;
}

.hero__btns { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.hero__since {
  position: absolute;
  bottom: 32px; left: 64px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}

/* Right */
.hero__right {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero__right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  background: linear-gradient(160deg, #e8ddc8, #c8b895);
  font-size: 6rem;
}
.hero__img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.hero__img-icon  { line-height: 1; }
.hero__img-label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(88,100,87,.5);
}
.hero__badge {
  position: absolute; bottom: 40px; right: 40px;
  background: var(--gold);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.hero__badge strong { display: block; font-size: 2.4rem; font-weight: 800; color: var(--dark); line-height: 1; }
.hero__badge span   { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--dark); opacity: .7; margin-top: 4px; }

/* ════════════════════════════════════════════════
   STRIP
   ════════════════════════════════════════════════ */
.strip {
  background: var(--dark);
  display: flex;
  flex-wrap: wrap;
}
.strip__item {
  flex: 1; min-width: 150px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.strip__item:last-child { border-right: none; }
.strip__num { font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.strip__lbl { font-size: .62rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 8px; }

/* ════════════════════════════════════════════════
   SEZ 2 — CHI SIAMO
   ════════════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--dark);
  margin-bottom: 28px;
}

.about__text p {
  font-size: .94rem;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 16px;
}

.about__hours { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 36px; }

.hours-grid { margin-top: 16px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-lt);
  font-size: .86rem;
  font-weight: 500;
  color: var(--mid);
}
.hours-row span:first-child { color: var(--dark); font-weight: 600; }
.hours-row--closed span { color: var(--light) !important; }

.about__visual { position: relative; }
.about__tag {
  background: var(--forest);
  padding: 32px 28px;
  margin-top: 16px;
  color: #fff;
}
.about__tag strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.about__tag strong em { font-style: italic; color: var(--gold); }
.about__tag p { font-size: .88rem; line-height: 1.75; opacity: .78; }

/* ════════════════════════════════════════════════
   SEZ 3 — PRODOTTI
   ════════════════════════════════════════════════ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pcard {
  background: var(--offwhite);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);margin: 5px;
}
.pcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.pcard__img {
  height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  overflow: hidden;
  transition: filter var(--trans);
}
.pcard:hover .pcard__img { filter: brightness(1.05); }

.pcard__img img { width: 100%; height: 100%; object-fit: cover; }

.pcard__img--1 { background: linear-gradient(145deg, #b09070, #a88759); }
.pcard__img--2 { background: linear-gradient(145deg, #7a9478, #586457); }
.pcard__img--3 { background: linear-gradient(145deg, #6b8090, #4a6880); }
.pcard__img--4 { background: linear-gradient(145deg, #ccb860, #ccac61); }

.pcard__body { padding: 24px 20px 28px; }
.pcard__cat {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pcard__body h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 10px; }
.pcard__body p  { font-size: .84rem; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }

.pcard__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ptag {
  font-size: .65rem; font-weight: 600;
  color: var(--forest);
  border: 1px solid rgba(88,100,87,.28);
  padding: 3px 10px;
  border-radius: 2px;
}

/* ════════════════════════════════════════════════
   SEZ 4 — PERCHÉ NOI
   ════════════════════════════════════════════════ */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.why__visual {
  overflow: hidden;
  position: relative;
}
.why__visual img { width: 100%; height: 100%; object-fit: cover; }

.why__text {
  background: var(--forest);
  padding: 80px 64px;
  color: #fff;
}

.why__text .eyebrow { color: var(--gold); }

.why__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 24px;
}

.why__text > p {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
}

.why__list { display: flex; flex-direction: column; gap: 24px; }
.why__list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.why__list li:last-child { border-bottom: none; padding-bottom: 0; }

.why__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.why__list strong { display: block; font-size: .95rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.why__list p      { font-size: .84rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ════════════════════════════════════════════════
   SEZ 5 — GALLERIA FILTRABILE
   ════════════════════════════════════════════════ */
.gallery h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--dark); margin-bottom: 36px; }

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--ff);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 2px solid var(--line);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: all var(--trans);
}
.filter-btn:hover          { border-color: var(--camel); color: var(--camel); }
.filter-btn--active        { background: var(--forest); border-color: var(--forest); color: #fff; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* overlay hover */
.gitem {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.gitem__overlay {
  position: absolute; inset: 0;
  background: rgba(30,28,24,0);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: background var(--trans);
  pointer-events: none;
}
.gitem:hover .gitem__overlay { background: rgba(30,28,24,.45); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox__content {
  max-width: 90vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__content img {
  max-width: 88vw; max-height: 86vh;
  border-radius: var(--r-md);
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  object-fit: contain;
}
.lightbox__placeholder {
  width: 320px; height: 320px;
  display: none; align-items: center; justify-content: center;
  font-size: 7rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.06);
}

.lightbox__close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; color: #fff;
  font-size: 1.8rem; cursor: pointer; line-height: 1;
  transition: color var(--trans);
}
.lightbox__close:hover { color: var(--gold); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 2.4rem; line-height: 1;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,.2); }

@media (max-width: 480px) {
  .gallery__grid  { grid-template-columns: 1fr; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

.gitem__img {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  transition: transform .4s ease, filter .4s ease;
}
.gitem__img img { width: 100%; height: 100%; object-fit: cover; }
.gitem__lbl {
  display: block;
  padding: 10px 4px 4px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
}
.gitem--hidden { display: none; }

/* Gallery color variants */
.gi--1 { background: linear-gradient(145deg, #b09070, #a88759); }
.gi--2 { background: linear-gradient(145deg, #7a9478, #586457); }
.gi--3 { background: linear-gradient(145deg, #6b7060, #3f4a3e); }
.gi--4 { background: linear-gradient(145deg, #ccb860, #ccac61); }
.gi--5 { background: linear-gradient(145deg, #8c7054, #6b5040); }

/* ════════════════════════════════════════════════
   SEZ 6 — RECENSIONI
   ════════════════════════════════════════════════ */
.reviews .container h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--dark); margin-bottom: 12px; }

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 52px;
}

.reviews__meta { display: flex; align-items: center; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.reviews__score { font-size: 2.4rem; font-weight: 800; color: var(--dark); line-height: 1; }
.reviews__stars { font-size: 1.2rem; color: #F5A623; letter-spacing: 2px; }
.reviews__count { font-size: .85rem; color: var(--mid); font-weight: 500; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rcard {
  background: var(--offwhite);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--r-md);
  transition: box-shadow var(--trans);
}
.rcard:hover { box-shadow: var(--shadow); }

.rcard__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rcard__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
}
.rcard__avatar--b { background: var(--camel); }
.rcard__avatar--c { background: var(--gold); color: var(--dark); }

.rcard__top strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.rcard__stars { font-size: .85rem; color: #F5A623; letter-spacing: 1px; margin-top: 2px; }
.rcard__google { width: 18px; margin-left: auto; flex-shrink: 0; }

.rcard p { font-size: .88rem; line-height: 1.75; color: var(--mid); }

.reviews__note {
  margin-top: 32px;
  font-size: .8rem;
  color: var(--light);
  text-align: center;
}
.reviews__note a { color: var(--camel); border-bottom: 1px solid rgba(168,135,89,.4); }
.reviews__note a:hover { color: var(--forest); }

/* ════════════════════════════════════════════════
   SEZ 7 — CONTATTI
   ════════════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact__info h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--dark); margin-bottom: 16px; }
.contact__info > p { font-size: .9rem; line-height: 1.85; color: var(--mid); margin-bottom: 40px; }

.cinfo { display: flex; flex-direction: column; gap: 0; }
.cinfo__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-lt);
}
.cinfo__item:first-child { padding-top: 0; }
.cinfo__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; width: 30px; }
.cinfo__item strong { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.cinfo__item p, .cinfo__item a { font-size: .9rem; color: var(--mid); line-height: 1.7; }
.cinfo__item a:hover { color: var(--forest); }

/* FORM */
.cform {
  background: #fff;
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.cform .eyebrow { margin-bottom: 28px; }

.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.fg { margin-bottom: 20px; }
.fg label {
  display: block;
  font-size: .65rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--forest);
  margin-bottom: 8px;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  font-size: .92rem; font-weight: 400;
  color: var(--dark);
  outline: none;
  transition: border-color var(--trans);
  border-radius: 0;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; line-height: 1.65; }
.fg select    { appearance: none; cursor: pointer; }

/* ════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
/* pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.3); opacity: 0;  }
  100% { transform: scale(1.3); opacity: 0;  }
}
/* tooltip */
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: #fff;
  font-family: var(--ff);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity var(--trans), transform var(--trans);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ════════════════════════════════════════════════
   SEZ 8 — MAPPA
   ════════════════════════════════════════════════ */
.map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(20%) contrast(1.02);
}

/* ════════════════════════════════════════════════
   SEZ 9 — FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(204,172,97,.18);
  padding: 48px 40px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer__logo {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold);
}
.footer__info {
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  line-height: 1.9;
  text-align: center;
}
.footer__info a { color: rgba(255,255,255,.38); }
.footer__info a:hover, .footer__social a:hover { color: var(--gold); }
.footer__social { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.footer__social a { color: rgba(204,172,97,.65); transition: color var(--trans); }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid  { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .nav { padding: 0 24px; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(253,250,246,.98);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  .nav__links.nav__links--open { display: flex; }
  .nav__links a { font-size: .8rem; padding: 10px 0; border-bottom: 1px solid var(--line-lt); }
  .nav__burger { display: flex; }
  .btn--nav { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 42px 4px; }
  .container { padding: 0 10px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left  { padding: 50px 20px 50px; }
  .hero__right { height: 340px; }
  .hero__since { left: 28px; }

  .about__grid   { grid-template-columns: 1fr; gap: 40px; }
  .why           { grid-template-columns: 1fr; }
  .why__visual   { height: 280px; }
  .why__text     { padding: 60px 32px; }

  .products__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid  { grid-template-columns: 1fr 1fr; }
  .reviews__grid  { grid-template-columns: 1fr; }

  .contact__grid  { grid-template-columns: 1fr; gap: 40px; }
  .cform__row     { grid-template-columns: 1fr; }
  .cform          { padding: 32px 24px; }

  .section-header { flex-direction: column; align-items: flex-start; }
  .footer__inner  { flex-direction: column; text-align: center; }
  .footer__info   { text-align: center; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 2.4rem; }
  .products__grid { grid-template-columns: 1fr; }
  .gallery__grid  { grid-template-columns: 1fr; }
  .strip__item    { min-width: 50%; }
  .hero__btns     { flex-direction: column; align-items: flex-start; }
}
