/* LT Pianeta Fodera — main stylesheet */

@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-ink: #1b1b1b;
  --color-ink-2: #262626;
  --color-accent: #da2f10;
  --color-accent-hover: #b8260d;
  --color-surface: #f5f1f0;
  --color-white: #ffffff;
  --color-muted: #6c7476;
  --color-line: #a6a6a6;
  --font: "Raleway", "Segoe UI", sans-serif;
  --container: 1120px;
  --header-h: 80px;
  --radius: 4px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
a { color: var(--color-accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-accent-hover); }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

.lt-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10000;
}
.lt-skip:focus { left: 1rem; top: 1rem; }

.lt-container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.lt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(27, 27, 27, 0.94);
  backdrop-filter: blur(10px);
  color: #fff;
  height: var(--header-h);
}
.lt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}
.lt-logo img { height: 48px; width: auto; }
@media (min-width: 960px) {
  .lt-logo img { height: 54px; }
}
.lt-logo span {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
}
.lt-nav { display: none; }
.lt-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem 1.25rem;
  align-items: center;
}
.lt-nav a {
  color: #f5f1f0;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.lt-nav a:hover,
.lt-nav .current-menu-item > a { color: var(--color-accent); }
.lt-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-ink-2);
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
}
.lt-nav .menu-item-has-children { position: relative; }
.lt-nav .menu-item-has-children:hover > .sub-menu,
.lt-nav .menu-item-has-children:focus-within > .sub-menu { display: block; }
.lt-nav .sub-menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-weight: 500;
}

.lt-header__cta { display: flex; gap: 0.5rem; align-items: center; }
.lt-header__cta .lt-btn {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .lt-header__cta .lt-btn--primary { display: none; }
}
.lt-burger {
  display: inline-flex;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  cursor: pointer;
}

@media (min-width: 960px) {
  .lt-nav { display: block; }
  .lt-burger { display: none; }
}

.lt-nav--open {
  display: block;
  position: absolute;
  inset: var(--header-h) 0 auto 0;
  background: var(--color-ink);
  padding: 1rem 1.25rem 1.5rem;
}
.lt-nav--open ul { flex-direction: column; align-items: flex-start; }
.lt-nav--open .sub-menu {
  position: static;
  display: block;
  box-shadow: none;
  padding-left: 0.75rem;
}

