/* Sos Interventi — stili non critici (caricati async) */
:root {
  --forest: #1b3a2f;
  --forest-deep: #122820;
  --cream: #f3ede4;
  --cream-2: #ebe4d8;
  --rust: #c45c26;
  --rust-deep: #a3481c;
  --ink: #1f1a17;
  --muted: #5a514a;
  --line: #d9d0c3;
  --white: #fffcf7;
  --focus: #1b3a2f;
  --radius: 4px;
  --radius-cta: 4px 4px 4px 22px;
  --max: 68rem;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--rust); }
a:hover { color: var(--rust-deep); }

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: .6rem 1rem;
  z-index: 100;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ——— Header ——— */
/* Default = dark (conversion pages). Cream only if a page opts out. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #0f1f18;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .85rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -.02em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.brand:hover { color: var(--forest-deep); }

.brand__mark {
  display: inline-block;
  width: .55rem;
  height: .55rem;
  background: var(--rust);
  border-radius: 50%;
  margin-right: .35rem;
  vertical-align: middle;
  transform: translateY(-.1rem);
}

.brand--logo {
  line-height: 0;
  background: transparent !important;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
  border-radius: 2px;
}

.brand--logo:hover,
.brand--logo:focus,
.brand--logo:active {
  opacity: 1;
  outline: none;
  box-shadow: none;
  text-decoration: none !important;
}

.brand--logo:focus-visible {
  outline: 2px solid rgba(240, 201, 168, .55);
  outline-offset: 4px;
}

.brand--logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 190px;
  background: transparent;
  mix-blend-mode: normal;
  filter: none;
  image-rendering: auto;
  pointer-events: none; /* evita artefatti hover pe imagine */
}

.footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: .75rem;
  text-decoration: none;
  background: transparent;
}

.footer-logo img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 200px;
  background: transparent;
  mix-blend-mode: multiply;
}

.footer-logo:hover { opacity: .92; }

.nav-tel {
  font-weight: 600;
  font-size: .95rem;
  color: #f0c9a8;
  text-decoration: none;
  border-bottom: 2px solid var(--rust);
  padding-bottom: 1px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.nav-tel:hover { color: #fff; border-color: #e8a878; }
.nav-tel:focus-visible {
  outline: 2px solid rgba(240, 201, 168, .55);
  outline-offset: 3px;
}

.nav-links {
  display: none;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #d8e0da;
  font-size: .9rem;
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
}
.nav-links a:hover { color: #f0c9a8; text-decoration: none; }
.nav-links a:focus-visible {
  outline: 2px solid rgba(240, 201, 168, .55);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav-links a[aria-current="page"] { color: #fff; }

/* Header: niente outline arancione “strano” dal :focus-visible globale */
.site-header a:focus:not(:focus-visible) {
  outline: none;
}
@media (min-width: 720px) {
  .nav-links { display: flex; }
  .site-header__inner { gap: 1.5rem; }
  .header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
  }
}

.header-right { margin-left: auto; }

/* ——— Layout ——— */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.section {
  padding: 3rem 0;
}

.section--tight { padding: 2.25rem 0; }

.section__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 .65rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 .75rem;
  letter-spacing: -.02em;
  max-width: 22ch;
}

.section__lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 40ch;
  font-size: 1.05rem;
}

/* ——— Hero ——— */
.hero {
  padding: 2rem 0 2.75rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(196, 92, 38, .07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 10%, rgba(27, 58, 47, .06), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 2.5rem;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.15rem, 6.2vw, 3.45rem);
  line-height: 1.08;
  color: var(--forest);
  margin: 0 0 1rem;
  letter-spacing: -.025em;
  max-width: 15ch;
}

.hero__lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.18rem);
  max-width: 38ch;
}

.phone-block {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1.15rem 1.25rem 1.25rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-cta);
  max-width: 26rem;
  box-shadow: 0 18px 40px rgba(18, 40, 32, .18);
}

.phone-block__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .78;
}

