/* manrope-300 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/manrope-v20-latin_latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/manrope-v20-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/manrope-v20-latin_latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/manrope-v20-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/manrope-v20-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --bg: #0b0c0f;
  --bg2: #0f1117;
  --card: #121422;
  --text: #f5f6f7;
  --muted: #b7bcc6;
  --line: rgba(255, 255, 255, .10);
  --gold: #c8a24a;
  /* oro sobrio */
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 600px at 80% -20%, rgba(200, 162, 74, .18), transparent 60%),
    radial-gradient(900px 500px at 10% 0%, rgba(255, 255, 255, .05), transparent 55%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 162, 74, .55);
}

.btn:active {
  transform: translateY(0px);
}

.btn-primary {
  background: rgba(200, 162, 74, 1);
  border-color: rgba(200, 162, 74, 1);
  color: rgba(11, 12, 15, .95);
  font-weight: 700;
}

.btn-primary:hover {
  background: rgba(220, 178, 80, 1);
  border-color: rgba(220, 178, 80, 1);
}

.btn-instagram {
  width: auto;
  height: auto;
  padding: 8px;
  border: none;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .85);
  transition: color .15s ease, background .15s ease;
}


.btn-instagram:hover {
  color: rgba(200, 162, 74, .95);
}

.chip {
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: .92rem;
  color: var(--muted);
  background: rgba(255, 255, 255, .02);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(11, 12, 15, .45);
  backdrop-filter: blur(10px);
}

.site-header.is-solid {
  background: rgba(11, 12, 15, .85);
  border-bottom-color: rgba(255, 255, 255, .10);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.brand-mark {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  letter-spacing: .2px;
}

.nav {
  display: flex;
  gap: 16px;
  color: var(--muted);
  justify-self: center;
}

.nav a {
  padding: 10px 10px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, .04);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  display: none;
  cursor: pointer;
}

.icon-btn-lines {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  margin: 0 auto;
}

.icon-btn-lines::before,
.icon-btn-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.icon-btn-lines::before {
  top: -6px;
}

.icon-btn-lines::after {
  top: 6px;
}

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(11, 12, 15, .92);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 14px 20px 22px;
  gap: 10px;
}

.mobile-nav a {
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .02);
}

.mobile-nav a:hover {
  color: var(--text);
  border-color: rgba(200, 162, 74, .35);
}

/* Hero */
:root {
  --hero-logo-overlap: 80px;
  --hero-logo-size: 27vw;
  --hero-photo-width: 45vw;
}

.hero.hero--split {
  padding: 78px 0 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;

  background:
    radial-gradient(900px 420px at 18% 18%, rgba(200, 162, 74, .12), transparent 60%),
    radial-gradient(800px 380px at 85% 20%, rgba(255, 255, 255, .05), transparent 55%),
    rgba(11, 12, 15, .60);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.hero-photo--bleed {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  min-height: 340px;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-photo--bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(.95) contrast(1.05);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(11, 12, 15, 1) 0%,
      rgba(11, 12, 15, .85) 25%,
      rgba(11, 12, 15, .55) 45%,
      rgba(11, 12, 15, .15) 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 10px;
  padding-right: calc(var(--hero-photo-width) * 0.42);
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-logo {
  margin: 6px 0 30px;
  margin-right: calc(var(--hero-logo-overlap) * -1);
  margin-left: -40px;
}

.hero-logo img {
  display: block;
  width: clamp(360px, var(--hero-logo-size), 760px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, .60));
}

.hero-diamond {
  position: absolute;
  left: 20%;
  top: 34%;
  transform: translateY(-50%);
  height: 650px;
  width: auto;
  pointer-events: none;
  z-index: 0;
  filter: sepia(1) saturate(1.5) hue-rotate(5deg) opacity(0.08);
  transform: translateY(-50%) rotate(6deg);
  opacity: 0.4;
}

.hero-diamond-left {
  position: absolute;
  left: -120px;
  top: 20%;
  height: 300px;
  width: auto;
  pointer-events: none;
  z-index: 0;
  filter: sepia(1) saturate(1.5) hue-rotate(5deg);
  transform: rotate(-10deg);
  opacity: 0.03;
}

.hero-subtitle {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .90);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.65;
  max-width: 64ch;
}

