:root {
  --bg: #f2f0eb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #111110;
  --surface-dark-soft: #20201f;
  --text: #181612;
  --text-soft: #5d574e;
  --border: rgba(25, 23, 20, 0.12);
  --gold: #b8914f;
  --gold-soft: #e6c987;
  --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: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(184, 145, 79, 0.2), 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: var(--font-header);
  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;
}

.site-shell {
  position: relative;
}

[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);
}

.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);
}

.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: 62px;
  height: 62px;
  border-radius: 16px;
  background: #151515;
  border: 1px solid rgba(184, 145, 79, 0.4);
  box-shadow: 0 10px 26px rgba(11, 10, 8, 0.16);
  overflow: hidden;
}

.brand-mark__logo {
  width: 92%;
  height: 92%;
  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, #f0d58f 0%, #b8914f 100%);
  box-shadow: 0 10px 22px rgba(126, 90, 37, 0.2);
  text-shadow: none;
  transform: none;
}

.button--primary.header-discount-button:hover {
  background: linear-gradient(180deg, #f5dfaa 0%, #c49d58 100%);
  box-shadow: 0 14px 26px rgba(126, 90, 37, 0.24);
}

.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 h1 {
  margin: 0 0 1rem;
  text-wrap: balance;
}

.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: 0.85rem;
}

.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: 50px;
  padding: 0.82rem 0.95rem;
  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: 120px;
  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(620px, calc(100vw - 2rem));
  display: grid;
  gap: 0.6rem;
  padding: 1.25rem;
  overflow: visible;
  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__dialog h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  line-height: 1.08;
}

.offer-modal__dialog > p {
  margin: 0 0 0.2rem;
  max-width: 46ch;
  font-size: 0.95rem;
}

.offer-modal .form-grid {
  gap: 0.85rem;
}

.offer-modal label {
  gap: 0.45rem;
  font-size: 0.92rem;
}

.offer-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  justify-self: end;
  width: 42px;
  height: 42px;
  margin: 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;
  --reveal-rotate: 0deg;
  --reveal-blur: 0px;
  opacity: 0;
  filter: blur(var(--reveal-blur));
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale)) rotate(var(--reveal-rotate));
  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),
    filter var(--reveal-duration) cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

[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-style="float"] {
  --reveal-y: 18px;
  --reveal-scale: 0.97;
  --reveal-blur: 10px;
}

[data-reveal-style="sweep"] {
  --reveal-x: -24px;
  --reveal-scale: 0.975;
  --reveal-rotate: -1.5deg;
}

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

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    filter: none;
    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;
}

.home .hero--cinematic {
  overflow: clip;
}

.home .hero--cinematic::before,
.home .hero--cinematic::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  opacity: 0.34;
  filter: blur(0);
}

.home .hero--cinematic::before {
  top: 6rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(224, 188, 118, 0.3), rgba(224, 188, 118, 0) 66%);
  animation: ambientOrb 12s ease-in-out infinite;
}

.home .hero--cinematic::after {
  right: -4rem;
  bottom: 4rem;
  width: 20rem;
  height: 20rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 70%);
  animation: ambientOrb 14s ease-in-out infinite reverse;
}

.home .hero-grid,
.home .hero-copy,
.home .hero-visual {
  position: relative;
  z-index: 1;
}

.home .hero-title,
.home .section-heading h2,
.home .split-layout__copy h2,
.home .atelier-copy h2,
.home .gallery-intro h2,
.home .brand-panel h2 {
  text-wrap: balance;
}

.home .hero-copy > *,
.home .section-heading > *,
.home .atelier-copy > *,
.home .gallery-intro > *,
.home .split-layout__copy > *,
.home .brand-panel > * {
  position: relative;
}

.home .hero-copy > *::after,
.home .section-heading > *::after,
.home .atelier-copy > *::after,
.home .gallery-intro > *::after,
.home .split-layout__copy > *::after,
.home .brand-panel > *::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15em;
  height: 115%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 9, 10, 0) 0%, rgba(9, 9, 10, 0.06) 100%);
  transform-origin: bottom center;
  transform: scaleY(0);
  opacity: 0;
}

