:root {
  --bg: #f3efe7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #121212;
  --surface-dark-soft: #1a1a1a;
  --text: #191714;
  --text-soft: #5f584f;
  --border: rgba(25, 23, 20, 0.12);
  --gold: #c89b5c;
  --gold-soft: #e4c79f;
  --shadow: 0 18px 55px rgba(16, 11, 5, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 2rem));
  --font-header: "Avenir Next", "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(200, 155, 92, 0.18), transparent 22%),
    radial-gradient(circle at bottom left, rgba(28, 28, 28, 0.06), transparent 28%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  image-rendering: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  color: var(--text-soft);
}

h1,
h2,
h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  color: var(--text);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.75rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.home .site-shell {
  position: relative;
}

.home [data-site-header] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}

.toast-stack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 80;
  display: grid;
  gap: 0.75rem;
  width: min(420px, calc(100vw - 2rem));
}

.toast {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast--success {
  background: rgba(246, 255, 248, 0.98);
  border-color: rgba(33, 111, 70, 0.18);
  color: #184e32;
}

.toast--error {
  background: rgba(255, 247, 247, 0.98);
  border-color: rgba(146, 37, 37, 0.15);
  color: #7f2424;
}

/* ================================================================
   TOP BAR
   ================================================================ */

.header-top-bar {
  background: #121212;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-header);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(200,155,92,0.18);
}

.home .header-top-bar {
  background: rgba(9, 8, 6, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.header-top-bar__inner {
  min-height: 40px;
  overflow: hidden;
}

.header-top-bar__marquee {
  overflow: hidden;
}

.header-top-bar__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: top-bar-marquee 30s linear infinite;
  will-change: transform;
}

.header-top-bar:hover .header-top-bar__track,
.header-top-bar:focus-within .header-top-bar__track {
  animation-play-state: paused;
}

.header-top-bar__group {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  padding-right: 2rem;
  white-space: nowrap;
}

.header-top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s ease;
}

.header-top-bar__link:hover {
  color: var(--gold-soft);
}

.header-top-bar__link svg {
  flex-shrink: 0;
  color: var(--gold);
}

.header-top-bar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.18);
}

.header-top-bar__area {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.58);
}

.header-top-bar__area svg {
  color: var(--gold);
  flex-shrink: 0;
}

@keyframes top-bar-marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(calc(-100% - 2rem));
  }
}

/* ================================================================
   MAIN HEADER
   ================================================================ */