.phone-block__tel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  color: #fff;
  text-decoration: none;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.phone-block__tel:hover { color: #fff; opacity: .92; }

.phone-block__wa {
  color: #f0c9a8;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
}
.phone-block__wa:hover { color: #fff; }

.hero__visual {
  justify-self: center;
  width: min(100%, 380px);
}

.hero__visual svg {
  width: 100%;
  filter: drop-shadow(0 16px 28px rgba(27, 58, 47, .12));
}

/* ——— Service split (home) ——— */
.split {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

@media (min-width: 720px) {
  .split { grid-template-columns: 1fr 1fr; }
}

.split__panel {
  background: var(--white);
  padding: 1.75rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-decoration: none;
  color: inherit;
  transition: background .2s ease;
}
.split__panel:hover { background: var(--cream-2); color: inherit; }

.split__panel--accent {
  background: var(--forest);
  color: var(--cream);
}
.split__panel--accent:hover {
  background: var(--forest-deep);
  color: var(--cream);
}
.split__panel--accent .split__title { color: #fff; }
.split__panel--accent .split__text { color: rgba(243, 237, 228, .82); }
.split__panel--accent .split__go { color: #f0c9a8; }

.split__kicker {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rust);
}
.split__panel--accent .split__kicker { color: #e8a878; }

.split__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0;
  letter-spacing: -.02em;
}

.split__text {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  flex: 1;
}

.split__go {
  font-weight: 600;
  font-size: .92rem;
  color: var(--rust);
  margin-top: .35rem;
}

/* ——— Situations ——— */
.situations {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .75rem;
  max-width: 40rem;
}

.situations li {
  padding: .85rem 0 .85rem 1rem;
  border-left: 3px solid var(--rust);
  background: transparent;
}

.situations strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: .15rem;
  font-weight: 700;
}

.situations span {
  color: var(--muted);
  font-size: .95rem;
}

/* ——— Steps ——— */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.steps li {
  counter-increment: step;
  padding-top: .25rem;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rust);
  margin-bottom: .4rem;
  letter-spacing: .04em;
}

.steps h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  margin: 0 0 .35rem;
  font-weight: 700;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

/* ——— Band CTA ——— */
.band {
  background: var(--forest);
  color: var(--cream);
  padding: 2.5rem 0;
  margin: 1rem 0 0;
}

.band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin: 0 0 .5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  max-width: 18ch;
}

.band p {
  margin: 0 0 1.25rem;
  opacity: .85;
  max-width: 36ch;
}

.band .btn-call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  background: var(--rust);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  padding: .85rem 1.25rem 1rem;
  border-radius: var(--radius-cta);
  letter-spacing: -.02em;
  border: none;
}
.band .btn-call:hover { background: var(--rust-deep); color: #fff; }
.band .btn-call small {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

/* ——— Service page layout (base) ——— */
.service-hero {
  padding: 2rem 0 1.5rem;
}

.service-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .service-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
  }
}

.service-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.1rem);
  line-height: 1.1;
  color: var(--forest);
  margin: 0 0 1rem;
  letter-spacing: -.025em;
  max-width: 14ch;
}

/* ——— IDRAULICO / FABBRO: impatto, non “foglio A4” ——— */
.page-idraulico .site-header .brand:hover { color: #fff; }
.page-idraulico .nav-links a:hover { color: #f0c9a8; }

/* Hero full-bleed — come home: copy centrato, SVG dietro */
.idra-hero {
  position: relative;
  min-height: min(78vh, 640px);
  background: #0f1f18;
  color: #f3ede4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.idra-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  z-index: 0;
}

.idra-hero__bg {
  display: none !important;
}

/* SVG = watermark dietro, come logo home */
.idra-hero__visual {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  width: min(96vw, 480px);
  opacity: .34;
  animation: sos-hero-float 7s ease-in-out infinite;
  will-change: transform;
}

.idra-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, .35)) brightness(1.15);
}

@media (min-width: 780px) {
  .idra-hero {
    min-height: min(86vh, 720px);
  }
  .idra-hero__visual {
    width: min(52vw, 440px);
    opacity: .22;
  }
}

@keyframes sos-hero-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -54%) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .idra-hero__visual { animation: none; }
}

.idra-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1.15rem 3.25rem;
  display: block;
}

.idra-hero__copy {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 28rem;
  text-align: center;
}

.idra-hero__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
  color: #e8a878;
  margin: 0 0 .85rem;
  padding: 0 0 .2rem;
  border: none;
  border-bottom: 2px solid rgba(196, 92, 38, .7);
  border-radius: 0;
}

.idra-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 8.5vw, 4.1rem);
  line-height: .96;
  margin: 0 auto 1.35rem;
  max-width: 12ch;
  letter-spacing: -.03em;
  color: #fff;
  text-align: center;
}

.idra-hero .idra-cta {
  justify-content: center;
}

.idra-wrap {
  max-width: 72rem;
}

/* pulse leggero sul dial — conversione senza look “ads spam” */
@keyframes sos-dial-pulse {
  0%, 100% { box-shadow: 0 14px 36px rgba(0,0,0,.32); }
  50% { box-shadow: 0 14px 36px rgba(196,92,38,.45), 0 0 0 6px rgba(196,92,38,.18); }
}
.idra-hero .idra-dial,
.home-hero .idra-dial {
  animation: sos-dial-pulse 2.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .idra-hero .idra-dial,
  .home-hero .idra-dial { animation: none; }
}