/* Buttons */
.lt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.lt-btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.lt-btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  text-decoration: none;
}
.lt-btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.lt-btn--ghost:hover { background: rgba(255,255,255,0.08); color: #fff; text-decoration: none; }
.lt-btn--whatsapp {
  background: transparent;
  border-color: transparent;
  color: #fff;
  padding: 0.2rem;
  min-width: 2.85rem;
  min-height: 2.85rem;
}
.lt-btn--whatsapp:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent;
  color: #fff;
  text-decoration: none;
  transform: scale(1.06);
}
.lt-btn--whatsapp .lt-icon-whatsapp {
  display: block;
  width: 1.85rem;
  height: 1.85rem;
  flex-shrink: 0;
}
.lt-btn--whatsapp-label {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  padding: 0.75rem 1.15rem;
  min-width: 0;
  min-height: 0;
}
.lt-btn--whatsapp-label:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
  transform: none;
}
.lt-btn--whatsapp-label .lt-icon-whatsapp {
  width: 1.35rem;
  height: 1.35rem;
}
.lt-header__cta .lt-btn--whatsapp {
  padding: 0.1rem;
}
.lt-header__cta .lt-btn--whatsapp .lt-icon-whatsapp {
  width: 2.15rem;
  height: 2.15rem;
}
.lt-btn--outline {
  background: transparent;
  border-color: var(--color-ink);
  color: var(--color-ink);
}
.lt-btn--outline:hover { background: var(--color-ink); color: #fff; text-decoration: none; }

/* Hero */
.lt-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-ink);
}
.lt-hero__slides {
  position: absolute;
  inset: 0;
}
.lt-hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s var(--ease), visibility 0.85s var(--ease);
  pointer-events: none;
}
.lt-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.lt-hero__slide[hidden] {
  display: grid !important;
}
.lt-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.lt-hero__bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  transform: translate3d(0, 0, 0);
  image-rendering: auto;
  backface-visibility: hidden;
}
.lt-hero__slide.is-active .lt-hero__bg {
  animation: lt-hero-pan 14s linear both;
}
.lt-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(27,27,27,0.72) 0%, rgba(27,27,27,0.32) 48%, rgba(27,27,27,0.18) 100%),
    linear-gradient(180deg, rgba(27,27,27,0.12) 0%, rgba(27,27,27,0.45) 70%, rgba(27,27,27,0.78) 100%);
  opacity: 1;
}
.lt-hero__grain {
  display: none;
}
.lt-hero__content {
  position: relative;
  padding: 5rem 0 5.5rem;
  max-width: min(58rem, 96%);
  z-index: 3;
}
.lt-hero__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}
.lt-hero__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.lt-hero__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  align-self: center;
  margin: 0;
  margin-top: -0.85rem;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.4));
}
.lt-hero__brand img {
  width: auto;
  height: 128px;
  display: block;
}
.lt-hero__title,
.lt-hero__lead,
.lt-hero__eyebrow {
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
@media (max-width: 720px) {
  .lt-hero__actions {
    flex-wrap: wrap;
  }
  .lt-hero__brand {
    display: none;
  }
}
.lt-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f5f1f0;
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.lt-hero__eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--color-accent);
  display: inline-block;
  transform-origin: left center;
}
.lt-hero__title {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.lt-hero__lead {
  margin: 0 0 1.75rem;
  color: #e8e2e0;
  font-size: 1.12rem;
  max-width: 34rem;
}

.lt-hero:not(.is-ready) .lt-hero__slide.is-active [data-lt-hero-item],
.lt-hero:not(.is-ready) .lt-hero__slide.is-active .lt-hero__eyebrow::before {
  opacity: 0;
  transform: translateY(28px);
}
.lt-hero.is-ready .lt-hero__slide.is-active [data-lt-hero-item] {
  animation: lt-rise 1s var(--ease) both;
}
.lt-hero.is-ready .lt-hero__slide.is-active .lt-hero__eyebrow { animation-delay: 0.12s; }
.lt-hero.is-ready .lt-hero__slide.is-active .lt-hero__eyebrow::before {
  animation: lt-line 0.8s var(--ease) 0.2s both;
}
.lt-hero.is-ready .lt-hero__slide.is-active .lt-hero__title { animation-delay: 0.22s; }
.lt-hero.is-ready .lt-hero__slide.is-active .lt-hero__lead { animation-delay: 0.38s; }
.lt-hero.is-ready .lt-hero__slide.is-active .lt-hero__actions { animation-delay: 0.5s; }

.lt-hero__nav {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.lt-hero__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.lt-hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: width 0.35s var(--ease), background 0.35s var(--ease);
}
.lt-hero__dot.is-active {
  width: 28px;
  background: var(--color-accent);
}
.lt-hero__arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(27,27,27,0.35);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lt-hero__arrow:hover,
.lt-hero__arrow:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  outline: none;
}

.lt-hero__scroll {
  position: absolute;
  right: max(1.2rem, calc((100% - var(--lt-container, 1120px)) / 2));
  bottom: 1.4rem;
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  text-decoration: none;
}
.lt-hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  animation: lt-scroll-dot 1.6s var(--ease) infinite;
}

@keyframes lt-hero-pan {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -1.2%, 0) scale(1.02); }
}
@keyframes lt-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes lt-line {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
@keyframes lt-char {
  to { opacity: 1; transform: none; }
}
@keyframes lt-scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(0); }
}
@keyframes lt-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Stats removed */

.lt-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.lt-kicker--light { color: #f0a090; }

/* Atelier — animated threads */
.lt-atelier {
  position: relative;
  overflow: hidden;
  background: #121212;
  color: #f5f1f0;
  padding: 5rem 0;
  isolation: isolate;
}
.lt-atelier__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
.lt-atelier__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(218,47,16,0.14), transparent 60%),
    linear-gradient(90deg, rgba(18,18,18,0.92) 0%, rgba(18,18,18,0.55) 55%, rgba(18,18,18,0.75) 100%);
  pointer-events: none;
}
.lt-atelier__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .lt-atelier__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}
.lt-atelier h2 {
  color: #fff;
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
}
.lt-atelier__copy > p {
  color: #d2cbc8;
  max-width: 36rem;
  margin: 0 0 1.5rem;
}
.lt-atelier__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.lt-atelier__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  color: #ddd7d4;
}
.lt-atelier__steps strong {
  color: var(--color-accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.lt-atelier__quote {
  margin: 0 0 1.5rem;
  padding: 1.4rem 1.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--color-accent);
}
.lt-atelier__quote p {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  line-height: 1.45;
  color: #fff;
  font-weight: 500;
}
.lt-atelier__quote footer {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a9a29f;
}
.lt-cta-panel__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.lt-cta-panel__contacts a {
  color: var(--color-ink);
  text-decoration: none;
}
.lt-cta-panel__contacts a:hover { color: var(--color-accent); }

.lt-section__head .lt-kicker { margin-bottom: 0.5rem; }

/* Reveals */
.lt-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  transition-delay: var(--lt-delay, 0s);
  will-change: opacity, transform;
}
.lt-reveal[data-lt-reveal="left"] { transform: translateX(-36px); }
.lt-reveal[data-lt-reveal="right"] { transform: translateX(36px); }
.lt-reveal[data-lt-reveal="scale"] { transform: translateY(24px) scale(0.96); }
.lt-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.lt-card.is-filtering-out {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

/* Services polish */
.lt-service {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(166,166,166,0.28);
  padding: 0;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.lt-service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--color-accent);
  transition: width 0.4s var(--ease);
  z-index: 1;
}
.lt-service::after {
  content: "";
  position: absolute;
  right: -20%;
  top: -30%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218,47,16,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transform: scale(0.6);
  pointer-events: none;
}
.lt-service a {
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 1.7rem 1.25rem 1.5rem;
  min-height: 220px;
}
.lt-service:hover {
  transform: translateY(-8px);
  border-color: rgba(218,47,16,0.35);
  box-shadow: 0 18px 44px rgba(27,27,27,0.12);
}
.lt-service:hover::before { width: 3px; }
.lt-service:hover::after {
  opacity: 1;
  transform: scale(1);
}
.lt-service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1.1rem;
  border-radius: 12px;
  background: var(--color-surface);
  color: var(--color-accent);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.lt-service__icon svg {
  width: 24px;
  height: 24px;
}
.lt-service:hover .lt-service__icon {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}
.lt-service h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  text-align: center;
}
.lt-service p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
  text-align: center;
  max-width: 18rem;
}
.lt-service__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.lt-service__cta span {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}
.lt-service:hover .lt-service__cta span { transform: translateX(5px); }