.hero-cta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-strip {
  position: relative;
  z-index: 2;
  background: rgba(200, 162, 74, .92);
  margin-top: 160px;
}


.hero-strip-inner {
  padding: 14px 0;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 800;
  color: rgba(11, 12, 15, .95);
  letter-spacing: .02em;
  text-align: center;
}

.hero-strip-inner .dot {
  opacity: .7;
}

@media (max-width: 980px) {

  .hero.hero--split {
    display: flex;
    flex-direction: column;
    padding-top: 64px;
    /* meno aria sopra */
  }

  .hero-photo--bleed {
    position: relative;
    width: 100%;
    height: 320px;
    min-height: 320px;
    order: 2;
  }

  .hero-diamond {
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(4deg);
    opacity: 0.35;
  }

  .hero-grid {
    padding-right: 0;
    grid-template-columns: 1fr;
    order: 1;
    padding-bottom: 60px;
  }

  .hero-logo {
    margin-right: 0;
  }

  .hero-strip {
    order: 3;
    margin-top: 28px;
  }

  :root {
    --hero-logo-size: 68vw;
  }
}

@media (max-width: 760px) {
  :root {
    --hero-logo-size: 72vw;
  }

  .hero-photo--bleed {
    height: 240px;
    min-height: 240px;
  }

  .hero-logo img {
    width: clamp(240px, 72vw, 420px);
  }

  .brand-mark {
  height: 26px;
}

  .hero-diamond {
    height: 260px;
    opacity: 0.25;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
  }

  .hero-strip {
    margin-top: 18px;
  }

  .hero-strip-inner {
    padding: 12px 0;
    gap: 12px;
  }
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .00));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section-head {
  margin-bottom: 22px;
  max-width: 800px;
}

.section-head h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  margin: 0 0 10px;
}