.idra-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: .65rem;
  margin-top: .15rem;
}

.idra-dial {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .2rem;
  text-decoration: none;
  background: var(--rust);
  color: #fff;
  padding: 1.05rem 1.6rem 1.2rem;
  border-radius: 4px 4px 4px 28px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
}
.idra-dial:hover { background: #a3481c; color: #fff; }
.idra-dial small {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
}
.idra-dial strong {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5.5vw, 2.3rem);
  line-height: 1;
  letter-spacing: -.02em;
}

.idra-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0 1.1rem;
  border-radius: 4px 28px 4px 4px;
  background: #25D366;
  text-decoration: none;
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
}
.idra-wa-btn:hover { background: #1ebe57; }
.idra-wa-btn img { width: 30px; height: 30px; display: block; }

/* tile numbers: meno “template AI” */
.idra-tile__k {
  font-size: .75rem !important;
  font-family: var(--font-body) !important;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: .7;
  padding-top: .35rem !important;
}

.idra-flash {
  background: var(--rust);
  color: #fff;
  overflow: hidden;
  padding: .85rem 0;
  border-top: 1px solid rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.idra-flash__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: idra-marquee 28s linear infinite;
  white-space: nowrap;
  padding-left: 1rem;
}

@keyframes idra-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .idra-flash__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

.idra-problems {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(196,92,38,.1), transparent 55%),
    var(--cream);
}

.idra-problems__head {
  margin-bottom: 1.75rem;
}

.idra-problems__head .section__title {
  max-width: 12ch;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.idra-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .idra-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .idra-grid--full { grid-template-columns: repeat(3, 1fr); }
}

.idra-cta--center {
  justify-content: center;
}

.idra-midcta {
  background: var(--rust);
  color: #fff;
  padding: 2.25rem 0;
}

.idra-midcta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.idra-midcta__label {
  margin: 0 0 .35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
}

.idra-midcta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 0;
  line-height: 1.05;
  max-width: 14ch;
}

.idra-midcta .idra-dial {
  box-shadow: 0 16px 36px rgba(0,0,0,.25);
}

.qs-fit {
  padding: 2.4rem 0 2.1rem;
  background: #fff;
  border-bottom: 1px solid #d9d0c3;
}
.qs-fit h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin: 0 0 .7rem;
  line-height: 1.15;
  max-width: 22ch;
}
.qs-fit p,
.qs-fit li {
  max-width: 40rem;
  color: #3d3631;
  margin: 0 0 .75rem;
}
.qs-fit ul {
  margin: 0;
  padding-left: 1.15rem;
}
.qs-fit li { margin: 0 0 .4rem; }
.qs-fit a { color: var(--forest); }

.idra-tips {
  padding: 3.25rem 0;
  background: var(--cream);
}

.idra-tips__head {
  margin-bottom: 1.5rem;
}

.idra-tips__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--forest);
  margin: 0;
}

.idra-tips__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .idra-tips__grid { grid-template-columns: repeat(3, 1fr); }
}

.idra-tips__grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rust);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.2rem 1.35rem;
}

.idra-tips__grid span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rust);
  display: block;
  margin-bottom: .5rem;
  line-height: 1;
}

.idra-tips__grid h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin: 0 0 .35rem;
}

.idra-tips__grid p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.idra-how {
  padding: 3.75rem 0 3.5rem;
  background: var(--forest-deep);
  color: var(--cream);
}

.idra-how__head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.idra-how__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin: 0 0 .75rem;
  line-height: 1.05;
}

.idra-how__lead {
  margin: 0;
  color: rgba(243,237,228,.75);
  font-size: 1.05rem;
  max-width: 34ch;
}

.idra-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .idra-how__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.idra-how__steps li {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 3px solid var(--rust);
  border-radius: 4px;
  padding: 1.35rem 1.25rem 1.4rem;
  display: grid;
  gap: .85rem;
}

.idra-how__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #e8a878;
  line-height: 1;
  letter-spacing: .04em;
}

.idra-how__steps h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 .4rem;
}

.idra-how__steps p {
  margin: 0;
  color: rgba(243,237,228,.72);
  font-size: .95rem;
}

.idra-how__steps a {
  color: #e8a878;
  font-weight: 600;
}

/* FAQ — colonne CSS: le card NON si allungano con la sorella aperta */
.idra-faq {
  position: relative;
  padding: 3.75rem 0 4rem;
  background: #101c16;
  color: var(--cream);
  overflow: hidden;
}