/* Cards / tilt handled in portfolio grid section */

.lt-btn--glow {
  box-shadow: 0 0 0 0 rgba(218, 47, 16, 0.45);
  animation: lt-pulse 2.4s var(--ease) infinite;
}
@keyframes lt-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(218, 47, 16, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(218, 47, 16, 0); }
}

.lt-home-more {
  margin-top: 2rem;
  text-align: center;
}
.lt-cta-panel {
  background: #fff;
  border: 1px solid rgba(166,166,166,0.35);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 12px 36px rgba(0,0,0,0.05);
  text-align: center;
}
.lt-cta-panel .lt-section__head {
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .lt-hero.is-ready .lt-hero__bg,
  .lt-btn--glow,
  .lt-hero__scroll span,
  .lt-hero.is-ready .lt-hero__slide.is-active [data-lt-hero-item] {
    animation: none !important;
  }
  .lt-hero__slide { transition: none !important; }
  .lt-hero__bg { transform: none !important; }
  .lt-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .lt-team-photo__media,
  .lt-team-photo__media img {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }
  .lt-hero:not(.is-ready) .lt-hero__slide.is-active [data-lt-hero-item] {
    opacity: 1;
    transform: none;
  }
}

/* Sections */
.lt-section { padding: 4.5rem 0; }
.lt-section--surface { background: var(--color-surface); }
.lt-section__head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.lt-section__head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}
.lt-section__head p { margin: 0; color: var(--color-muted); }