.section-head p {
  margin: 0;
  line-height: 1.7;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pillar {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  border-radius: var(--radius);
  padding: 16px;
}

.pillar-media {
  height: 92px;
  border-radius: 14px;
  border: 1px solid rgba(200, 162, 74, .18);
  background: radial-gradient(320px 140px at 60% 0%, rgba(200, 162, 74, .18), transparent 55%),
    rgba(255, 255, 255, .02);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-media-fallback {
  font-weight: 700;
  color: rgba(200, 162, 74, .85);
  letter-spacing: .3px;
}

.pillar h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ================= SERVIZI — GRIGLIA 12 COLONNE ================= */

/* ================= SECTION HEAD CENTRATO ================= */

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-head--center h2 {
  margin-bottom: 14px;
}

.section-head--center p {
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================= SERVIZI — GRIGLIA 12 COLONNE (CARD VERTICALI) ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.service-card {
  grid-column: span 4;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  cursor: pointer;
  transform: translateZ(0);
  transform-origin: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card.reveal {
  transform: translateY(10px);
}

.service-card.reveal.is-visible {
  transform: translateY(0);
}

.service-card.reveal.is-visible:hover {
  transform: translateY(0) scale(1.04);
}

.service-card:nth-last-child(2) {
  grid-column: 3 / span 4;
}

.service-card:last-child {
  grid-column: 7 / span 4;
}

.service-card:hover {
  transform: scale(1.04);
  border-color: rgba(200, 162, 74, .45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.service-media {
  width: 100%;
  aspect-ratio: 3.5 / 4;
  overflow: hidden;
  position: relative;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 24px 26px;
  background: linear-gradient(to top,
      rgba(11, 12, 15, .92) 0%,
      rgba(11, 12, 15, .75) 45%,
      rgba(11, 12, 15, 0) 100%);
}

.service-overlay h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(255, 255, 255, .98);
}

.service-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.55;
  font-size: .95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1100px) {
  .service-card {
    grid-column: span 6;
  }

  .service-card:nth-last-child(2),
  .service-card:last-child {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .service-card {
    grid-column: span 12;
  }

  .service-card:nth-last-child(2),
  .service-card:last-child {
    grid-column: span 12;
  }
}

/* ================= ABOUT (CHI SIAMO) ================= */

.about-title {
  margin-top: 0;
  font-size: clamp(2.4rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -.01em;
}


.gold {
  color: var(--gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: stretch;
}


.about-media {
  display: flex;
}

.about-text {
  display: flex;
  flex-direction: column;
  transform: translateY(-6px);
}

.about-text p {
  line-height: 1.75;
  margin: 0 0 14px;
}

/* ===== STATS PIÙ COMPATTE ===== */

.stats {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.stat {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .015);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
}

.stat-value {
  font-weight: 800;
  font-size: 1.35rem;
  color: rgba(200, 162, 74, .92);
}

.stat-label {
  color: var(--muted);
  margin-top: 4px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ===== MEDIA FRAME PIÙ COERENTE CON IL SITO ===== */

.about-media {
  display: flex;
}

.about-media .media-frame {
  display: flex;
  width: 100%;
}

.about-media .media-frame-inner {
  flex: 1;
  border-radius: calc(var(--radius2) - 1px);
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(200, 162, 74, .08), transparent 60%),
    rgba(255, 255, 255, .02);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}


/* Responsive */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
  }
}

/* ================= LAVORI — LAYOUT BLOCCATO COME REFERENCE ================= */

.works-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "text wide"
    "tall col";
  gap: 12px;
  align-items: start;
  width: 100%;
  overflow: visible;
  --works-top-h: clamp(340px, 28vw, 420px);
  --works-bottom-h: clamp(560px, 52vw, 700px);
  --works-wide-overlap: 150px;
  --works-video-overlap: 80px;
}

.work-block-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.works-editorial>.work-block--text {
  grid-area: text;
}

.works-editorial>.work-block--wide {
  grid-area: wide;
}

.works-editorial>.work-block--tall {
  grid-area: tall;
}

.works-editorial>.work-column {
  grid-area: col;
}

.work-block {
  border: none;
  background: none;
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  min-height: 0;
  width: 100%;
  margin: 0;
}

/* BOX TESTO */
.work-block--text,
.work-block--dark {
  background: rgba(255, 255, 255, .04);
  padding: 40px;
  border-radius: 12px;
}

/* tipografia */
.work-block--text h3,
.work-block--dark h3 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.work-block--text p,
.work-block--dark p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
  max-width: 40ch;
}

/* ================= MEDIA ================= */

.work-block--img img,
.work-block--video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ================= LAVORI — TRANSIZIONE UNIFICATA (TUTTI I MEDIA) ================= */

.works-mixed {
  background: rgba(0, 0, 0, .35);
  overflow: hidden;
}

.works-editorial img,
.works-editorial video {
  width: 100%;
  height: 100%;
  display: block;
  object-position: center center;
  object-fit: cover;
  transition: filter 10ms ease;
}

.works-editorial .work-block.is-blurred img,
.works-editorial .work-block.is-blurred video {
  filter: blur(6px);
}

@keyframes slide-wide {
  0%   { transform: translateY(0); }
  45%  { transform: translateY(-3%); }
  75%  { transform: translateY(.8%); }
  90%  { transform: translateY(-.3%); }
  100% { transform: translateY(0); }
}
@keyframes slide-tall {
  0%   { transform: translateX(0); }
  45%  { transform: translateX(-3%); }
  75%  { transform: translateX(.8%); }
  90%  { transform: translateX(-.3%); }
  100% { transform: translateX(0); }
}
@keyframes slide-right {
  0%   { transform: translateX(0); }
  45%  { transform: translateX(3%); }
  75%  { transform: translateX(-.8%); }
  90%  { transform: translateX(.3%); }
  100% { transform: translateX(0); }
}

.works-editorial .work-block--wide.is-fading {
  animation: slide-wide .8s cubic-bezier(.22, .61, .36, 1);
}
.works-editorial .work-block--tall.is-fading {
  animation: slide-tall .8s cubic-bezier(.22, .61, .36, 1);
}
.work-column .work-block--img.is-fading {
  animation: slide-right .8s cubic-bezier(.22, .61, .36, 1);
}

/* ===== MIXED FIT LOGIC ===== */
.works-mixed.is-contain img,
.works-mixed.is-contain video {
  object-fit: contain;
}

.works-mixed.is-cover img,
.works-mixed.is-cover video {
  object-fit: cover;
}

.works-editorial>.work-block--wide {
  height: var(--works-top-h);
  margin-left: calc(var(--works-wide-overlap) * -1);
  width: calc(100% + var(--works-wide-overlap));
  position: relative;
  z-index: 2;
}

.works-editorial>.work-block--text {
  height: var(--works-top-h);
  justify-self: start;
  width: calc(100% - var(--works-wide-overlap));
  max-width: max(320px, calc(560px - var(--works-wide-overlap)));
  padding: 34px;
  position: relative;
  z-index: 1;
}

.works-editorial>.work-block--tall {
  height: var(--works-bottom-h);
  margin-right: calc(var(--works-video-overlap) * -1);
  width: calc(100% + var(--works-video-overlap));
  position: relative;
  z-index: 2;
}

.works-editorial>.work-column {
  height: var(--works-bottom-h);
  width: calc(100% - var(--works-video-overlap));
  justify-self: end;
  position: relative;
  z-index: 1;
}

.work-column>* {
  width: 100%;
}

/* colonna destra 50/50 */
.work-column {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 0;
}

/* box "Condomini" */
.work-column>.work-block--dark {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* video grande crop fine */
.work-block--tall.work-block--video video {
  object-position: center 35%;
}

/* fade rotator classico */
.works-rotator.is-fading {
  opacity: 0;
}

/* responsive */
@media (max-width: 980px) {
  .works-editorial {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "wide"
      "tall"
      "col";
    gap: 12px;

    --works-top-h: auto;
    --works-bottom-h: auto;
    --works-wide-overlap: 0px;
    --works-video-overlap: 0px;
  }

  .works-editorial>.work-block--text,
  .works-editorial>.work-block--wide,
  .works-editorial>.work-block--tall,
  .works-editorial>.work-column {
    height: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .works-editorial>.work-block--wide,
  .works-editorial>.work-block--tall {
    aspect-ratio: 16 / 9;
  }

  .works-editorial>.work-block--wide {
    margin-left: 0;
  }

  .works-editorial>.work-block--tall {
    margin-right: 0;
  }

  .work-column {
    grid-template-rows: auto auto;
  }

  .work-column>.work-block--dark {
    justify-content: flex-start;
  }
}

/* ================= I NOSTRI CLIENTI — CAROUSEL (CENTER + EDGE FADE + FULL WIDTH) ================= */

.clients-carousel {
  position: relative;
  overflow: visible;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);

  padding: 26px 18px 18px;
  overflow: hidden;
}

.clients-viewport {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  outline: none;
  padding-bottom: 34px;
}

.clients-viewport::before,
.clients-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 4;
  pointer-events: none;
}

.clients-viewport::before {
  left: 0;
  background: linear-gradient(90deg,
      rgba(11, 12, 15, 1) 0%,
      rgba(11, 12, 15, .85) 35%,
      rgba(11, 12, 15, 0) 100%);
}

.clients-viewport::after {
  right: 0;
  background: linear-gradient(270deg,
      rgba(11, 12, 15, 1) 0%,
      rgba(11, 12, 15, .85) 35%,
      rgba(11, 12, 15, 0) 100%);
}

/* ===== FIX: testo sempre sotto le stelle ===== */
.client-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.client-stars {
  display: block !important;
  white-space: nowrap;
  line-height: 1;
  margin: 0 !important;
}

.client-text {
  display: block !important;
  margin: 0 !important;
}

/* ===== FIX: frecce tra card (posizioni settate dal JS) ===== */
.clients-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  border: none;
  background: transparent;

  padding: 0;
  overflow: visible;
}


/* ===== RIMUOVI / NASCONDI dots e nota (se rimaste in pagina) ===== */
.clients-dots,
.clients-note {
  display: none !important;
}

.clients-track {
  display: flex;
  gap: 14px;

  padding: 0;

  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

/* card */
.client-card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;

  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(260px, 20vw, 320px);
  gap: 14px;

  min-height: 400px;

  border-radius: 22px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .08);
}

.client-stars {
  display: block !important;
  white-space: nowrap;
  line-height: 1;
  color: rgba(200, 162, 74, .92);
  letter-spacing: 2px;
  font-size: 1.05rem;
  margin: 0 0 14px;
}

.client-text {
  display: block !important;
  margin: 0 !important;
  padding: 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.7;
  font-size: .98rem;
}

/* footer */
.client-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(11, 12, 15, .95);
  background: rgba(200, 162, 74, .92);
}