.idra-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.idra-faq__bg {
  position: absolute;
  right: -6%;
  bottom: -10%;
  width: min(38vw, 320px);
  opacity: .07;
  pointer-events: none;
  filter: brightness(1.4);
}

.idra-faq__bg img {
  width: 100%;
  height: auto;
  display: block;
}

.idra-faq__head {
  position: relative;
  z-index: 1;
  margin-bottom: 1.75rem;
  max-width: 28rem;
}

.idra-faq__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.7rem);
  color: #fff;
  margin: 0 0 .55rem;
  line-height: 1.08;
}

.idra-faq__head p {
  margin: 0;
  color: rgba(243,237,228,.7);
}

/* FAQ: una colonna, niente stretch, apertura pulita */
.idra-faq__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 40rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.idra-faq__card {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  min-height: 0;
  align-self: stretch;
  box-sizing: border-box;
}

.idra-faq__card summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  padding: 1.15rem 2.75rem 1.15rem 0;
  position: relative;
  line-height: 1.35;
  transition: color .15s ease;
}

.idra-faq__card summary::-webkit-details-marker { display: none; }
.idra-faq__card summary::marker { content: ""; }

.idra-faq__card summary:hover { color: #f0c9a8; }

.idra-faq__card summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #e8a878;
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1;
  width: 1.5rem;
  text-align: center;
}

.idra-faq__card[open] summary {
  color: #f0c9a8;
  padding-bottom: .55rem;
}

.idra-faq__card[open] summary::after { content: "–"; }

.idra-faq__card[open] {
  background: transparent;
  border-bottom-color: rgba(196,92,38,.35);
}

.idra-faq__body {
  overflow: hidden;
  padding: 0 2.75rem .15rem 0;
}

.idra-faq__card p {
  margin: 0;
  padding: 0 0 .95rem;
  color: rgba(243,237,228,.78);
  font-size: .95rem;
  max-width: 38ch;
  line-height: 1.5;
}

.idra-faq__card a {
  color: #e8a878;
  font-weight: 600;
}

.idra-faq__cta {
  margin-top: .45rem !important;
  padding-top: 0 !important;
  padding-bottom: 1.15rem !important;
  font-weight: 700;
}

.idra-faq__cta a {
  border-bottom: 1px solid rgba(232,168,120,.5);
}

.idra-final {
  padding: 4rem 0 4.5rem;
  background:
    linear-gradient(180deg, rgba(196,92,38,.12), transparent 40%),
    var(--cream-2);
  text-align: center;
}

.idra-final__logo {
  display: block;
  height: 72px;
  width: auto;
  margin: 0 auto 1rem;
  mix-blend-mode: multiply;
}

.idra-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .85rem;
  row-gap: .2rem;
  padding: 1.1rem 1rem 1.05rem;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 6.5rem;
  align-content: start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

@media (min-width: 640px) {
  .idra-tile {
    column-gap: 1rem;
    padding: 1.35rem 1.25rem 1.25rem;
    min-height: 7.5rem;
  }
}

.idra-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(27, 58, 47, .12);
  border-color: var(--forest);
  color: inherit;
}

.idra-tile__k {
  grid-row: 1 / span 3;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rust);
  line-height: 1;
  padding-top: .15rem;
}

.idra-tile strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest);
  font-weight: 700;
}

.idra-tile span {
  color: var(--muted);
  font-size: .92rem;
}

.idra-tile em {
  font-style: normal;
  font-weight: 700;
  color: var(--rust);
  font-size: .9rem;
  margin-top: .55rem;
}

.idra-tile--hot {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.idra-tile--hot strong { color: #fff; }
.idra-tile--hot span { color: rgba(243,237,228,.75); }
.idra-tile--hot .idra-tile__k,
.idra-tile--hot em { color: #e8a878; }
.idra-tile--hot:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--cream);
}

.idra-acts {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 3.5rem 0;
}

.idra-acts__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .idra-acts__grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 3rem;
  }
}

.idra-acts h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  max-width: 10ch;
  color: #fff;
}

.idra-acts__call {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  color: #e8a878;
  text-decoration: none;
  border-bottom: 3px solid var(--rust);
}

.idra-acts__call:hover { color: #fff; }

.idra-acts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.15);
}

.idra-acts__list li {
  display: grid;
  gap: .25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.idra-acts__list strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
}

.idra-acts__list span {
  color: rgba(243,237,228,.72);
  font-size: .95rem;
  max-width: 36ch;
}

.idra-final__label {
  margin: 0 0 .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust);
}

.idra-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  color: var(--forest);
  margin: 0 auto 1.25rem;
  max-width: 14ch;
  line-height: 1.08;
}