.lt-services {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .lt-services { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .lt-services { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
  .lt-services--5 { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1000px) and (max-width: 1180px) {
  .lt-services--5 { grid-template-columns: repeat(3, 1fr); }
}

/* Portfolio grid */
.lt-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.lt-filters button {
  border: 1px solid var(--color-line);
  background: transparent;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
}
.lt-filters button.is-active,
.lt-filters button:hover {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}

.lt-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .lt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .lt-grid { grid-template-columns: repeat(3, 1fr); } }

.lt-card {
  position: relative;
  overflow: hidden;
  background: var(--color-ink-2);
  aspect-ratio: 4/3;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  transform-style: preserve-3d;
}
.lt-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.lt-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.lt-card:hover {
  box-shadow: 0 22px 50px rgba(0,0,0,0.28);
}
.lt-card:hover .lt-card__media img { transform: scale(1.08); }
.lt-card__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: #fff;
  z-index: 2;
  pointer-events: none;
}
.lt-card__meta h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.lt-card__meta span {
  font-size: 0.8rem;
  opacity: 0.85;
}
.lt-card a {
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: inherit;
  z-index: 3;
}

/* Page */
.lt-page-hero {
  background: var(--color-ink);
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.lt-page-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.lt-page-hero p { margin: 0.75rem 0 0; color: #d9d3d1; max-width: 40rem; }
.lt-page-hero__eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f5f1f0;
  opacity: 0.85;
}
.lt-page-hero--contact { padding: 3.25rem 0 3rem; }
.lt-page-hero--servizi { padding: 3.25rem 0 3rem; }

/* Pagina Servizi */
.lt-servizi-overview {
  padding: 2rem 0 0.5rem;
  background: var(--color-surface);
}
.lt-servizi-nav {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .lt-servizi-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .lt-servizi-nav { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.lt-servizi-nav__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  row-gap: 0.2rem;
  align-items: start;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(166, 166, 166, 0.3);
  border-left: 3px solid var(--svc-accent, var(--color-accent));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.lt-servizi-nav__item:hover {
  border-color: var(--svc-accent, var(--color-accent));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.lt-servizi-nav__icon {
  grid-row: 1 / span 2;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--svc-soft, rgba(218, 47, 16, 0.08));
  color: var(--svc-accent, var(--color-accent));
  margin-top: 0.1rem;
}
.lt-servizi-nav__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}
.lt-servizi-nav__item strong {
  font-size: 1.02rem;
  line-height: 1.25;
}
.lt-servizi-nav__item > span:last-child {
  grid-column: 2;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}
.lt-servizi-nav__item--auto { --svc-accent: #da2f10; --svc-soft: rgba(218, 47, 16, 0.1); }
.lt-servizi-nav__item--moto { --svc-accent: #1b1b1b; --svc-soft: rgba(27, 27, 27, 0.08); }
.lt-servizi-nav__item--nautica { --svc-accent: #1f5f7a; --svc-soft: rgba(31, 95, 122, 0.1); }
.lt-servizi-nav__item--tendaggi-interni { --svc-accent: #8a4b2e; --svc-soft: rgba(138, 75, 46, 0.1); }
.lt-servizi-nav__item--design { --svc-accent: #4a3f35; --svc-soft: rgba(74, 63, 53, 0.1); }
.lt-servizi-nav__item--pouf { --svc-accent: #c45c26; --svc-soft: rgba(196, 92, 38, 0.12); }

.lt-servizi-detail {
  padding: 2.5rem 0 1rem;
}
.lt-servizi-detail__list {
  display: grid;
  gap: 1.6rem;
}
.lt-servizi-card {
  --svc-accent: var(--color-accent);
  --svc-soft: rgba(218, 47, 16, 0.08);
  --svc-panel: #1b1b1b;
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(166, 166, 166, 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  scroll-margin-top: calc(var(--header-h) + 1rem);
  overflow: hidden;
}
@media (min-width: 900px) {
  .lt-servizi-card {
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.15fr);
    align-items: stretch;
    min-height: 320px;
  }
  .lt-servizi-card--flip {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.95fr);
  }
  .lt-servizi-card--flip .lt-servizi-card__aside {
    order: 2;
  }
}
.lt-servizi-card__aside {
  position: relative;
  min-height: 220px;
  color: #fff;
  overflow: hidden;
  background: var(--svc-panel);
}
.lt-servizi-card__media {
  position: absolute;
  inset: 0;
}
.lt-servizi-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}
.lt-servizi-card:hover .lt-servizi-card__media img {
  transform: scale(1.06);
}
.lt-servizi-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--svc-panel) 35%, transparent), transparent 55%);
  pointer-events: none;
}
.lt-servizi-card__meta {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lt-servizi-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}
.lt-servizi-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.lt-servizi-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.lt-servizi-card__body {
  padding: 1.5rem 1.4rem 1.4rem;
}
@media (min-width: 900px) {
  .lt-servizi-card__body {
    padding: 1.85rem 1.85rem 1.65rem;
  }
}
.lt-servizi-card__head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
}
.lt-servizi-card__head p {
  margin: 0 0 1.1rem;
  color: var(--color-muted);
  max-width: 36rem;
}
.lt-servizi-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
@media (min-width: 720px) {
  .lt-servizi-card__list {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1.25rem;
  }
}
.lt-servizi-card__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--color-ink);
}
.lt-servizi-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--svc-accent);
}
.lt-servizi-card__more {
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}
.lt-servizi-card__more a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--svc-accent);
  text-decoration: none;
}
.lt-servizi-card__more a:hover {
  text-decoration: underline;
}