.client-name {
  font-weight: 900;
}

.client-role {
  font-size: .92rem;
}

.clients-arrow {
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(11, 12, 15, .35);
  color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);

  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 9999;

  opacity: 1;
  pointer-events: auto;
  transition: opacity .2s ease, transform .15s ease, border-color .15s ease, color .15s ease, background .15s ease;
}

.clients-arrow:hover {
  border-color: rgba(200, 162, 74, .65);
  color: rgba(200, 162, 74, .95);
  background: rgba(11, 12, 15, .45);
}

.clients-arrow:active {
  transform: translate(-50%, -50%) scale(.98);
}

.clients-arrow--left {
  left: var(--clients-arrow-left, 12vw) !important;
}

.clients-arrow--right {
  left: var(--clients-arrow-right, 88vw) !important;
  right: auto !important;
}

/* dots */
.clients-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 6px;
}

.clients-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.clients-dot.is-active {
  background: rgba(200, 162, 74, .92);
  border-color: rgba(200, 162, 74, .92);
  transform: scale(1.1);
}

.clients-note {
  text-align: center;
  font-size: .92rem;
  padding-top: 2px;
}

/* ================= CLIENT CARD — BOLLA + AUTORE (GOOGLE STYLE) ================= */

.client-card {
  gap: 14px;
}