.idra-final__tel {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 9vw, 4rem);
  color: var(--rust);
  text-decoration: none;
  letter-spacing: -.02em;
  line-height: 1;
  border-bottom: 4px solid var(--rust);
  margin-bottom: 1rem;
}

.idra-final__tel:hover { color: var(--rust-deep); border-color: var(--rust-deep); }

.idra-final__sub {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.idra-final__sub a {
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
}
.idra-final__sub a:hover { color: var(--rust); }

/* ——— HOME: impatto full-bleed (solo .page-home) ——— */

.page-home .brand--logo img {
  height: 52px;
  width: auto;
  max-width: 190px;
  filter: none;
}

.home-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #f3ede4;
  background: #0f1f18;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1.15rem 3.25rem;
}

.home-hero__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
  color: #e8a878;
  margin: 0 0 1rem;
  padding: 0 0 .2rem;
  border: none;
  border-bottom: 2px solid rgba(196,92,38,.7);
}

.home-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 4.2rem);
  line-height: .95;
  color: #fff;
  margin: 0 auto 1rem;
  max-width: 14ch;
  letter-spacing: -.03em;
}

.home-hero__lead {
  margin: 0 auto 1.75rem;
  color: rgba(243,237,228,.78);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  max-width: 30ch;
}

.home-dial {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: var(--rust);
  color: #fff;
  padding: 1.05rem 1.6rem 1.2rem;
  border-radius: 4px 4px 4px 28px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
}

.home-dial:hover { background: var(--rust-deep); color: #fff; }

.home-dial small {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
}

.home-dial strong {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.02em;
}

.home-hero__wa {
  display: inline-block;
  margin-top: 1.1rem;
  color: #f0c9a8;
  font-weight: 600;
}

.home-hero__wa:hover { color: #fff; }

.home-flash {
  background: var(--rust);
  color: #fff;
  overflow: hidden;
  padding: .85rem 0;
}

.home-flash__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: idra-marquee 26s linear infinite;
  white-space: nowrap;
  padding-left: 1rem;
}

.home-wide {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.home-services {
  padding: 3.5rem 0 3rem;
  background: var(--cream);
}

.home-services__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.home-services__head .section__title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.home-services__head p {
  margin: 0;
  color: var(--muted);
  max-width: 28ch;
}

.home-split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 780px) {
  .home-split { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

.home-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 6px;
  transition: transform .2s ease;
}

.home-card:hover { transform: translateY(-4px); color: inherit; }

.home-card--fabbro {
  background: var(--forest);
  color: var(--cream);
}

.home-card--idra {
  background: #122820;
  color: var(--cream);
  border: 1px solid rgba(196,92,38,.35);
}

.home-card__art {
  position: absolute;
  right: -6%;
  bottom: -12%;
  width: min(48%, 160px);
  opacity: .2;
  pointer-events: none;
  max-height: 55%;
  overflow: hidden;
}

.home-card__art img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  object-position: right bottom;
  display: block;
}

@media (min-width: 560px) {
  .home-card__art {
    width: min(55%, 220px);
    right: -8%;
    bottom: -18%;
    max-height: none;
    opacity: .22;
  }
  .home-card__art img { max-height: none; }
}

.home-card__kicker {
  position: relative;
  z-index: 1;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #e8a878;
  margin: 0 0 .75rem;
}

.home-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 .65rem;
  color: #fff;
  line-height: 1;
}

.home-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(243,237,228,.78);
  max-width: 26ch;
  flex: 1;
}

.home-card em {
  position: relative;
  z-index: 1;
  font-style: normal;
  font-weight: 700;
  color: #e8a878;
  margin-top: 1.25rem;
}

/* ——— Home Contatto immediato (mobile-first, call-first) ——— */
.home-contact {
  padding: 2.5rem 0 2.75rem;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(196, 92, 38, .1), transparent 55%),
    var(--cream);
  color: var(--ink);
}

@media (min-width: 720px) {
  .home-contact { padding: 3.25rem 0 3.5rem; }
}

.home-contact__top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 780px) {
  .home-contact__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.75rem;
  }
}

.home-contact__intro .section__eyebrow { margin: 0 0 .4rem; }

.home-contact__intro .section__title {
  margin: 0 0 .45rem;
  max-width: 14ch;
  font-size: clamp(1.85rem, 5vw, 2.55rem);
  color: var(--forest);
}

.home-contact__lead {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  max-width: 34ch;
  line-height: 1.45;
}

.home-contact__dial .idra-dial {
  width: 100%;
  box-shadow: 0 12px 28px rgba(196, 92, 38, .22);
}