.home .hero-copy > .is-revealed::after,
.home .section-heading > .is-revealed::after,
.home .atelier-copy > .is-revealed::after,
.home .gallery-intro > .is-revealed::after,
.home .split-layout__copy > .is-revealed::after,
.home .brand-panel > .is-revealed::after {
  animation: textSheen 0.65s ease forwards;
}

.home .hero-float {
  animation: softFloat 5.5s ease-in-out infinite;
}

.home .hero-copy__lead {
  position: relative;
}

.home .hero-copy__lead::before {
  content: "";
  position: absolute;
  inset: auto auto -1.05rem 0;
  width: 8rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(224, 188, 118, 0.9), rgba(224, 188, 118, 0));
  opacity: 0.85;
}

.home .hero-highlights div,
.home .hero-service-dock span,
.home .service-card,
.home .featured-card,
.home .process-card,
.home .stat-card,
.home .atelier-tile,
.home .brand-panel,
.home .business-card-frame {
  transform-origin: center;
}

.home .hero-highlights div {
  overflow: hidden;
}

.home .hero-highlights div::before,
.home .service-card::before,
.home .featured-card::before,
.home .process-card::before,
.home .stat-card::before,
.home .atelier-tile::before,
.home .brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 46%, transparent 72%);
  opacity: 0;
  transform: translateX(-115%);
}

.home .hero-highlights div.is-revealed::before,
.home .service-card.is-revealed::before,
.home .featured-card.is-revealed::before,
.home .process-card.is-revealed::before,
.home .stat-card.is-revealed::before,
.home .atelier-tile.is-revealed::before,
.home .brand-panel.is-revealed::before {
  animation: cardSweep 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home .hero-service-dock span {
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.home .hero-service-dock span:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.home .hero-visual__primary,
.home .hero-visual__secondary {
  overflow: hidden;
}

.home .hero-visual__primary img,
.home .hero-visual__secondary img,
.home .service-card img,
.home .featured-card img,
.home .business-card-frame img {
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

.home .hero-visual__primary:hover img,
.home .hero-visual__secondary:hover img,
.home .service-card:hover img,
.home .featured-card:hover img,
.home .business-card-frame:hover img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.03);
}

.home .service-marquee__track {
  animation-duration: 20s;
}

@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);
  }
}

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

@keyframes ambientOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -12px, 0) scale(1.08);
  }
}

@keyframes textSheen {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  40% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
  }
}

@keyframes cardSweep {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }
  35% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

@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-width: 420px;
    max-height: calc(100svh - 2rem - env(safe-area-inset-top));
    gap: 0.65rem;
    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;
  }

  .offer-modal {
    padding: 0.75rem;
    align-items: center;
  }

  .offer-modal__dialog {
    width: min(100%, 34rem);
    padding: 1rem;
  }

  .offer-modal .form-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .offer-modal textarea {
    min-height: 104px;
  }
}

/* ================================================================
   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;
}

/* ================================================================
   VSS 2026 VISUAL REFRESH
   ================================================================ */

:root {
  --bg: #f7f7f5;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --surface-dark: #0b0b0c;
  --surface-dark-soft: #171719;
  --text: #111113;
  --text-soft: #65656a;
  --border: rgba(17, 17, 19, 0.09);
  --gold: #aa8950;
  --gold-soft: #dac38e;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-header: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 245, 1) 36rem), var(--bg);
  letter-spacing: -0.01em;
  font-family: var(--font-body);
}

h1, h2, h3 {
  font-family: var(--font-header);
  letter-spacing: -0.04em;
  line-height: 1;
}

h1 { font-size: clamp(2.7rem, 5.8vw, 5rem); }
h2 { font-size: clamp(1.95rem, 3.6vw, 3.35rem); }
h3 { font-size: clamp(1.05rem, 1.5vw, 1.35rem); letter-spacing: -0.02em; }

p, li { font-size: 0.97rem; }