.client-bubble {
  position: relative;
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  border: none;
  box-shadow: 0 4px 12px -4px rgba(200, 162, 74, .15);
  isolation: isolate;

  padding: 18px 18px 14px;

  display: flex;
  flex-direction: column;
  height: 480px;

  overflow: hidden;

  align-items: stretch;
}

.client-stars {
  display: block !important;
  white-space: nowrap;
  line-height: 1;
  margin: 0 0 12px !important;
  color: rgba(200, 162, 74, .92);
  letter-spacing: 2px;
  font-size: 1.4rem;
}

.client-text {
  margin: 0 !important;
  color: rgba(255, 255, 255, .86);
  line-height: 1.7;
  font-size: .98rem;

  display: block;
  overflow: hidden;
  max-height: calc(1.7em * 5);
}

/* “Leggi di più” = 6ª riga */
.client-readmore {
  display: inline-block;
  margin-top: 6px;
  line-height: 1.7;
  font-size: .98rem;

  color: #2f8cff;
  /* blu cliccabile */
  text-decoration: none;
  font-weight: 600;
}

.client-readmore:hover {
  text-decoration: underline;
}

.client-bubble.is-expanded .client-text {
  max-height: 210px;
  overflow: auto;
  padding-right: 6px;
}

/* ================= CLIENT CARD — READMORE LOGIC (MEDIA / NO MEDIA) ================= */

.client-textwrap {
  position: relative;
}

.client-bubble.has-media .client-textwrap {
  height: calc(1.7em * 6);
}

.client-bubble.has-media .client-text {
  max-height: calc(1.7em * 5);
}

.client-bubble.has-media .client-readmore {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  line-height: 1.7;
}

.client-bubble.no-media {
  position: relative;
}

.client-bubble.no-media .client-readmore {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  margin: 0;
}

.client-bubble.no-media.has-readmore {
  padding-bottom: calc(14px + 1.7em);
}

/* === MEDIA GRID: layout adattivo in base al numero di immagini === */

/* default: 2x2 */
.client-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

/* 1 immagine: piena (grande quanto tutto il 2x2) */
.client-media-grid.is-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/* 2 immagini: 2 colonne, una riga (due grandi affiancate) */
.client-media-grid.is-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
}

/* 3 immagini: 1 grande a sinistra (2 righe), 2 piccole a destra */
.client-media-grid.is-3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
}

.client-media-grid.is-3 .client-media:nth-child(1) {
  grid-row: 1 / span 2;
}

/* ===== GRIGLIA FOTO (layout deterministico 1/2/3/4/5+) ===== */
.client-media-grid {
  margin-top: auto;
  padding-top: 14px;
  padding-bottom: 14px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;

  width: min(100%, 260px);
  aspect-ratio: 1 / 1;

  margin-left: auto;
  margin-right: auto;

  place-items: stretch;
  place-content: stretch;
  overflow: hidden;
}