@media (min-width: 780px) {
  .home-contact__dial .idra-dial {
    width: auto;
    min-width: 17rem;
  }
}

.home-contact__form {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.home-contact__legend {
  margin: 0 0 .85rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-contact__list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}

@media (min-width: 560px) {
  .home-contact__list {
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }
}

.home-contact__list li { margin: 0; min-width: 0; }

.home-contact__list label {
  display: block;
  margin: 0;
  cursor: pointer;
}

.home-contact__list input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.home-contact__card {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-height: 4.5rem;
  padding: .95rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.home-contact__card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
}

.home-contact__card span {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.35;
}

.home-contact__list label:hover .home-contact__card {
  border-color: rgba(196, 92, 38, .45);
}

.home-contact__list label:has(input:checked) .home-contact__card,
.home-contact__list input:focus-visible + .home-contact__card {
  border-color: var(--rust);
  background: rgba(196, 92, 38, .06);
  box-shadow: inset 3px 0 0 var(--rust);
}

.home-contact__list input:focus-visible + .home-contact__card {
  outline: 2px solid rgba(196, 92, 38, .35);
  outline-offset: 2px;
}

.home-contact__extra { margin: 0 0 1rem; }

.home-contact__extra label {
  display: block;
  margin: 0 0 .35rem;
  font-size: .82rem;
  color: var(--muted);
}

.home-contact__extra textarea {
  display: block;
  width: 100%;
  min-height: 3rem;
  resize: vertical;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
}

.home-contact__extra textarea:focus {
  outline: none;
  border-color: var(--rust);
}

.home-contact__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}

@media (min-width: 480px) {
  .home-contact__actions {
    grid-template-columns: 1.25fr 1fr;
  }
}

.home-contact__call,
.home-contact__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: .95rem 1rem;
  border-radius: 2px;
  border: 1px solid transparent;
  text-align: center;
}

.home-contact__call {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}
.home-contact__call:hover { background: #a3481c; color: #fff; }

.home-contact__wa {
  background: #fff;
  color: #128c7e;
  border-color: rgba(37, 211, 102, .55);
}
.home-contact__wa:hover {
  background: rgba(37, 211, 102, .1);
  color: #0b6b5a;
}

.home-contact__wa.is-disabled {
  opacity: .4;
  pointer-events: none;
}

.home-contact__note {
  margin: .75rem 0 0;
  font-size: .82rem;
  color: var(--muted);
}
.home-hero__logo {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: min(96vw, 520px);
  opacity: .34;
  pointer-events: none;
  z-index: 0;
  animation: sos-logo-breathe 5.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.home-hero__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.28) contrast(1.06);
}

@media (min-width: 720px) {
  .home-hero__logo {
    width: min(58vw, 440px);
    opacity: .2;
  }
}

@keyframes sos-logo-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); filter: brightness(1); }
  50% { transform: translate(-50%, -52%) scale(1.04); filter: brightness(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__logo { animation: none; }
}

.home-faq-band {
  padding: 3.25rem 0 3.5rem;
  background: var(--cream);
}

.home-faq-band .faq {
  max-width: 52rem;
}

.home-final {
  padding: 4rem 0;
  background: var(--forest-deep);
  color: var(--cream);
  text-align: center;
}

.home-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: #fff;
  margin: 0 auto 1.25rem;
  max-width: 16ch;
  line-height: 1.05;
}

.home-final__tel {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  color: #e8a878;
  text-decoration: none;
  border-bottom: 4px solid var(--rust);
  line-height: 1;
  margin-bottom: 1rem;
}

.home-final__tel:hover { color: #fff; }

.home-final__sub a {
  color: #f0c9a8;
  font-weight: 600;
}

.prose {
  max-width: 40rem;
}

.prose p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.prose p:last-child { margin-bottom: 0; }

.detail-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.detail-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: .25rem;
}

@media (min-width: 560px) {
  .detail-list li {
    grid-template-columns: 10rem 1fr;
    gap: 1rem;
    align-items: baseline;
  }
}

.detail-list strong {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 1.05rem;
}

.detail-list span { color: var(--muted); font-size: .95rem; }

.related {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  background: var(--cream-2);
  border-left: 3px solid var(--forest);
  border-radius: 0 4px 4px 0;
}

.related p { margin: 0 0 .5rem; color: var(--muted); font-size: .95rem; }
.related a { font-weight: 600; }

/* ——— Footer (Solomon-style layout, brand Sos) ——— */
.site-footer {
  padding: 0;
  border-top: none;
  background: #0c1a14;
  color: rgba(243, 237, 228, .78);
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding: 2.75rem 1.15rem 2.25rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .footer-main {
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem 2.5rem;
    padding: 3.25rem 1.25rem 2.5rem;
  }
}