.header-top-bar { background: #0b0b0c; border: 0; }
.header-top-bar { background: rgba(11, 11, 12, 0.62); }

.site-header {
  width: min(1180px, calc(100% - 2rem));
  margin-top: 0.9rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.site-header { background: rgba(255, 255, 255, 0.78); }
.nav-bar { min-height: 70px; padding: 0 1rem; }

.brand-mark__logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border-color: rgba(170, 137, 80, 0.28);
  box-shadow: none;
}

.brand-mark__copy span { letter-spacing: 0.02em; }

.site-nav a {
  border-radius: 999px;
  letter-spacing: 0;
  font-size: 0.86rem;
}

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

.site-nav a:hover,
.site-nav a.is-active,
.site-subnav__link:hover,
.site-subnav__link.is-active {
  color: #111113;
  background: rgba(17, 17, 19, 0.06);
}

.site-subnav {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.button,
.button--ghost-dark {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.button--primary,
.button--primary.header-discount-button,
.filter-chip.is-active {
  color: #0b0b0c;
  background: #e5c77f;
  box-shadow: none;
}

.button--primary:hover,
.button--primary.header-discount-button:hover {
  background: #f0d795;
  box-shadow: 0 14px 26px rgba(170, 137, 80, 0.18);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.58);
}

.hero {
  min-height: 100vh;
  padding: 11rem 0 5rem;
  display: grid;
  align-items: center;
}

.hero__background::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.24) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.72));
}

.hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr); }
.hero-copy { width: min(760px, 100%); }
.hero-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(3.8rem, 6vw, 5.8rem);
}
.hero-copy p { max-width: 48rem; font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.65; }
.hero-visual {
  display: block;
  min-height: 470px;
}

.hero-visual__primary {
  width: min(100%, 410px);
}

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

.hero-visual__secondary {
  width: min(58%, 240px);
  bottom: 4.5rem;
}

.hero-card {
  width: min(340px, 94%);
  padding: 1.15rem;
  border-radius: 22px;
}