/* 1 media: occupa tutto il 2x2 */
.client-media-grid.is-1 .client-media:nth-child(1) {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

/* 2 media: SOLO seconda riga */
.client-media-grid.is-2 .client-media:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.client-media-grid.is-2 .client-media:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* 3 media: come 2 media, ma +1 sulla destra (2ª tile) */
.client-media-grid.is-3 .client-media:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.client-media-grid.is-3 .client-media:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* 4 media: 2x2 normale */
.client-media-grid.is-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
}

/* 5+ media: 2x2 normale (overlay +N lo mette il JS sulla 4ª) */
.client-media-grid.is-5plus {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
}


.client-media {
  position: relative;
  overflow: hidden;

  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  margin: 0;

  box-sizing: border-box;

  width: 100%;
  height: 100%;
}

.client-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.client-media--more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 15, .45);
}

.client-media-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .92);
  z-index: 2;
}

/* ===== AUTORE SOTTO (avatar + badge Google + tempo) ===== */
.client-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 8px;
}


.client-avatar-wrap {
  position: relative;
  width: 46px;
  height: 46px;
}

.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(11, 12, 15, .95);
  background: rgba(200, 162, 74, .92);
}

.client-google-badge {
  position: absolute;
  right: -4px;
  bottom: -4px;

  width: 22px;
  height: 22px;
  border-radius: 50%;

  background: #0B0C0F;
  overflow: hidden;

  display: grid;
  place-items: center;

  padding: 2px;
  box-sizing: border-box;
}

.client-google-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.client-author-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.client-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.client-name {
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-subrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  white-space: nowrap;
}

.client-dot {
  opacity: .6;
}

/* responsive */
@media (max-width: 980px) {

  .clients-carousel {
    padding: 0;
    overflow: visible;
    border: none;
    background: transparent;
  }

  .clients-viewport::before,
  .clients-viewport::after {
    width: 90px;
  }

  .clients-arrow--left {
    left: var(--clients-arrow-left, 12vw) !important;
    right: auto !important;
  }

  .clients-arrow--right {
    left: var(--clients-arrow-right, 88vw) !important;
    right: auto !important;
  }
}

@media (max-width: 760px) {

  .clients-viewport::before,
  .clients-viewport::after {
    width: 52px;
  }

  .client-card {
    flex-basis: 86vw;
  }
}

/* ================= CONTATTI ================= */
.contacts {
  padding: 0 0 72px;
}

.map-wrap {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.map-wrap iframe,
#dark-map {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: contrast(1) brightness(1.55) saturate(1);

}

.contacts-panel {
  padding-top: 44px;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 64px;
  align-items: start;
}

.contact-title {
  margin: 0 0 18px;
  font-size: 1.55rem;
  font-weight: 900;
}

/* Info contatto */
.contact-dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-dl-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: baseline;
}

.contact-dl dt {
  color: rgba(255, 255, 255, .70);
  font-weight: 800;
}

.contact-dl dd {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-weight: 750;
  line-height: 1.7;
}

.contact-dl a {
  color: inherit;
  text-decoration: none;
}

.contact-dl a:hover {
  text-decoration: underline;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-left {
  padding-top: 0px;
  display: flex;
  flex-direction: column;
}

.contact-left h2 {
  margin-top: 0;
}

.contact-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 28px 0 10px;
  opacity: .9;
  color: var(--gold);
}

.contact-divider .line {
  height: 1px;
  background: rgba(255, 255, 255, .14);
}

.contact-divider .star {
  color: rgba(255, 255, 255, .45);
  font-size: .9rem;
}

.contact-subtitle {
  margin: 0 0 10px;
}

.map-marker {
  width: 32px;
  height: 42px;
  background: #C9A84C;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,.5);
  filter: none !important;
}
.map-marker::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #C9A84C;
}


/* ===== FORM CONTATTI ===== */

.form--contact {
  border-top: none;
  padding-top: 0;
}

.form--contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 14px;
}

.form--contact .form-row>label {
  margin-bottom: 0;
}