@media (min-width: 960px) {
  .footer-main {
    grid-template-columns: 1.45fr .85fr .95fr 1.15fr;
    gap: 2rem;
  }
}

.footer-brand p {
  margin: .85rem 0 0;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(243, 237, 228, .7);
  max-width: 34ch;
}

.footer-brand strong { color: #fff; font-weight: 600; }

.footer-cities {
  margin: .85rem 0 0 !important;
  font-size: .82rem !important;
  line-height: 1.55 !important;
  color: rgba(243, 237, 228, .55) !important;
  max-width: 42ch !important;
}

.site-footer .footer-logo {
  margin-bottom: 0;
}

.site-footer .footer-logo img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 180px;
  background: transparent;
  mix-blend-mode: normal;
  filter: brightness(1.2);
}

.site-footer h2 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 .9rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.site-footer li,
.site-footer p {
  margin: 0;
  font-size: .92rem;
  color: rgba(243, 237, 228, .68);
}

.site-footer a {
  color: rgba(243, 237, 228, .85);
  text-decoration: none;
  font-weight: 500;
}
.site-footer a:hover { color: #e8a878; }

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

.footer-meta {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: rgba(243, 237, 228, .68);
  font-size: .92rem;
}

.footer-ico {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  color: rgba(243, 237, 228, .55);
}

.footer-tel {
  color: #f0c9a8 !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: .01em;
}
.footer-tel:hover { color: #fff !important; }

.footer-wa {
  color: #25d366 !important;
  font-weight: 700 !important;
}
.footer-wa:hover { color: #4ae07f !important; }

.footer-wa .footer-ico { color: #25d366; }
.footer-tel .footer-ico { color: #f0c9a8; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.1rem 1.15rem calc(1.25rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, .1);
  max-width: 72rem;
  margin: 0 auto;
  font-size: .78rem;
  color: rgba(243, 237, 228, .45);
}

@media (min-width: 720px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem 1.35rem;
  }
}

.footer-bottom p { margin: 0; color: inherit; font-size: inherit; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.25rem;
}

.footer-legal a,
.footer-legal button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: rgba(243, 237, 228, .55);
  cursor: pointer;
  text-decoration: none;
}
.footer-legal a:hover,
.footer-legal button:hover { color: #e8a878; }

.footer-credit {
  margin: 0;
  padding: 0 1.15rem 1.35rem;
  text-align: center;
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(243, 237, 228, .38);
}
.footer-credit a {
  color: rgba(243, 237, 228, .55);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 168, 120, .35);
}
.footer-credit a:hover {
  color: #e8a878;
  border-bottom-color: #e8a878;
}

/* space for floating Chiama on mobile */
@media (max-width: 719px) {
  .site-footer { padding-bottom: 5.5rem; }
}

/* ——— Sticky Chiama (mobile, Solomon-style pill) ——— */
.sticky-call {
  position: fixed;
  left: auto;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 45;
  padding: 0;
  background: transparent;
  border: none;
  display: flex;
  gap: .55rem;
  width: auto;
  pointer-events: none;
}

@media (min-width: 720px) {
  .sticky-call { display: none; }
}

.sticky-call a {
  pointer-events: auto;
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  font-size: .95rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
}

.sticky-call__tel {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #e8b84a;
  color: #0c1a14;
  padding: .95rem 1.35rem;
}
.sticky-call__tel:hover { background: #f0c968; color: #0c1a14; }

.sticky-call__tel svg {
  width: 18px;
  height: 18px;
  display: block;
}

.sticky-call__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 999px;
}
.sticky-call__wa:hover { background: #1ebe57; color: #fff; }
.sticky-call__wa img {
  width: 24px;
  height: 24px;
  display: block;
}

.legal-note {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* ——— Cookie banner ——— */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 1rem;
  pointer-events: none;
}

.cookie[hidden] { display: none !important; }

.cookie__panel {
  pointer-events: auto;
  max-width: 36rem;
  margin: 0 auto;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem 1.2rem 1.2rem;
  box-shadow: 0 16px 48px rgba(31, 26, 23, .18);
}

.cookie__panel h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 .5rem;
  color: var(--forest);
}

.cookie__panel p {
  margin: 0 0 1rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}

.cookie__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

.cookie__actions button {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  padding: .75rem .85rem;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid var(--forest);
}

.cookie__accept {
  background: var(--forest);
  color: #fff;
}

.cookie__refuse {
  background: var(--white);
  color: var(--forest);
}

.cookie__actions button:hover { opacity: .92; }

/* sticky call stays visible with cookie — callability > banner */
body.cookie-open .sticky-call { display: flex; }

@media (min-width: 720px) {
  .cookie {
    left: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    width: min(24rem, calc(100% - 2rem));
    padding: 0;
  }
}

/* ——— Trust strip ——— */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.35rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 40rem;
}

.trust-strip li {
  font-size: .88rem;
  color: var(--muted);
  padding-left: .85rem;
  border-left: 2px solid var(--rust);
}

.trust-strip strong {
  color: var(--forest);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .35rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.1rem;
  border-radius: 4px;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}
.btn-primary:hover { background: var(--rust-deep); color: #fff; border-color: var(--rust-deep); }

.btn-secondary {
  background: transparent;
  color: #f0c9a8;
  border-color: rgba(240, 201, 168, .45);
}
.btn-secondary:hover { color: #fff; border-color: #fff; }

.phone-block .hero-actions { margin-top: .5rem; }

/* ——— Problem picker ——— */
.picker {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.35rem 1.25rem 1.5rem;
  max-width: 44rem;
}

.picker__legend {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  font-weight: 700;
  margin: 0 0 1rem;
  padding: 0;
}

.picker__list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: .5rem;
}

.picker__list label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  background: var(--cream);
  transition: border-color .15s ease, background .15s ease;
}

.picker__list label:hover {
  border-color: var(--forest);
}

.picker__list input {
  margin-top: .2rem;
  accent-color: var(--forest);
  flex-shrink: 0;
}

.picker__list input:checked + .picker__text strong {
  color: var(--rust);
}

.picker__list label:has(input:checked) {
  border-color: var(--forest);
  background: #fff;
  box-shadow: inset 3px 0 0 var(--rust);
}

.picker__text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.picker__text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: 700;
}