.lt-servizi-card--auto { --svc-accent: #da2f10; --svc-panel: #2a1512; }
.lt-servizi-card--moto { --svc-accent: #c8c4c0; --svc-panel: #141414; }
.lt-servizi-card--moto .lt-servizi-card__tag { color: #fff; }
.lt-servizi-card--moto .lt-servizi-card__more a { color: #1b1b1b; }
.lt-servizi-card--moto .lt-servizi-card__list li::before { background: #1b1b1b; }
.lt-servizi-card--nautica { --svc-accent: #2a7a96; --svc-panel: #0f2a35; }
.lt-servizi-card--tendaggi { --svc-accent: #a05a38; --svc-panel: #2a1c16; }
.lt-servizi-card--outdoor { --svc-accent: #3d6b4f; --svc-panel: #15241c; }
.lt-servizi-card--design { --svc-accent: #8b7355; --svc-panel: #231e19; }
.lt-servizi-card--pouf {
  --svc-accent: #da2f10;
  --svc-panel: #3a1a12;
  border-color: rgba(218, 47, 16, 0.28);
}

@supports not (background: color-mix(in srgb, red 50%, white)) {
  .lt-servizi-card__media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
}
.lt-servizi-why { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.lt-servizi-why__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .lt-servizi-why__grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
.lt-servizi-why__item {
  background: #fff;
  border: 1px solid rgba(166, 166, 166, 0.28);
  padding: 1.35rem 1.25rem;
}
.lt-servizi-why__item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}
.lt-servizi-why__item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.lt-servizi-cta {
  padding: 4rem 0 4.5rem;
}
.lt-servizi-cta__veil {
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(218, 47, 16, 0.14), transparent 60%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.88) 0%, rgba(18, 18, 18, 0.62) 50%, rgba(18, 18, 18, 0.82) 100%);
}
.lt-servizi-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  padding: 0;
  background: transparent;
  color: #f5f1f0;
  border-radius: 0;
}
@media (min-width: 900px) {
  .lt-servizi-cta__inner {
    grid-template-columns: 1.2fr auto;
    align-items: center;
    gap: 2rem;
  }
}
.lt-servizi-cta__inner h2 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}
.lt-servizi-cta__inner > div > p:last-child {
  margin: 0;
  color: #d2cbc8;
  max-width: 34rem;
}
.lt-servizi-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.lt-servizi-cta .lt-btn--outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.lt-servizi-cta .lt-btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Contatti */
.lt-contact {
  padding: 3.5rem 0 2rem;
  background: var(--color-surface);
}
.lt-contact__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .lt-contact__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
    align-items: start;
  }
}
.lt-contact__info h2,
.lt-contact__form-card h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  line-height: 1.2;
}
.lt-contact-cards {
  display: grid;
  gap: 0.85rem;
}
.lt-contact-card {
  background: var(--color-white);
  border: 1px solid rgba(166, 166, 166, 0.35);
  padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--color-accent);
}
.lt-contact-card__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}
.lt-contact-card p {
  margin: 0;
  font-weight: 600;
  color: var(--color-ink);
}
.lt-contact-card a {
  color: var(--color-ink);
  text-decoration: none;
}
.lt-contact-card a:hover { color: var(--color-accent); }
.lt-contact-card__sub {
  margin-top: 0.35rem !important;
  font-weight: 400 !important;
  font-size: 0.9rem;
  color: var(--color-muted) !important;
}
.lt-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.lt-contact__form-card {
  background: var(--color-white);
  border: 1px solid rgba(166, 166, 166, 0.35);
  padding: 1.5rem 1.35rem 1.75rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}
@media (min-width: 900px) {
  .lt-contact__form-card { padding: 1.85rem 1.75rem 2rem; }
}
.lt-contact__form-lead {
  margin: -0.5rem 0 1.35rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.lt-contact-map {
  padding: 2.5rem 0 4rem;
  background: var(--color-white);
}
.lt-contact-map .lt-map {
  min-height: 380px;
}
.lt-contact-map .lt-map__placeholder { min-height: 380px; }
.lt-contact-map .lt-map iframe { height: 420px; }

/* Chi siamo — foto sx / testo dx */
.lt-about {
  padding: 2.75rem 0 4rem;
}
.lt-about > .lt-container {
  width: min(100% - 2rem, 1360px);
}
.lt-about__grid {
  display: grid;
  gap: 1.75rem 2.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .lt-about__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr);
    gap: 2.75rem 3rem;
  }
}
.lt-about__copy {
  padding: 0;
  margin: 0;
  max-width: 36rem;
}
.lt-about__copy.lt-prose {
  padding: 0.15rem 0 0;
}
.lt-about__copy p:first-child {
  margin-top: 0;
}
.lt-team-photo {
  margin: 0;
  padding: 0;
  width: 100%;
}
.lt-team-photo__frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
  background: #1b1b1b;
  aspect-ratio: 16 / 10;
  width: 100%;
}
.lt-team-photo__media {
  position: absolute;
  inset: 0;
  will-change: transform;
  transition: transform 1.4s var(--ease);
}
.lt-team-photo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  filter: saturate(0.72) contrast(0.96) brightness(0.92);
  transform: scale(1.04);
  transition:
    filter 1.1s var(--ease),
    transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}