.form--contact label {
  display: block;
  margin-bottom: 14px;
}

.form--contact label span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 6px;
}

label span.gold {
  color: var(--gold) !important;
}

/* input */
.form--contact input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}

/* textarea */
.form--contact textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  padding: 12px 12px;
  outline: none;

  min-height: 160px;
  resize: vertical;
}

.form--contact input:focus,
.form--contact textarea:focus {
  border-color: rgba(200, 162, 74, .45);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

.form-submit-row .form-note {
  margin: 0;
}

@media (max-width: 768px) {
  .form--contact .form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .01);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 999px;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, .03);
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 320px;
  }

  .services-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .map-wrap iframe,
  #dark-map {
    height: 260px;
  }

  .contacts-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 22px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-left {
    padding-top: 0;
    display: block;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-subtitle {
    margin-top: 16px;
  }

  .social-grid {
    grid-template-columns: repeat(6, 36px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ================= WHY (METODO) — REFINEMENT ================= */

.why-wrapper {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
}

.why-media-frame {
  position: relative;
  border-radius: var(--radius2);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
}

.why-photo-stage {
  position: relative;
}

.why-media-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, opacity .4s ease;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 15, .05), rgba(11, 12, 15, .55));
  pointer-events: none;
}

.why-content {
  min-height: 560px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.why-kicker {
  margin-bottom: 10px;
  justify-content: center;
}

.why-head p {
  max-width: 34ch;
}

/* BOX ORARI: scuro + base oro */
.why-hours {
  overflow: hidden;
  border-radius: var(--radius2);
  position: absolute;
  top: 150px;
  left: 0;
  transform: translateX(-66%);
  /* 1/3 dentro */
  z-index: 5;
  /* sopra tutto */
}



.why-hours-top {
  background: rgba(15, 17, 23, .92);
  backdrop-filter: blur(10px);
  padding: 18px 18px 16px;
}

.why-hours-title {
  font-weight: 850;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .95);
  margin-bottom: 10px;
}

.why-hours-block {
  margin-top: 12px;
}

.why-hours-label {
  font-weight: 800;
  color: rgba(200, 162, 74, .92);
  margin-bottom: 6px;
  font-size: .92rem;
  letter-spacing: .02em;
}

.why-hours-line {
  color: rgba(255, 255, 255, .86);
  line-height: 1.6;
  font-size: .95rem;
}

.why-hours-bottom {
  background: rgba(200, 162, 74, .92);
  color: rgba(11, 12, 15, .95);
  padding: 16px 18px;
}

.why-hours-emg {
  font-weight: 900;
  letter-spacing: .06em;
  font-size: .86rem;
}

.why-hours-phone {
  margin-top: 8px;
  font-weight: 950;
  font-size: 1.35rem;
}

.why-controls {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-arrow--min {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(11, 12, 15, .30);
  color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
}

.why-arrow--min:hover {
  border-color: rgba(200, 162, 74, .65);
  color: rgba(200, 162, 74, .95);
  background: rgba(11, 12, 15, .40);
}

.why-pager-min {
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .86);
  font-size: .9rem;
}

.why-pager-sep {
  opacity: .55;
}

/* STRIP ORO */
.why-strip {
  margin-top: auto;
  /* <-- la porta in fondo */
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius2);
}

.why-strip-inner {
  background: rgba(200, 162, 74, .92);
  color: rgba(11, 12, 15, .95);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 22px 18px;
}

.why-strip-value {
  font-weight: 950;
  font-size: 2rem;
  letter-spacing: .02em;
}

.why-strip-label {
  margin-top: 6px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  opacity: .88;
}

/* Responsive */
@media (max-width: 980px) {
  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .why-media-frame img {
    height: 360px;
  }

  .why-content {
    min-height: auto;
    text-align: center;
  }

  .why-strip {
    margin-top: 18px;
  }

  .why-strip-inner {
    grid-template-columns: 1fr;
  }

  .why-hours {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    margin: 14px 14px 0;
    border-radius: calc(var(--radius2) - 2px);
    width: auto;
    max-width: none;
  }

  .why-hours-top {
    padding: 16px 16px 14px;
  }

  .why-hours-bottom {
    padding: 14px 16px;
  }
}