.picker__text span {
  font-size: .88rem;
  color: var(--muted);
}

.picker__extra {
  margin: 0 0 1rem;
}

.picker__extra label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .4rem;
}

.picker__extra textarea {
  width: 100%;
  min-height: 4.5rem;
  resize: vertical;
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
}

.picker__extra textarea:focus {
  outline: 2px solid var(--rust);
  outline-offset: 1px;
  border-color: var(--rust);
}

.picker__preview-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .4rem;
}

.picker__preview {
  margin: 0 0 1rem;
  padding: .85rem 1rem;
  background: var(--forest);
  color: rgba(243, 237, 228, .92);
  font-size: .9rem;
  line-height: 1.45;
  white-space: pre-wrap;
  border-radius: 4px 4px 4px 16px;
  min-height: 4.5rem;
}

.picker__actions {
  display: grid;
  gap: .65rem;
}

@media (min-width: 520px) {
  .picker__actions {
    grid-template-columns: 1.2fr 1fr;
  }
}

.picker__actions a {
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  padding: .95rem 1rem;
  border-radius: 4px;
  font-size: 1rem;
}

.picker__call {
  background: var(--rust);
  color: #fff;
}
.picker__call:hover { background: var(--rust-deep); color: #fff; }

.picker__wa {
  background: var(--forest);
  color: #fff;
}
.picker__wa:hover { background: var(--forest-deep); color: #fff; }

.picker__wa.is-disabled {
  opacity: .45;
  pointer-events: none;
}

.picker__note {
  margin: .85rem 0 0;
  font-size: .88rem;
  color: var(--muted);
}

/* ——— FAQ ——— */
.faq {
  max-width: 44rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq details:first-of-type {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--forest);
  padding: 1.05rem 1.75rem 1.05rem 0;
  position: relative;
  line-height: 1.3;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--rust);
  line-height: 1;
}

.faq details[open] summary::after { content: "–"; }

.faq .faq__a {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: .98rem;
  max-width: 42ch;
}

.faq .faq__a a { font-weight: 600; }

.band--dual .band__row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.band--dual .btn-wa-light {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  color: var(--cream);
  border: 2px solid rgba(243, 237, 228, .4);
  padding: .85rem 1.15rem;
  border-radius: 4px;
}
.band--dual .btn-wa-light:hover {
  border-color: #fff;
  color: #fff;
}



/* Sticky: pill, not full-bleed — full bar was easy to tap by accident (dialer opens, call never starts) */
.sticky-call__tel {
  flex-direction: column;
  gap: 0;
  line-height: 1.05;
}
.sticky-call__tel small {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .85;
}
#chiama { scroll-margin-top: 5.5rem; }
.idra-dial small {
  letter-spacing: .04em;
  text-transform: none;
  max-width: 16rem;
  text-align: center;
}