.hero-card h2 {
  font-family: var(--font-header);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.hero-highlights {
  width: min(820px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-highlights div {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero-service-dock {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  width: min(680px, 100%);
  margin-top: 1.25rem;
}

.hero-service-dock span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.eyebrow { gap: 0.65rem; letter-spacing: 0.12em; color: var(--gold); }
.eyebrow::before { width: 26px; }

.section { padding: 5.5rem 0; }
.section--tight { padding-top: 1.4rem; padding-bottom: 1.4rem; }
.section--dark { background: #0b0b0c; }
.section-heading { max-width: 900px; }

.stats-grid {
  transform: translateY(-3.5rem);
  margin-bottom: -3.5rem;
}

.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,
.hero-card,
.brand-panel,
.editorial-card,
.service-sidebar__card {
  border-radius: var(--radius-lg);
  border-color: rgba(17, 17, 19, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.stat-card { text-align: left; padding: 1.25rem; }
.stat-card strong { font-family: var(--font-header); font-size: 1.65rem; letter-spacing: -0.03em; }

.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.simple-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card { background: #fff; }
.service-card img { aspect-ratio: 1.35 / 0.72; }
.simple-service-card img { aspect-ratio: 1.42 / 0.64; }
.service-card__body { padding: 1.05rem; }

.service-card__label,
.gallery-card__content span,
.featured-card__content span,
.editorial-card__meta span {
  color: #8b713e;
  letter-spacing: 0.08em;
}

.featured-grid,
.editorial-grid--wide { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.featured-card img { aspect-ratio: 1 / 1.08; }
.split-layout, .showcase-grid { gap: 3rem; }

.process-card { box-shadow: none; background: #fff; border-color: rgba(17, 17, 19, 0.08); }
.process-card > span { border-radius: 14px; background: #f4f1ea; color: #8b713e; }
.check-list li::before { background: #111113; }

.page-hero { padding: 5rem 0 4rem; }
.service-simple-hero {
  padding: 4.5rem 0 4.75rem;
  background:
    radial-gradient(circle at left top, rgba(170, 137, 80, 0.14), transparent 30%),
    linear-gradient(180deg, #fcfcfb 0%, #f7f7f5 55%, #efede7 100%);
}

.service-simple-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
}

.service-simple-hero__copy {
  max-width: 35rem;
  padding: 0.35rem 0 0;
}

.service-simple-hero__copy h1 {
  max-width: 10ch;
  font-family: var(--font-header);
  margin: 0 0 1.1rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 780;
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: #111113;
  text-transform: none;
}
.service-simple-hero__copy p {
  max-width: 35rem;
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.72;
  color: #5c5a54;
}

.service-simple-hero__copy .button-row {
  margin-top: 1.8rem;
  margin-bottom: 0;
}

.service-simple-hero__image {
  overflow: hidden;
  margin: 0;
  min-height: clamp(360px, 48vw, 560px);
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
  background: #ddd7cb;
}

.service-simple-hero__image img {
  width: 100%;
  aspect-ratio: 1.2 / 0.95;
  height: 100%;
  object-fit: cover;
}

.page-hero--with-motion {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #101011;
}

.page-hero--with-motion::before,
.page-hero--with-motion::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero--with-motion::before {
  background: linear-gradient(135deg, rgba(16, 16, 17, 0.82), rgba(16, 16, 17, 0.56));
}

.page-hero--with-motion::after {
  background:
    radial-gradient(circle at 18% 30%, rgba(231, 198, 121, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(16, 16, 17, 0.18), rgba(16, 16, 17, 0.4));
}

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

.page-hero--with-motion .page-hero__grid > div:first-child h1,
.page-hero--with-motion .projects-hero__copy h1,
.page-hero--with-motion .contact-hero__copy h1,
.page-hero--with-motion .service-simple-hero__copy h1,
.page-hero--with-motion .section-heading h1 {
  color: #fff;
}

.page-hero--with-motion .page-hero__grid > div:first-child p,
.page-hero--with-motion .projects-hero__copy p,
.page-hero--with-motion .contact-hero__copy p,
.page-hero--with-motion .service-simple-hero__copy p,
.page-hero--with-motion .section-heading p {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero--with-motion .page-hero__grid > div:first-child .eyebrow,
.page-hero--with-motion .projects-hero__copy .eyebrow,
.page-hero--with-motion .contact-hero__copy .eyebrow,
.page-hero--with-motion .section-heading .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero--with-motion .contact-hero__copy .eyebrow::after {
  background: rgba(255, 255, 255, 0.35);
}

.service-simple-nav {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(17, 17, 19, 0.05);
}

.service-simple-nav a {
  white-space: nowrap;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 800;
}

.service-simple-nav a.is-active,
.service-simple-nav a:hover {
  color: #111113;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-chip-panel {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
}

.service-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.service-chip-list span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: #f2f2ef;
  color: #303034;
  font-weight: 800;
}

.service-simple-gallery .editorial-card { box-shadow: none; }
.service-simple-gallery .editorial-card img { aspect-ratio: 1 / 0.82; }

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

.service-simple-cta h2 { max-width: 850px; }
.footer-cta-band { background: #0b0b0c; }
.footer-main { background: #111113; }
.footer-grid { grid-template-columns: 1.15fr 0.75fr 0.85fr 1.2fr; }
.footer-heading, .footer-credit-link, .footer-contact-list li svg { color: var(--gold-soft); }

.services .page-hero h1 {
  max-width: 13ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.services .page-hero p {
  max-width: 46rem;
}

@media (max-width: 980px) {
  .hero-highlights,
  .stats-grid,
  .services-grid,
  .simple-services-grid,
  .featured-grid,
  .editorial-grid--wide,
  .service-simple-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-simple-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-simple-hero {
    padding: 3.5rem 0 3.75rem;
  }

  .service-simple-hero__copy {
    max-width: 100%;
    padding: 0.5rem 0 0;
  }

  .service-simple-hero__copy h1 {
    max-width: 10ch;
  }

  .service-simple-hero__image {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .hero { min-height: auto; padding-top: 9rem; }
  .hero-highlights,
  .stats-grid,
  .services-grid,
  .simple-services-grid,
  .featured-grid,
  .editorial-grid--wide,
  .service-simple-hero__grid {
    grid-template-columns: 1fr;
  }
  .stats-grid { transform: none; margin-bottom: 0; }
  .section { padding: 3.6rem 0; }
  .service-simple-hero {
    padding: 2.75rem 0 3.1rem;
  }

  .service-simple-hero::before {
    height: 18%;
  }

  .service-simple-hero__copy {
    padding: 0;
  }

  .service-simple-hero__copy .eyebrow {
    gap: 0.65rem;
    margin-bottom: 1rem;
    letter-spacing: 0.14em;
  }

  .service-simple-hero__copy .eyebrow::before {
    width: 1.7rem;
  }

  .service-simple-hero__copy h1 {
    max-width: 11ch;
    margin-bottom: 0.9rem;
    font-size: clamp(2.7rem, 14vw, 4.15rem);
  }

  .service-simple-hero__copy p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .service-simple-hero__copy .button-row {
    margin-top: 1.45rem;
  }

  .service-simple-hero__image {
    min-height: 260px;
    transform: none;
  }

  .service-simple-nav { border-radius: 18px; }
}

.cookie-banner__inner {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(17, 17, 19, 0.08);
}

.cookie-banner__inner p,
.cookie-banner__inner a {
  color: #2a2a2d;
}

.cookie-banner__inner a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner {
  left: auto;
  right: 1rem;
  bottom: 1rem;
  width: min(560px, calc(100vw - 2rem));
  transform: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem 0.8rem 1rem;
  border-radius: 22px;
}

.cookie-banner__inner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-banner__actions {
  flex-shrink: 0;
  margin-top: 0;
}

@media (max-width: 680px) {
  .cookie-banner {
    bottom: 0.75rem;
  }

  .cookie-banner__inner {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }
}

/* Dynamic page rhythm refresh */

.section--atelier {
  padding-top: 4.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.54)),
    #f5f3ef;
}

.atelier-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.atelier-copy {
  max-width: 540px;
}

.atelier-copy h2,
.gallery-intro h2,
.service-flow__copy h2 {
  font-family: var(--font-header);
  letter-spacing: -0.04em;
}

.atelier-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 0.9rem;
}

.atelier-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 1.1rem;
  border: 1px solid rgba(17, 17, 19, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.atelier-tile:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.atelier-tile:nth-child(2) {
  grid-column: span 2;
}

.atelier-tile:nth-child(4) {
  grid-column: span 2;
}

.atelier-tile span,
.project-lens span,
.service-flow__steps span,
.story-rail span {
  color: #8b713e;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atelier-tile h3 {
  font-family: var(--font-header);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.atelier-tile p {
  margin-bottom: 0;
}

.atelier-tile--dark {
  background: #101011;
  color: #fff;
}

.atelier-tile--dark h3,
.atelier-tile--dark p {
  color: #fff;
}

.atelier-tile--image {
  padding: 0;
  overflow: hidden;
}

.atelier-tile--image img {
  height: 100%;
  object-fit: cover;
}

.service-marquee {
  width: 100%;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-block: 1px solid rgba(17, 17, 19, 0.08);
  background: rgba(255, 255, 255, 0.45);
}

.service-marquee__track {
  display: flex;
  width: max-content;
  gap: 0.7rem;
  padding: 0.75rem 0;
  animation: service-marquee 36s linear infinite;
}

.service-marquee__track span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #101011;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes service-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.services-grid .service-card:nth-child(3n + 1) {
  transform: translateY(-1rem);
}

.services-grid .service-card:nth-child(3n + 2) {
  transform: translateY(1rem);
}

.service-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-0.55rem);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1);
}

.services-grid .service-card:hover {
  transform: translateY(-0.55rem);
}

.gallery-intro {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.gallery-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.featured-grid .featured-card:nth-child(even) {
  transform: translateY(2rem);
}

.services-dynamic-hero {
  position: relative;
  overflow: hidden;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  background: #101011;
}

.services-dynamic-hero::before,
.services-dynamic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-dynamic-hero::before {
  background: linear-gradient(135deg, rgba(16, 16, 17, 0.82), rgba(16, 16, 17, 0.56));
}

.services-dynamic-hero::after {
  background:
    radial-gradient(circle at 18% 30%, rgba(231, 198, 121, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(16, 16, 17, 0.18), rgba(16, 16, 17, 0.4));
}

.services-dynamic-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.services-dynamic-hero__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 1rem;
  padding: 1rem 0;
  opacity: 0.42;
  will-change: transform;
}

.services-dynamic-hero__track--left {
  animation: servicesHeroSlideLeft 38s linear infinite alternate;
}

.services-dynamic-hero__track--right {
  margin-left: -18rem;
  animation: servicesHeroSlideRight 34s linear infinite alternate;
}

.services-dynamic-hero__slide {
  display: block;
  flex: 0 0 min(34vw, 400px);
  min-height: 220px;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

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

.services-dynamic-hero__grid,
.projects-hero__grid,
.contact-hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.services-dynamic-hero__copy h1,
.services-dynamic-hero__copy p,
.services-dynamic-hero__copy .eyebrow {
  color: #fff;
}

.services-dynamic-hero__copy h1,
.projects-hero__copy h1,
.contact-hero__copy h1 {
  font-family: var(--font-header);
  max-width: 11ch;
  letter-spacing: -0.055em;
}

.services .services-dynamic-hero__copy h1 {
  max-width: 12ch;
  margin: 0 0 0.85rem;
  font-size: clamp(3.2rem, 5.4vw, 5rem);
}

.services-dynamic-hero__copy p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
}

.services-dynamic-hero__board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: minmax(120px, auto);
  gap: 0.8rem;
  align-self: end;
}

.services-dynamic-hero__note,
.services-dynamic-hero__panel {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.services-dynamic-hero__note {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  background: rgba(231, 198, 121, 0.92);
}

.services-dynamic-hero__note strong {
  font-family: var(--font-header);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.services-dynamic-hero__note span {
  color: #17130d;
  font-weight: 800;
  line-height: 1.25;
}

.services-dynamic-hero__panel {
  grid-column: 3 / -1;
  grid-row: span 2;
  display: flex;
  align-items: end;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.services-dynamic-hero__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 600;
}

@keyframes servicesHeroSlideLeft {
  from {
    transform: translateX(-4%);
  }
  to {
    transform: translateX(-18%);
  }
}

@keyframes servicesHeroSlideRight {
  from {
    transform: translateX(-18%);
  }
  to {
    transform: translateX(-4%);
  }
}

.service-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  padding: 1rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 19, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.service-orbit span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: #f4f2ed;
  color: #252527;
  font-size: 0.82rem;
  font-weight: 900;
}

.section--split-band {
  background: linear-gradient(90deg, #101011 0 46%, #f5f3ef 46% 100%);
}

.service-flow {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  padding-inline: clamp(0.4rem, 2vw, 1.5rem);
}

.service-flow__copy h2,
.service-flow__copy .eyebrow {
  color: #fff;
}

.service-flow__copy {
  max-width: 31rem;
}

.service-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-inline: clamp(0.2rem, 1vw, 0.8rem);
}

.service-flow__steps article,
.project-lens article,
.story-rail article,
.contact-action {
  border: 1px solid rgba(17, 17, 19, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-flow__steps article {
  min-height: 230px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.service-flow__steps article:hover {
  transform: translateY(-8px);
  background: #fff;
  border-color: rgba(184, 145, 79, 0.28);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08);
}

.service-flow__steps p {
  margin: 0;
}

.service-flow__steps span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.service-flow__steps span::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: rgba(184, 145, 79, 0.55);
  transform-origin: left center;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.service-flow__steps article:hover span::after {
  transform: scaleX(1.15);
  background: rgba(184, 145, 79, 0.9);
}

.projects-hero,
.contact-hero {
  padding-top: 5.5rem;
  background: #f7f5f1;
}

.projects-hero__copy h1,
.contact-hero__copy h1 {
  max-width: 15ch;
}

.projects-hero__copy h1 {
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4.9vw, 4.9rem);
  font-style: italic;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.contact-hero__copy h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 750;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.contact-hero__copy .eyebrow,
.projects-hero__copy .eyebrow,
.service-simple-hero__copy .eyebrow,
.page-hero__grid > div .eyebrow {
  margin-bottom: 1rem;
}

.contact-hero__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.contact-hero__copy .eyebrow::after {
  content: "";
  width: 3.25rem;
  height: 1px;
  background: rgba(24, 22, 18, 0.24);
}

.service-simple-hero__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
  color: #8b6f3d;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-simple-hero__copy .eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
}

.page-hero__grid > div > h1 {
  max-width: 11ch;
}

.about .page-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.55rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.about .page-hero p,
.about .split-layout__copy p,
.about .section-heading p,
.about .brand-panel p {
  max-width: 54ch;
  font-size: 0.98rem;
}

.about .section-heading h2,
.about .split-layout__copy h2,
.about .brand-panel h2 {
  max-width: 12ch;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.projects-hero__strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  min-height: 360px;
}

.projects-hero__strip img {
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.projects-hero__strip img:nth-child(1) {
  grid-column: span 3;
  align-self: start;
}

.projects-hero__strip img:nth-child(2) {
  grid-column: span 2;
  align-self: end;
  height: 76%;
}

.projects-hero__strip img:nth-child(3) {
  grid-column: span 1;
  align-self: center;
  height: 58%;
}

.project-lens,
.story-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.project-lens article,
.story-rail article {
  padding: 1rem;
}

.project-lens strong,
.story-rail strong {
  display: block;
  margin-top: 1.8rem;
  color: #151515;
  font-size: 1.05rem;
}

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

.story-rail article:nth-child(2) {
  transform: translateY(1.6rem);
}

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

.contact-action {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  color: #171717;
}

.contact-action span {
  color: #8b713e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-action strong {
  font-family: var(--font-header);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.contact-action--gold {
  background: #e7c679;
}

.contact-action--dark {
  background: #101011;
  color: #fff;
}

.contact-action--dark span,
.contact-action--dark strong {
  color: #fff;
}

.service-simple-hero {
  position: relative;
  overflow: hidden;
}

.service-simple-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.58) 88%);
  pointer-events: none;
}

.service-simple-hero__grid {
  position: relative;
  z-index: 1;
}

.service-simple-hero__image {
  align-self: stretch;
  transform: translateY(0.6rem);
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}

.service-chip-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
  align-items: center;
}

.service-simple-gallery .editorial-card:nth-child(even) {
  transform: translateY(1.4rem);
}

@media (prefers-reduced-motion: reduce) {
  .service-marquee__track {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .atelier-grid,
  .services-dynamic-hero__grid,
  .projects-hero__grid,
  .contact-hero__grid,
  .service-flow,
  .gallery-intro {
    grid-template-columns: 1fr;
  }

  .section--split-band {
    background: linear-gradient(180deg, #101011 0 42%, #f5f3ef 42% 100%);
  }

  .project-lens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .atelier-board,
  .services-dynamic-hero__board,
  .service-flow__steps,
  .project-lens,
  .story-rail,
  .contact-action-grid,
  .service-chip-panel {
    grid-template-columns: 1fr;
  }

  .atelier-tile,
  .atelier-tile:nth-child(1),
  .atelier-tile:nth-child(2),
  .atelier-tile:nth-child(4),
  .services-dynamic-hero__note,
  .services-dynamic-hero__panel {
    grid-column: auto;
    grid-row: auto;
  }

  .atelier-board,
  .services-dynamic-hero__board {
    grid-auto-rows: auto;
  }

  .atelier-tile {
    min-height: 190px;
  }

  .atelier-tile--image {
    min-height: 220px;
  }

  .services-dynamic-hero__slide {
    flex-basis: 72vw;
    min-height: 160px;
  }

  .services-dynamic-hero__track--right {
    margin-left: -8rem;
  }

  .services-grid .service-card,
  .services-grid .service-card:nth-child(3n + 1),
  .services-grid .service-card:nth-child(3n + 2),
  .featured-grid .featured-card:nth-child(even),
  .story-rail article:nth-child(2),
  .service-simple-gallery .editorial-card:nth-child(even),
  .service-simple-hero__image {
    transform: none;
  }

  .projects-hero__strip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .projects-hero__strip img,
  .projects-hero__strip img:nth-child(2),
  .projects-hero__strip img:nth-child(3) {
    height: auto;
    aspect-ratio: 1.25 / 0.82;
    grid-column: auto;
  }
}

/* ================================================================
   HOME PROFESSIONAL REFRESH
   ================================================================ */

.hero__background-frame {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero__background-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.home .hero--professional {
  padding-bottom: 4.5rem;
}

.hero-grid--professional {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 2.5rem;
}

.hero-copy--professional {
  width: min(760px, 100%);
}

.hero-copy--professional .hero-title {
  max-width: 13.5ch;
  font-size: clamp(3rem, 4.8vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-points {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.75rem 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--gold-soft);
}

.hero-brief {
  display: grid;
  gap: 1.3rem;
  padding: 1.7rem;
  border-radius: 30px;
  background: rgba(245, 241, 234, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 60px rgba(10, 9, 7, 0.22);
}

.hero-brief h2 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.08;
}

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

.hero-brief__grid div {
  display: grid;
  gap: 0.28rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(25, 23, 20, 0.08);
}

.hero-brief__grid strong {
  font-family: var(--font-header);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.hero-brief__grid span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-brief__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-brief__actions a,
.hero-brief__actions .link-button {
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-brief__actions a {
  color: #181612;
}

.section--home-proof {
  padding-top: 1.25rem;
}

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

.proof-card {
  display: grid;
  gap: 0.6rem;
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(25, 23, 20, 0.08);
  box-shadow: 0 16px 36px rgba(16, 11, 5, 0.08);
}

.proof-card strong {
  font-family: var(--font-header);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.proof-card p {
  margin: 0;
}

.section-heading--compact {
  max-width: 780px;
}

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

.services-grid--home .service-card,
.services-grid--home .service-card:nth-child(3n + 1),
.services-grid--home .service-card:nth-child(3n + 2) {
  transform: none;
}

.service-card--home {
  height: 100%;
}

.service-card--home .service-card__body {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  min-height: 170px;
}

.service-card--home img {
  aspect-ratio: 1.12 / 0.82;
}

.home-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 2rem;
  align-items: start;
}

.home-process-copy p {
  max-width: 42rem;
}

.section--home-cta {
  padding-top: 0;
}

.home-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 32px;
  background: #101011;
  box-shadow: 0 24px 60px rgba(16, 11, 5, 0.18);
}

.home-cta-panel h2,
.home-cta-panel p,
.home-cta-panel .eyebrow {
  color: #fff;
}

.home-cta-panel p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.74);
}

.home-cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .hero-grid--professional,
  .home-process-grid,
  .home-cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy--professional .hero-title {
    max-width: 15ch;
  }

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

  .home-cta-panel__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-grid--professional {
    gap: 1.5rem;
  }

  .home .hero--professional .services-dynamic-hero__slide {
    flex-basis: 72vw;
    min-height: 185px;
  }

  .home .hero--professional .services-dynamic-hero__track--right {
    margin-left: -8rem;
  }

  .hero-copy--professional .hero-title {
    max-width: none;
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .hero-points {
    margin-top: 1.35rem;
  }

  .hero-points li {
    font-size: 0.96rem;
  }

  .hero-brief {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .hero-brief__grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-panel {
    padding: 1.4rem;
    border-radius: 24px;
  }

  .home-cta-panel__actions,
  .hero-brief__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