.site-header {
  position: relative;
  z-index: 30;
  width: min(1240px, calc(100% - 2rem));
  margin: 0.75rem auto 0;
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  background: rgba(243, 239, 231, 0.78);
  border: 1px solid rgba(25, 23, 20, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(16, 11, 5, 0.12);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home .site-header {
  background: rgba(243, 239, 231, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
  padding: 0 1.5rem;
  transition: min-height 0.4s ease;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark__logo-wrap {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.brand-mark__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark__copy {
  display: grid;
  gap: 0.05rem;
  font-family: var(--font-header);
}

.brand-mark__copy strong {
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark__copy span {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav__caret {
  width: 0.48rem;
  height: 0.48rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.22s ease;
}

.site-nav__dropdown:hover .site-nav__caret,
.site-nav__dropdown.is-open .site-nav__caret,
.site-nav__dropdown.is-active .site-nav__caret {
  transform: rotate(225deg) translateY(-1px);
}

.site-subnav {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 300px;
  padding: 0.7rem;
  display: grid;
  gap: 0.3rem;
  background: rgba(248, 244, 237, 0.98);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 45;
}

.site-nav__dropdown:hover .site-subnav,
.site-nav__dropdown.is-open .site-subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-subnav__link {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  font-family: var(--font-header);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-subnav__link:hover,
.site-subnav__link.is-active {
  background: rgba(200,155,92,0.12);
  color: #8a673c;
}

.site-nav a {
  position: relative;
  font-family: var(--font-header);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: #8a673c;
  background: rgba(200,155,92,0.08);
}

.site-nav a.is-active {
  color: #8a673c;
  background: rgba(200,155,92,0.12);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-header);
  flex-shrink: 0;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(200,155,92,0.12);
  color: #8a673c;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-phone-link:hover {
  background: rgba(200,155,92,0.22);
  transform: translateY(-1px);
}

.button--primary.header-discount-button {
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1;
  color: #16120d;
  border: none;
  background: linear-gradient(180deg, #efcf97 0%, #dbb06a 100%);
  box-shadow: 0 10px 22px rgba(167, 118, 46, 0.16);
  text-shadow: none;
  transform: none;
}

.button--primary.header-discount-button:hover {
  background: linear-gradient(180deg, #f3d7a7 0%, #e0b777 100%);
  box-shadow: 0 14px 26px rgba(167, 118, 46, 0.2);
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 0.5rem;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button,
.link-button {
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.12);
}

.button--primary {
  color: #111;
  background: linear-gradient(135deg, #edcf9c, #c89b5c);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(25, 23, 20, 0.14);
}

.button--sm {
  min-height: 44px;
  padding: 0 1rem;
  font-size: 0.92rem;
}

.button--full {
  width: 100%;
}

.hero,
.page-hero {
  padding: 5.5rem 0 3rem;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: 11rem;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(9, 8, 6, 0.78) 0%, rgba(9, 8, 6, 0.58) 42%, rgba(9, 8, 6, 0.72) 100%),
    radial-gradient(circle at top right, rgba(200, 155, 92, 0.16), transparent 28%);
  z-index: 1;
}

.hero__background-stack {
  position: absolute;
  inset: 0;
}

.hero__background-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: heroStackCrossfade 24s ease-in-out infinite;
}

.hero__background-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  animation: heroStackZoom 24s linear infinite;
}

.hero__background-slide:nth-child(1),
.hero__background-slide:nth-child(1) img { animation-delay: 0s; }

.hero__background-slide:nth-child(2),
.hero__background-slide:nth-child(2) img { animation-delay: 6s; }

.hero__background-slide:nth-child(3),
.hero__background-slide:nth-child(3) img { animation-delay: 12s; }

.hero__background-slide:nth-child(4),
.hero__background-slide:nth-child(4) img { animation-delay: 18s; }

.hero-grid,
.page-hero__grid,
.split-layout,
.contact-grid,
.footer-grid,
.faq-grid,
.cta-panel {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow,
.hero .hero-card h2,
.hero .hero-card a {
  color: #fff;
}

.hero-copy .eyebrow {
  color: var(--gold-soft);
}

.hero-copy .eyebrow::before {
  background: currentColor;
}

.hero-copy p {
  max-width: 42rem;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero .button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero .button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #8c6739;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.4rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-highlights div,
.stat-card,
.service-card,
.featured-card,
.value-card,
.audience-card,
.sidebar-card,
.contact-card,
.gallery-card,
.process-card,
.service-detail,
.faq-stack details,
.cta-panel,
.cookie-banner__inner,
.offer-modal__dialog,
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.hero-highlights div {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.76);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual__primary,
.hero-visual__secondary {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-visual__primary {
  width: min(100%, 470px);
  margin-left: auto;
}

.hero-visual__secondary {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: min(52%, 265px);
  border: 10px solid rgba(255, 255, 255, 0.95);
}

.hero-visual img,
.featured-card img,
.service-card img,
.service-detail img,
.image-panel img,
.gallery-card img,
.page-hero__image img,
.business-card-frame img,
.editorial-card img {
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(360px, 92%);
  padding: 1.5rem;
  background: rgba(17, 17, 17, 0.88);
  color: rgba(255, 255, 255, 0.92);
}

.hero-card h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.hero-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--gold-soft);
  font-weight: 700;
}

.section {
  padding: 2rem 0 5rem;
}

.section--tight {
  padding-top: 0;
}

.home .section--tight {
  padding-top: 1.5rem;
}

.section--dark {
  padding: 4.5rem 0;
  background: linear-gradient(145deg, #101010, #1d1d1d);
}

.section--dark h2,
.section--dark h3,
.section--dark p,
.section--dark span,
.section--dark summary {
  color: rgba(255, 255, 255, 0.92);
}

.section--dark .eyebrow {
  color: var(--gold-soft);
}

.section--cta {
  padding-bottom: 5.5rem;
}

.section-heading {
  text-align: center;
  max-width: 850px;
  margin-bottom: 2rem;
}

.section-heading,
.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.72);
}

.stats-grid,
.services-grid,
.featured-grid,
.audience-grid {
  display: grid;
  gap: 1.35rem;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 1.6rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.85rem, 3vw, 2.3rem);
  font-family: "Cormorant Garamond", serif;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 1.1 / 0.86;
}

.service-card__body {
  padding: 1.35rem;
}

.service-card__title {
  margin: 0.45rem 0 0;
  font-size: 1.38rem;
}

.service-card__text {
  margin: 0;
  color: var(--text-soft);
}

.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.services-card-grid {
  align-items: stretch;
}

.service-card--compact {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card--compact img {
  aspect-ratio: 1.08 / 0.74;
}

.service-card--compact .service-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  flex: 1;
}

.service-card__label,
.gallery-card__content span,
.featured-card__content span {
  color: #8a673c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.featured-card img {
  aspect-ratio: 0.95 / 1.1;
}

.featured-card__content {
  padding: 1.2rem;
}

.split-layout {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
  align-items: stretch;
}

.showcase-stack {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.brand-panel {
  padding: 1.6rem;
}

.business-card-frame {
  margin: 1.35rem 0 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(25, 23, 20, 0.08);
  background: #f6f0e7;
  box-shadow: var(--shadow);
}

.business-card-frame img {
  aspect-ratio: 1.35 / 1;
}

.split-layout__copy p {
  max-width: 38rem;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #edcf9c, #c89b5c);
}

.process-panel,
.value-stack,
.faq-stack {
  display: grid;
  gap: 1rem;
}

.process-card,
.value-card,
.audience-card,
.sidebar-card,
.contact-card,
.faq-stack details {
  padding: 1.45rem;
}

.process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.process-card > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(200, 155, 92, 0.16);
  color: #8a673c;
  font-weight: 800;
}

.page-hero__grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.page-hero__image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.page-hero__image img {
  aspect-ratio: 1.25 / 0.9;
  object-fit: cover;
}

.service-page--restoration .page-hero__grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.service-page--restoration .page-hero__image {
  min-height: 520px;
}

.service-page--restoration .page-hero__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.page-hero__image-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1.25 / 0.9;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0);
}

.page-hero__image-stack .page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  border-radius: inherit;
  box-shadow: none;
  animation: heroStackCrossfade 24s ease-in-out infinite;
}

.page-hero__image-stack .page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  animation: heroStackZoom 24s linear infinite;
}

.page-hero__image-stack .page-hero__image:nth-child(1),
.page-hero__image-stack .page-hero__image:nth-child(1) img { animation-delay: 0s; }

.page-hero__image-stack .page-hero__image:nth-child(2),
.page-hero__image-stack .page-hero__image:nth-child(2) img { animation-delay: 6s; }

.page-hero__image-stack .page-hero__image:nth-child(3),
.page-hero__image-stack .page-hero__image:nth-child(3) img { animation-delay: 12s; }

.page-hero__image-stack .page-hero__image:nth-child(4),
.page-hero__image-stack .page-hero__image:nth-child(4) img { animation-delay: 18s; }

@keyframes heroStackCrossfade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  25%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes heroStackZoom {
  0%   { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about .audience-card {
  background: rgba(255, 255, 255, 0.94);
}

.about .audience-card h3,
.about .audience-card p {
  color: var(--text);
}

.image-panel {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  min-height: 500px;
}

.image-panel img {
  height: 100%;
}

.stacked-services {
  display: grid;
  gap: 1.5rem;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  overflow: hidden;
}

.service-detail figure {
  margin: 0;
  min-height: 360px;
}

.service-detail__copy {
  padding: 1.7rem;
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.service-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.service-page-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-page-gallery .editorial-card img {
  aspect-ratio: 1 / 0.88;
}

.service-sidebar {
  display: grid;
  gap: 1rem;
}

.service-sidebar__card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.service-sidebar__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.service-sidebar__nav a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(25, 23, 20, 0.08);
}

.service-sidebar__nav a:hover,
.service-sidebar__nav a.is-active {
  background: rgba(200,155,92,0.12);
  color: #8a673c;
}

.faq-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

.faq-stack details[open] {
  background: rgba(255, 255, 255, 0.08);
}

.faq-stack summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-stack p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.filter-chip {
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.filter-chip.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #edcf9c, #c89b5c);
}

.gallery-grid {
  column-count: 3;
  column-gap: 1.25rem;
}

.gallery-card {
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

.gallery-card img {
  aspect-ratio: 1 / 0.9;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s ease;
}

.gallery-card__content {
  padding: 1.25rem;
}

.gallery-card__content h2 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  margin-top: 0.35rem;
  line-height: 1.2;
}

.gallery-card__content--compact h2 {
  font-size: 1.22rem;
}

.gallery-grid--portfolio .gallery-card--landscape img {
  aspect-ratio: 1.2 / 0.78;
}

.gallery-grid--portfolio .gallery-card--portrait img {
  aspect-ratio: 0.9 / 1.16;
}

.gallery-grid--portfolio .gallery-card--square img {
  aspect-ratio: 1 / 1;
}

.gallery-grid--portfolio .gallery-card--tall img {
  aspect-ratio: 0.86 / 1.22;
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-card:hover img,
.service-card:hover img,
.featured-card:hover img,
.editorial-card:hover img,
.image-panel:hover img,
.business-card-frame:hover img {
  transform: scale(1.04);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-side-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-side-gallery .editorial-card img {
  aspect-ratio: 1 / 0.98;
}

.editorial-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.editorial-card img {
  aspect-ratio: 1 / 0.9;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s ease;
}

.editorial-card--1 img,
.editorial-card--4 img {
  aspect-ratio: 0.92 / 1.14;
}

.editorial-card--2 img {
  aspect-ratio: 1.08 / 0.8;
}

.editorial-card__meta {
  padding: 1rem 1.05rem 1.15rem;
}

.editorial-card__meta span {
  color: #8a673c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-card__meta h3 {
  margin-top: 0.45rem;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.75fr;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-form,
.popup-form {
  display: grid;
  gap: 1rem;
}

.contact-card h2 {
  margin-bottom: 0.9rem;
}

.contact-card .contact-form {
  margin-top: 0.25rem;
}

.contact-form .button {
  margin-top: 0.35rem;
  justify-self: start;
}

.contact-sidebar .sidebar-card h3 {
  margin-bottom: 0.75rem;
}

.contact-sidebar .sidebar-card p {
  margin: 0 0 1.15rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(25, 23, 20, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-list li {
  line-height: 1.55;
}

.contact-list strong {
  color: var(--text);
}

.contact-sidebar .contact-list {
  gap: 0.85rem;
}

.contact-sidebar .contact-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(25, 23, 20, 0.08);
}

.contact-sidebar .contact-list strong {
  display: block;
  padding-top: 0.08rem;
  color: #8a673c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-sidebar .contact-list a,
.contact-sidebar .contact-list li {
  word-break: break-word;
}

.contact-sidebar .contact-list a {
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-sidebar .contact-list a:hover {
  color: #8a673c;
}

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
  padding: 0;
  margin-top: 0;
}

/* ---- CTA Band ---- */

.footer-cta-band {
  background: linear-gradient(135deg, #1a1610 0%, #2a2218 50%, #1a1610 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.footer-cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,92,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-cta-band__eyebrow {
  color: var(--gold-soft) !important;
}

.footer-cta-band__eyebrow::before {
  background: var(--gold-soft) !important;
}

.footer-cta-band h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.footer-cta-band p {
  color: rgba(255,255,255,0.62);
  max-width: 36rem;
  margin: 0;
  font-size: 1.02rem;
}

.footer-cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.button--ghost-dark {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button--ghost-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(200,155,92,0.35);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18,18,18,0.25);
}

/* ---- Footer Main ---- */

.footer-main {
  background: #111111;
  padding: 4.5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2.5rem;
  padding: 0;
  border-top: none;
}

.footer-brand-col .brand-mark--footer {
  margin-bottom: 1.2rem;
}

.footer-brand-col .brand-mark--footer .brand-mark__logo-wrap {
  width: 62px;
  height: 62px;
}

.footer-brand-col .brand-mark--footer .brand-mark__copy strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-brand-col .brand-mark--footer .brand-mark__copy span {
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  max-width: 26rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.footer-social-icons {
  gap: 0.6rem;
}

.footer-social-icons .social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.footer-social-icons .social-link svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.footer-link-col .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-link-col .footer-links a {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-link-col .footer-links a:hover {
  color: var(--gold-soft);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-contact-list li a {
  color: rgba(255,255,255,0.58);
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
  color: var(--gold-soft);
}

/* ---- Social Links ---- */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(7, 9, 15, 0.18);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s ease,
    filter 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(7, 9, 15, 0.25);
}

.social-link--dark {
  background: rgba(255,255,255,0.06);
  color: rgba(255, 255, 255, 0.72);
}

.social-link--dark:hover {
  border-color: rgba(200, 155, 92, 0.4);
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}

.social-link--light {
  background: rgba(255,255,255,0.08);
  color: #4285f4;
}

.social-link--whatsapp {
  background: #25d366;
  color: #ffffff;
}

.social-link--google svg {
  width: 22px;
  height: 22px;
}

.floating-actions {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 55;
  pointer-events: none;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.2);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.floating-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(17, 17, 17, 0.24);
}

.floating-action svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.floating-action--whatsapp {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  background: linear-gradient(135deg, #31d267, #1fa855);
  color: #ffffff;
}

.floating-action--whatsapp.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}

.floating-action--top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: rgba(17, 17, 17, 0.92);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.floating-action--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---- Footer Bottom ---- */

.footer-bottom {
  background: #0a0a0a;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  font-weight: 500;
}

.footer-credit-link {
  color: var(--gold);
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-credit-link:hover {
  color: var(--gold-soft);
}

.link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8a673c;
  font-weight: 800;
  cursor: pointer;
}

.cta-panel {
  grid-template-columns: 1.3fr auto;
  align-items: center;
  padding: 1.5rem 1.75rem;
}

.offer-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 60;
}

.offer-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.offer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.offer-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100svh - 2rem);
  display: grid;
  gap: 0.85rem;
  padding: 2rem;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top right, rgba(200, 155, 92, 0.18), transparent 24%),
    #f8f4ed;
}

.offer-modal__close {
  position: sticky;
  top: 0;
  justify-self: end;
  width: 42px;
  height: 42px;
  margin: -0.35rem -0.35rem 0 0;
  border-radius: 50%;
  border: 0;
  background: rgba(248, 244, 237, 0.96);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: min(420px, calc(100vw - 2rem));
}

.cookie-banner__inner {
  padding: 1rem 1rem 1.1rem;
  background: rgba(17, 17, 17, 0.96);
}

.cookie-banner__inner p,
.cookie-banner__inner a {
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.legal-hero {
  padding-bottom: 0;
}

.legal-copy {
  padding-top: 2.5rem;
}

.rich-text {
  max-width: 860px;
}

.rich-text h2 {
  margin-top: 2rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

[data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 26px;
  --reveal-scale: 0.985;
  --reveal-duration: 0.7s;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.2, 0.8, 0.2, 1),
    transform var(--reveal-duration) cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

[data-reveal-direction="up"] {
  --reveal-y: 30px;
}

[data-reveal-direction="down"] {
  --reveal-y: -30px;
}

[data-reveal-direction="left"] {
  --reveal-x: 44px;
  --reveal-y: 0px;
}

[data-reveal-direction="right"] {
  --reveal-x: -44px;
  --reveal-y: 0px;
}

[data-reveal-speed="slow"] {
  --reveal-duration: 0.95s;
}

[data-reveal-speed="slower"] {
  --reveal-duration: 1.15s;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.about [data-reveal] {
  transition-timing-function: cubic-bezier(0.18, 0.84, 0.24, 1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.button,
.filter-chip,
.site-nav a,
.gallery-card,
.service-card,
.featured-card,
.editorial-card,
.value-card,
.audience-card,
.process-card,
.brand-panel,
.contact-card,
.sidebar-card,
.faq-stack details {
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.gallery-card:hover,
.service-card:hover,
.featured-card:hover,
.editorial-card:hover,
.brand-panel:hover,
.value-card:hover,
.audience-card:hover,
.process-card:hover,
.contact-card:hover,
.sidebar-card:hover,
.faq-stack details:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(16, 11, 5, 0.16);
}

.hero-visual__secondary {
  animation: drift 6.5s ease-in-out infinite;
}

.hero-card {
  animation: fadeLift 1s ease 0.25s both;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero__grid,
  .split-layout,
  .contact-grid,
  .faq-grid,
  .cta-panel,
  .service-detail,
  .showcase-grid,
  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .services-grid,
  .featured-grid,
  .audience-grid,
  .stats-grid,
  .editorial-grid--wide,
  .service-page-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    column-count: 2;
  }

  .hero-visual {
    min-height: 540px;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-cta-band__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-cta-band__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .footer-cta-band p {
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .header-top-bar {
    font-size: 0.72rem;
  }

  .header-top-bar__inner {
    min-height: 36px;
  }

  .header-top-bar__group {
    gap: 0.75rem;
    padding-right: 1.5rem;
  }

  .site-header {
    width: calc(100% - 1rem);
    margin-top: 0.75rem;
  }

  .home .hero {
    padding-top: 8.75rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-bar {
    min-height: 64px;
    gap: 0.9rem;
    padding: 0 1rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(248, 244, 237, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    z-index: 40;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__dropdown {
    width: 100%;
  }

  .site-nav__dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .site-subnav {
    position: static;
    min-width: 0;
    margin-top: 0.55rem;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .site-nav__dropdown.is-open .site-subnav {
    display: grid;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
    border-radius: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta-group {
    gap: 0.5rem;
  }

  .header-cta-group .button {
    font-size: 0.8rem;
    min-height: 38px;
    padding: 0 0.9rem;
  }

  .header-phone-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .hero,
  .page-hero {
    padding-top: 3rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    max-width: none;
  }

  .hero-copy .eyebrow,
  .hero-card .eyebrow {
    justify-content: center;
  }

  .button-row {
    gap: 0.75rem;
    margin: 1.5rem 0 1.75rem;
  }

  .hero-highlights,
  .services-grid,
  .featured-grid,
  .audience-grid,
  .stats-grid,
  .form-grid,
  .editorial-grid,
  .editorial-grid--wide,
  .service-page-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 1;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 0.9rem;
    margin-top: 0.35rem;
  }

  .hero-visual__primary,
  .hero-visual__secondary,
  .hero-card {
    position: static;
    width: 100%;
    margin: 0;
  }

  .hero-visual__primary,
  .hero-visual__secondary {
    border-radius: 24px;
  }

  .hero-visual__primary img {
    aspect-ratio: 1 / 1.02;
  }

  .hero-visual__secondary {
    max-width: 78%;
    justify-self: center;
    border: 6px solid rgba(255, 255, 255, 0.95);
  }

  .hero-visual__secondary img {
    aspect-ratio: 0.88 / 1.08;
  }

  .hero-card {
    padding: 1.2rem;
    border-radius: 24px;
    text-align: center;
  }

  .hero-card h2 {
    font-size: clamp(1.45rem, 6vw, 1.8rem);
  }

  .hero-card a {
    justify-content: center;
  }

  .service-detail figure,
  .image-panel {
    min-height: 280px;
  }

  .button-row,
  .cookie-banner__actions {
    flex-direction: column;
  }

  .offer-modal {
    place-items: center;
    padding: max(0.75rem, env(safe-area-inset-top)) 0.75rem 0.75rem;
  }

  .offer-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 1.5rem - env(safe-area-inset-top));
    padding: 0.9rem 0.9rem 1rem;
    border-radius: 22px;
  }

  .offer-modal__close {
    top: 0;
    width: 38px;
    height: 38px;
    margin: 0 0 0.2rem auto;
  }

  .floating-actions {
    inset: auto 0.75rem 0.75rem 0.75rem;
  }

  .floating-action {
    min-height: 52px;
    padding: 0 0.95rem;
    font-size: 0.92rem;
  }

  .floating-action--whatsapp {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-action--top {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .contact-sidebar .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .toast-stack {
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-cta-band {
    padding: 3rem 0;
  }

  .footer-main {
    padding: 3rem 0 2rem;
  }
}

/* ================================================================
   LIGHTBOX
   ================================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-visible {
  opacity: 1;
  visibility: visible;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.92);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}

.lightbox__dialog {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 90vh;
  display: grid;
  place-items: center;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s, opacity 0.4s ease 0.1s;
}

.lightbox.is-visible .lightbox__dialog {
  transform: scale(1);
  opacity: 1;
}

.lightbox__image {
  max-width: 100vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(10, 8, 5, 0.72);
  backdrop-filter: blur(10px);
  border: none;
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05);
}

.editorial-card img, 
.page-hero__image img, 
.gallery-card img,
.image-panel img,
.hero-visual__primary img,
.hero-visual__secondary img,
.service-card img,
.featured-card img,
.business-card-frame img {
  cursor: pointer;
  cursor: zoom-in;
}