.lt-team-photo.is-visible .lt-team-photo__media img {
  filter: none;
  transform: scale(1);
}
.lt-team-photo__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(18, 18, 18, 0.7) 100%),
    radial-gradient(ellipse 80% 70% at 50% 40%, transparent 45%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.95;
}
.lt-team-photo__caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  pointer-events: none;
}
.lt-team-photo__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0a090;
}
.lt-team-photo__caption strong {
  font-size: clamp(0.9rem, 1.4vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
@media (max-width: 959px) {
  .lt-about__copy {
    max-width: none;
  }
  .lt-team-photo__frame {
    aspect-ratio: 16 / 9;
  }
}
.lt-prose-narrow {
  max-width: 46rem;
}
.lt-prose__cta {
  margin-top: 2rem;
}

.lt-prose { padding: 3rem 0 4rem; }
.lt-prose h2 { margin-top: 2rem; }
.lt-prose ul { padding-left: 1.2rem; }
.lt-content-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .lt-content-layout--split { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}

.lt-accordion__item {
  border: 1px solid rgba(166,166,166,0.4);
  background: #fff;
  margin-bottom: 0.6rem;
  padding: 0.2rem 1rem 0.6rem;
}
.lt-accordion__item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.85rem 0;
}
.lt-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .lt-feature-grid { grid-template-columns: 1fr 1fr; } }
.lt-feature {
  background: var(--color-surface);
  padding: 1.25rem;
}
.lt-feature h3 { margin-top: 0; }
.lt-link-list { list-style: none; padding: 0; }
.lt-link-list a {
  display: block;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(166,166,166,0.35);
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 600;
}
.lt-link-list a:hover { color: var(--color-accent); }

.lt-info-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.lt-info-list li { padding: 0.45rem 0; }
.lt-info-list strong { display: inline-block; min-width: 7rem; }

/* Form */
.lt-form__row { margin-bottom: 1rem; }
.lt-form label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.92rem; }
.lt-form input[type="text"],
.lt-form input[type="email"],
.lt-form input[type="tel"],
.lt-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font: inherit;
  background: #fff;
}
.lt-form__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .lt-form__grid { grid-template-columns: 1fr 1fr; } }
.lt-form__consent label { font-weight: 400; display: flex; gap: 0.55rem; align-items: flex-start; }
.lt-form__hint { color: var(--color-muted); font-size: 0.9rem; }
.lt-hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.lt-form__status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
}
.lt-form__status.is-error { border-left-color: #8a1c0a; }

/* Map */
.lt-map {
  min-height: 320px;
  background: var(--color-surface);
  border: 1px solid rgba(166,166,166,0.35);
}
.lt-map iframe { width: 100%; height: 360px; border: 0; display: block; }
.lt-map__placeholder {
  min-height: 320px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 2rem;
}
.lt-map__addr { color: var(--color-muted); margin: 0; }

/* Gallery single */
/* ===== Single work gallery viewer ===== */
.lt-work-hero {
  background: var(--color-ink);
  color: #fff;
  padding: 2.5rem 0 2rem;
}
.lt-work-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: #aaa;
}
.lt-work-hero__crumb a { color: #ddd; text-decoration: none; }
.lt-work-hero__crumb a:hover { color: var(--color-accent); }
.lt-work-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  line-height: 1.15;
}
.lt-work-hero__tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.lt-chip {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0eae8;
}

.lt-viewer {
  background: #0e0e0e;
  padding: 1.5rem 0 2rem;
}
.lt-viewer__stage {
  position: relative;
}
.lt-viewer__frame {
  position: relative;
  background: #080808;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(62vh, 640px);
  min-height: 260px;
  height: auto;
  display: grid;
  place-items: center;
  cursor: zoom-in;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
@supports not (aspect-ratio: 16 / 10) {
  .lt-viewer__frame {
    height: min(52vh, 520px);
  }
}
.lt-viewer__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: none;
  place-items: center;
  z-index: 1;
  padding: 0.75rem;
}
.lt-viewer__slide.is-active {
  display: grid;
}
.lt-viewer__slide[hidden] {
  display: none !important;
}
.lt-viewer__slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.lt-viewer__slide.is-enter img {
  animation: lt-viewer-fade 0.45s var(--ease) both;
}
@keyframes lt-viewer-fade {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: none; }
}
.lt-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.lt-viewer__nav:hover {
  background: var(--color-accent);
  transform: translateY(-50%) scale(1.05);
}
.lt-viewer__nav--prev { left: 0.85rem; }
.lt-viewer__nav--next { right: 0.85rem; }
.lt-viewer__zoom {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lt-viewer__zoom:hover { background: var(--color-accent); }
.lt-viewer__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.85rem;
  color: #bbb;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lt-viewer__progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}
.lt-viewer__progress span {
  display: block;
  height: 100%;
  background: var(--color-accent);
  transition: width 0.35s var(--ease);
}
.lt-viewer__thumbs {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.lt-viewer__thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 66px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  scroll-snap-align: center;
  opacity: 0.55;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.lt-viewer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lt-viewer__thumb:hover { opacity: 0.9; }
.lt-viewer__thumb.is-active {
  opacity: 1;
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.lt-work-body {
  padding: 2.75rem 0 3.5rem;
  background: #fff;
}
.lt-work-body__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .lt-work-body__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.lt-work-body__lead,
.lt-prose-block {
  color: var(--color-muted);
  line-height: 1.65;
  font-size: 1.05rem;
}
.lt-work-cta {
  background: var(--color-surface);
  border: 1px solid rgba(166,166,166,0.3);
  padding: 1.5rem 1.35rem;
  display: grid;
  gap: 0.85rem;
}
.lt-work-cta h2 {
  margin: 0;
  font-size: 1.25rem;
}
.lt-work-cta p { margin: 0; color: var(--color-muted); }
.lt-work-cta .lt-btn { width: 100%; }

.lt-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
}
.lt-lightbox.is-open { display: flex; }
.lt-lightbox img {
  max-width: min(94vw, 1400px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lt-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}
.lt-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 0;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lt-lightbox__nav:hover { background: var(--color-accent); }
.lt-lightbox__nav--prev { left: 1rem; }
.lt-lightbox__nav--next { right: 1rem; }
.lt-lightbox__count {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ccc;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

@media (max-width: 700px) {
  .lt-viewer__nav { width: 38px; height: 38px; }
  .lt-viewer__thumb { width: 72px; height: 54px; }
  .lt-lightbox__nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lt-viewer__slide.is-enter img { animation: none; }
}

/* Footer */
.lt-footer {
  background: var(--color-ink);
  color: #ddd;
  padding: 0;
}
.lt-footer a { color: #f5f1f0; text-decoration: none; }
.lt-footer a:hover { color: var(--color-accent); }
.lt-footer__top {
  display: grid;
  gap: 2rem;
  padding: 3.25rem 0 2.5rem;
}
@media (min-width: 720px) {
  .lt-footer__top { grid-template-columns: 1.3fr 1fr; }
}
@media (min-width: 1040px) {
  .lt-footer__top { grid-template-columns: 1.35fr 1fr 1fr 1.1fr; gap: 2.25rem; }
}
.lt-footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.lt-footer__logo img {
  height: 58px;
  width: auto;
}
.lt-footer__tagline,
.lt-footer__meta {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  color: #bdb7b5;
  max-width: 18rem;
  line-height: 1.5;
}
.lt-footer__social {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.lt-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff !important;
}
.lt-social .lt-icon-whatsapp {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
.lt-social:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff !important;
}
.lt-social--whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}
.lt-footer h3 {
  color: #fff;
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lt-footer ul { list-style: none; padding: 0; margin: 0; }
.lt-footer li {
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  color: #cfc9c7;
}
.lt-footer__pouf {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 1.15rem 1.35rem;
  border-radius: 6px;
}
.lt-footer__pouf p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: #cfc9c7;
}
.lt-footer__pouf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: #fff !important;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.15rem;
}
.lt-footer__pouf-link:hover { color: var(--color-accent) !important; }

.lt-footer__transparency {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #141414;
  padding: 0.75rem 0;
}
.lt-transparency {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  align-items: center;
  text-decoration: none !important;
}
.lt-transparency__logos {
  display: block;
  background: #fff;
  padding: 0.3rem 0.45rem;
  border-radius: 3px;
  flex: 0 1 auto;
}
.lt-transparency__logos img {
  width: auto;
  max-width: min(280px, 55vw);
  height: auto;
  max-height: 42px;
  margin: 0;
  display: block;
  object-fit: contain;
}
.lt-transparency__text {
  display: grid;
  gap: 0.15rem;
  flex: 1 1 200px;
  min-width: 0;
}
.lt-transparency__text strong {
  color: var(--color-accent);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.3;
  font-weight: 700;
}
.lt-transparency__text span {
  color: #999;
  font-size: 0.75rem;
}
.lt-transparency:hover .lt-transparency__text span { color: #ddd; }

@media (min-width: 820px) {
  .lt-transparency__logos img {
    max-width: 320px;
    max-height: 48px;
  }
  .lt-transparency__text strong {
    font-size: 0.78rem;
  }
}

.lt-footer__legal {
  padding: 1.1rem 0 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: #8f8886;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}
.lt-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #9a9390 !important;
  text-decoration: none !important;
  opacity: 0.95;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.lt-footer__credit:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.lt-footer__credit-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9b968c;
}
.lt-eh-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #f4f0ea 0%, #e8e2d8 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 106, 26, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: box-shadow 0.25s var(--ease);
}
.lt-footer__credit:hover .lt-eh-plate {
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 106, 26, 0.28),
    0 0 18px rgba(255, 106, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.lt-eh-logo {
  display: block;
  width: auto;
  height: 22px;
  max-width: 150px;
}

/* CTA bar mobile */
.lt-mobile-cta {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 900;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: rgba(27,27,27,0.96);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.lt-mobile-cta .lt-btn { flex: 1; }
@media (min-width: 960px) { .lt-mobile-cta { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 959px) { body { padding-bottom: 68px; } }

/* Cookie */
.lt-cookie {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 3000;
  padding: 0.75rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  pointer-events: none;
}
.lt-cookie__panel {
  pointer-events: auto;
  max-width: min(720px, 100%);
  width: 100%;
  margin: 0 auto;
  background: #fff;
  color: var(--color-ink);
  padding: 1.1rem 1.1rem 1.2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.08);
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
.lt-cookie__panel h2 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.lt-cookie__panel p { margin: 0 0 1rem; font-size: 0.92rem; color: var(--color-muted); }
.lt-cookie__prefs {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.lt-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lt-cookie__actions .lt-btn {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  padding: 0.7rem 0.9rem;
}
.lt-cookie .lt-btn--ghost {
  border-color: var(--color-line);
  color: var(--color-ink);
}
.lt-cookie .lt-btn--ghost:hover { background: var(--color-surface); color: var(--color-ink); }
@media (max-width: 959px) {
  .lt-cookie {
    /* Sopra la barra CTA mobile (≈68px) */
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    padding-bottom: 0.65rem;
  }
  .lt-cookie__panel {
    padding: 1rem 0.9rem 1.05rem;
  }
  .lt-cookie__panel h2 { font-size: 1.05rem; }
  .lt-cookie__panel p { font-size: 0.88rem; margin-bottom: 0.85rem; }
  .lt-cookie__actions {
    flex-direction: column;
  }
  .lt-cookie__actions .lt-btn {
    flex: 1 1 100%;
    width: 100%;
  }
}
@media (max-width: 380px) {
  .lt-cookie {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.lt-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.lt-table th, .lt-table td {
  border: 1px solid rgba(166,166,166,0.4);
  padding: 0.55rem 0.7rem;
  text-align: left;
}

.lt-404 { padding: 5rem 0; text-align: center; }
.lt-404 h1 { margin-bottom: 0.5rem; }

/* Chatbot AI */
.lt-chat {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 1600;
  font-family: var(--font);
}
@media (max-width: 959px) {
  .lt-chat { bottom: calc(4.6rem + env(safe-area-inset-bottom, 0px)); }
}
.lt-chat__fab {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(218, 47, 16, 0.45);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.lt-chat__fab:hover {
  background: var(--color-accent-hover);
  transform: scale(1.04);
}
.lt-chat.is-open .lt-chat__fab { display: none; }
.lt-chat__panel {
  display: none;
  width: min(92vw, 360px);
  height: min(70vh, 520px);
  background: #141414;
  color: #f5f1f0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  flex-direction: column;
  overflow: hidden;
}
.lt-chat.is-open .lt-chat__panel {
  display: flex;
}
.lt-chat__panel[hidden],
.lt-chat__consent[hidden],
.lt-chat__form[hidden] {
  display: none !important;
}
.lt-chat__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, #1d1d1d, #151515);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lt-chat__head strong {
  display: block;
  font-size: 0.95rem;
}
.lt-chat__head span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: #a8a29e;
}
.lt-chat__close {
  border: 0;
  background: transparent;
  color: #ccc;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.15rem;
}
.lt-chat__consent {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(218, 47, 16, 0.08);
}
.lt-chat__consent p {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: #ddd;
  line-height: 1.45;
}
.lt-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.lt-chat__bubble {
  max-width: 92%;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  white-space: pre-wrap;
}
.lt-chat__bubble--assistant {
  align-self: flex-start;
  background: #222;
  border: 1px solid rgba(255,255,255,0.06);
}
.lt-chat__bubble--assistant a {
  color: #ffb199;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}
.lt-chat__bubble--assistant a:hover {
  color: #fff;
}
.lt-chat__bubble--user {
  align-self: flex-end;
  background: var(--color-accent);
  color: #fff;
}
.lt-chat__bubble--pending {
  opacity: 0.7;
  font-style: italic;
}
.lt-chat__form {
  display: flex;
  gap: 0.45rem;
  padding: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #101010;
}
.lt-chat__form textarea {
  flex: 1;
  resize: none;
  min-height: 42px;
  max-height: 96px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #1a1a1a;
  color: #fff;
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-size: 0.9rem;
}
.lt-chat__form textarea:focus {
  outline: 2px solid rgba(218, 47, 16, 0.55);
  outline-offset: 1px;
}
.lt-chat__send {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--color-accent);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lt-chat__send:disabled {
  opacity: 0.55;
  cursor: wait;
}
