:root {
  --ink: #080609;
  --ink-soft: #131015;
  --paper: #f7f4f3;
  --white: #fff;
  --text: #171318;
  --muted: #746e75;
  --line: rgba(22, 17, 23, .13);
  --magenta: #e01987;
  --magenta-light: #ff4aab;
  --violet: #7d2cff;
  --lime: #c8ff35;
  --gradient: linear-gradient(125deg, var(--magenta), var(--violet));
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow: 0 24px 70px rgba(19, 5, 17, .15);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--magenta); color: white; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }
.section--compact { padding: 74px 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--white { background: var(--white); }
.section-head { display: flex; justify-content: space-between; gap: 36px; align-items: end; margin-bottom: 54px; }
.section-head > :first-child { max-width: 720px; }
.section-head p { max-width: 460px; color: var(--muted); margin: 0; }
.eyebrow { margin: 0 0 14px; color: var(--magenta); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.display, h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; }
h1, h2, h3, p { margin-top: 0; }
h2 { margin-bottom: 18px; font-size: clamp(2.4rem, 5vw, 4.8rem); letter-spacing: -.045em; }
h3 { margin-bottom: 10px; font-size: 1.55rem; }
.accent { color: var(--magenta-light); }
.gradient-text { color: transparent; background: var(--gradient); background-clip: text; -webkit-background-clip: text; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: #d6cfd8; max-width: 650px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; padding: 0 24px; border-radius: 999px; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button--primary { color: white; background: var(--gradient); box-shadow: 0 12px 34px rgba(224, 25, 135, .28); }
.button--primary:hover { box-shadow: 0 16px 42px rgba(224, 25, 135, .38); }
.button--ghost { color: white; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.03); backdrop-filter: blur(10px); }
.button--dark { background: var(--ink); color: white; }
.button--small { min-height: 44px; padding-inline: 18px; font-size: .69rem; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--magenta); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.text-link::after { content: '↗'; transition: transform .2s ease; }
.text-link:hover::after { transform: translate(2px, -2px); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; height: 82px; color: white; background: linear-gradient(to bottom, rgba(4,3,5,.92), rgba(4,3,5,.55), transparent); transition: transform .35s ease, background .3s ease, border .3s ease; }
.site-header.is-scrolled { height: 72px; background: rgba(8, 6, 9, .92); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.site-header.is-hidden { transform: translateY(-100%); }
.nav-shell { height: 100%; display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 24px; }
.brand { align-self: stretch; display: flex; align-items: center; width: 128px; }
.brand img { width: 70px; height: 64px; object-fit: contain; transform: translateY(2px); }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.main-nav a { position: relative; padding: 28px 0 24px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--magenta); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a[aria-current='page']::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: white; transition: transform .25s ease; }
.menu-toggle[aria-expanded='true'] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 780px; display: grid; align-items: center; overflow: hidden; color: white; background: var(--ink); }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(4,3,5,.86) 0%, rgba(4,3,5,.65) 36%, rgba(4,3,5,.08) 72%), linear-gradient(0deg, rgba(4,3,5,.68), transparent 42%); z-index: 1; }
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroZoom 14s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero__content { position: relative; z-index: 2; width: var(--container); max-width: none; padding-top: 140px; }
.hero__content > * { max-width: 770px; }
.hero h1 { margin: 0; font-size: clamp(3.6rem, 8vw, 7.4rem); letter-spacing: -.06em; }
.hero h1 span { display: block; }
.hero h1 .hero-script { margin-top: -4px; font-size: .74em; font-style: italic; color: var(--magenta-light); }
.hero .lead { margin: 24px 0 0; max-width: 560px; }
.hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: #f4eaf0; font-size: .74rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.hero__eyebrow::before { content: ''; width: 44px; height: 2px; background: var(--magenta); }
/* Service ribbon */
.service-ribbon { position: relative; z-index: 3; margin-top: 0; padding: 34px 0 70px; background: var(--ink); }
.service-ribbon__inner { display: grid; grid-template-columns: repeat(5, 1fr); background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.service-ribbon a { min-height: 160px; padding: 26px 22px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); transition: background .25s ease, color .25s ease; }
.service-ribbon a:last-child { border: 0; }
.service-ribbon a:hover { color: white; background: var(--ink-soft); }
.service-ribbon .service-icon { font-family: var(--serif); color: var(--magenta); font-size: 2rem; }
.service-ribbon h3 { margin: 0; font-family: var(--sans); font-size: .83rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-ribbon p { margin: 5px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.service-ribbon a:hover p { color: #bab2bc; }

/* Top services carousel */
.top-services { overflow: hidden; }
.top-services__header { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 42px; }
.top-services__header > div:first-child { max-width: 760px; }
.top-services__header h2 { margin-bottom: 16px; }
.top-services__header > div:first-child > p:last-child { max-width: 620px; margin: 0; color: var(--muted); }
.top-services__controls { display: flex; flex: 0 0 auto; gap: 10px; }
.top-services__controls button { display: grid; width: 50px; height: 50px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: white; font-size: 1.15rem; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.top-services__controls button:hover:not(:disabled) { color: white; border-color: var(--magenta); background: var(--magenta); transform: translateY(-2px); }
.top-services__controls button:disabled { opacity: .35; cursor: default; }
.top-services__viewport { overflow-x: auto; margin-inline: 0; padding-inline: 0; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; outline: none; }
.top-services__viewport::-webkit-scrollbar { display: none; }
.top-services__viewport:focus-visible { outline: 3px solid var(--magenta); outline-offset: 5px; }
.top-services__track { display: flex; gap: 20px; padding: 4px 0 32px; }
.top-service-card { flex: 0 0 calc((var(--container) - 40px) / 3); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 14px 44px rgba(20,10,20,.08); scroll-snap-align: start; transition: transform .3s ease, box-shadow .3s ease; }
.top-service-card:hover { transform: translateY(-5px); box-shadow: 0 24px 62px rgba(20,10,20,.14); }
.top-service-card__image { position: relative; display: block; height: 265px; overflow: hidden; background: var(--ink); }
.top-service-card__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,6,9,.68), transparent 58%); }
.top-service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.top-service-card:hover .top-service-card__image img { transform: scale(1.045); }
.top-service-card__image > span { position: absolute; z-index: 1; left: 18px; bottom: 16px; color: white; font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.top-service-card__image > strong { position: absolute; z-index: 1; top: 16px; right: 16px; padding: 7px 11px; border-radius: 999px; color: white; background: var(--magenta); font-size: .59rem; letter-spacing: .08em; text-transform: uppercase; }
.top-service-card__body { padding: 25px; }
.top-service-card__body > p { margin: 0 0 9px; color: var(--magenta); font-size: .62rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.top-service-card__body h3 { margin-bottom: 13px; font-size: 1.75rem; }
.top-service-card__body > div { min-height: 68px; margin-bottom: 22px; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.top-service-card__body > a { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: .69rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.top-service-card__body > a span { color: var(--magenta); transition: transform .2s ease; }
.top-service-card__body > a:hover span { transform: translate(2px, -2px); }
.top-services__footer { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.top-services__dots { display: flex; align-items: center; gap: 7px; }
.top-services__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: #c8c0c8; cursor: pointer; transition: width .25s ease, background .25s ease; }
.top-services__dots button[aria-current='true'] { width: 28px; background: var(--magenta); }

/* Story / mosaic */
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: center; }
.story-copy h2 { font-size: clamp(2.7rem, 5vw, 5.2rem); }
.story-copy > p:not(.eyebrow) { color: #c7bfc8; max-width: 520px; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.mini-stat { padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.18); }
.mini-stat strong { display: block; font-family: var(--serif); color: var(--magenta-light); font-size: 1.7rem; font-weight: 400; }
.mini-stat span { display: block; color: #c7bfc8; font-size: .74rem; line-height: 1.4; }
.mosaic { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 235px 235px; gap: 12px; }
.mosaic figure { position: relative; margin: 0; overflow: hidden; border-radius: 20px; }
.mosaic figure:first-child { grid-row: span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mosaic figure:hover img { transform: scale(1.04); }
.mosaic figure::after { content: ''; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent, rgba(7,5,8,.75)); }
.mosaic figcaption { position: absolute; z-index: 1; bottom: 18px; left: 20px; color: white; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.stat-band { border-top: 1px solid rgba(255,255,255,.1); background: var(--ink); color: white; }
.stat-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.big-stat { padding: 42px 28px; border-right: 1px solid rgba(255,255,255,.1); }
.big-stat:first-child { padding-left: 0; }
.big-stat:last-child { border: 0; }
.big-stat strong { display: block; font-family: var(--serif); color: var(--magenta-light); font-size: clamp(2.1rem, 4vw, 3.5rem); font-weight: 400; line-height: 1; }
.big-stat span { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: #bfb7c0; }

/* Testimonials */
.testimonials-wrap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.testimonial-stage { position: relative; min-height: 360px; background: var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.testimonial-stage::before { content: '“'; position: absolute; top: -35px; right: 24px; color: rgba(224,25,135,.3); font: 16rem/.9 var(--serif); }
.testimonial { position: absolute; inset: 0; padding: 58px; display: flex; flex-direction: column; justify-content: center; color: white; opacity: 0; transform: translateX(30px); transition: opacity .35s ease, transform .35s ease; pointer-events: none; }
.testimonial.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.testimonial blockquote { position: relative; margin: 0 0 28px; font: 400 clamp(1.55rem, 3vw, 2.3rem)/1.28 var(--serif); }
.testimonial cite { font-style: normal; color: var(--magenta-light); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.slider-controls { display: flex; align-items: center; gap: 9px; margin-top: 30px; }
.slider-controls button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; }
.slider-dots { display: flex; gap: 7px; margin: 0 7px; }
.slider-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: #c8c0c8; }
.slider-dots button.is-active { width: 24px; border-radius: 9px; background: var(--magenta); }

/* Internal hero */
.internal-hero { position: relative; min-height: 590px; padding: 150px 0 78px; display: flex; align-items: center; overflow: hidden; color: white; background: var(--ink); }
.internal-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .82; }
.internal-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,4,6,.89) 0, rgba(5,4,6,.63) 43%, rgba(5,4,6,.06) 82%), linear-gradient(0deg, rgba(5,4,6,.66), transparent 62%); }
.internal-hero__content { position: relative; z-index: 1; width: var(--container); max-width: none; padding-top: 56px; }
.internal-hero__content > * { max-width: 720px; }
.internal-hero h1 { margin-bottom: 20px; font-size: clamp(3rem, 6vw, 6.1rem); letter-spacing: -.055em; }
.internal-hero .lead { margin-bottom: 0; }
.hero-features { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.hero-feature { display: flex; align-items: center; gap: 10px; color: #e1d9e1; font-size: .8rem; }
.hero-feature span { display: grid; place-items: center; width: 36px; height: 36px; color: var(--magenta-light); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.packs-hero .internal-hero__bg { opacity: .94; object-position: center; }
.packs-hero::after { background: linear-gradient(90deg, rgba(5,4,6,.76) 0, rgba(5,4,6,.52) 42%, rgba(5,4,6,.08) 84%), linear-gradient(0deg, rgba(5,4,6,.58), transparent 62%); }

/* Services page */
.category-nav { position: sticky; z-index: 20; top: 72px; background: rgba(255,255,255,.93); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.category-nav__inner { display: flex; justify-content: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.category-nav a { flex: 0 0 auto; padding: 20px 22px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.category-nav a:hover { color: var(--magenta); }
.service-row { display: grid; grid-template-columns: 280px 1fr; gap: 48px; padding: 88px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 130px; }
.service-row__intro { position: sticky; top: 150px; align-self: start; }
.service-row__intro h2 { font-size: 2.7rem; }
.service-row__intro p:not(.eyebrow) { color: var(--muted); }
.service-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card__image { position: relative; height: 210px; overflow: hidden; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover img { transform: scale(1.05); }
.service-card__badge { position: absolute; left: 15px; bottom: 15px; display: grid; place-items: center; width: 40px; height: 40px; color: white; border-radius: 50%; background: rgba(7,5,8,.86); border: 1px solid var(--magenta); }
.service-card__body { padding: 22px; }
.service-card h3 { font-size: 1.35rem; }
.service-card p { min-height: 46px; margin-bottom: 18px; color: var(--muted); font-size: .84rem; line-height: 1.5; }

/* Packs */
.pack-intro { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pack-card { position: relative; display: flex; flex-direction: column; min-height: 650px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 10px 35px rgba(20,10,20,.06); }
.pack-card--featured { border-color: var(--magenta); transform: translateY(-16px); box-shadow: 0 24px 70px rgba(224,25,135,.16); }
.pack-card__flag { position: absolute; z-index: 2; top: 16px; right: 16px; padding: 7px 13px; color: white; border-radius: 99px; background: var(--gradient); font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pack-card__image { height: 205px; width: 100%; object-fit: cover; }
.pack-card__body { flex: 1; display: flex; flex-direction: column; padding: 30px; }
.pack-card h2 { margin-bottom: 8px; font-size: 2.1rem; }
.pack-card__subtitle { color: var(--muted); font-size: .85rem; }
.pack-list { display: grid; gap: 12px; margin: 26px 0 30px; padding: 0; list-style: none; }
.pack-list li { position: relative; padding-left: 24px; font-size: .86rem; }
.pack-list li::before { content: '✓'; position: absolute; left: 0; color: var(--magenta); font-weight: 900; }
.pack-card .button { width: 100%; margin-top: auto; }
.benefit-strip { background: var(--ink); color: white; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit { padding: 46px 30px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.benefit:last-child { border: 0; }
.benefit strong { display: block; margin: 12px 0 5px; color: var(--magenta-light); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.benefit p { margin: 0; color: #bfb6c0; font-size: .8rem; }
.benefit__icon { font: 2rem var(--serif); }

/* Blog */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 54px; align-items: start; }
.blog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 28px; }
.blog-toolbar h2 { margin: 0; font: 800 .78rem var(--sans); letter-spacing: .11em; text-transform: uppercase; }
.search { position: relative; width: min(100%, 310px); }
.search input { width: 100%; height: 48px; padding: 0 48px 0 18px; border: 1px solid var(--line); border-radius: 999px; background: white; outline: none; }
.search input:focus { border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(224,25,135,.1); }
.search span { position: absolute; right: 18px; top: 11px; color: var(--magenta); }
.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; transition: transform .3s ease, box-shadow .3s ease; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.article-card[hidden] { display: none; }
.article-card > img { width: 100%; height: 220px; object-fit: cover; }
.article-card__body { padding: 24px; }
.article-card .eyebrow { margin-bottom: 8px; }
.article-card h2, .article-card h3 { margin-bottom: 12px; font-size: 1.55rem; line-height: 1.12; }
.article-card p:not(.eyebrow) { color: var(--muted); font-size: .84rem; }
.article-meta { display: flex; justify-content: space-between; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; }
.blog-sidebar { position: sticky; top: 110px; }
.sidebar-box { padding: 28px; margin-bottom: 20px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.sidebar-box h2 { padding-bottom: 14px; margin-bottom: 12px; border-bottom: 1px solid var(--line); font: 800 .78rem var(--sans); letter-spacing: .11em; text-transform: uppercase; }
.category-list { display: grid; gap: 4px; }
.category-list button { display: flex; justify-content: space-between; width: 100%; padding: 10px 0; color: var(--muted); border: 0; background: transparent; font-size: .84rem; text-align: left; cursor: pointer; }
.category-list button:hover, .category-list button.is-active { color: var(--magenta); }
.sidebar-cta { padding: 34px; color: white; border: 0; background: var(--ink); }
.sidebar-cta h2 { margin: 0 0 16px; padding: 0; border: 0; font: 400 2rem/1.08 var(--serif); text-transform: none; letter-spacing: -.03em; }
.sidebar-cta p { color: #c7bec8; font-size: .84rem; }
.blog-empty { display: none; grid-column: 1/-1; padding: 50px; text-align: center; border: 1px dashed var(--line); border-radius: 18px; }
.blog-empty.is-visible { display: block; }
.article-dialog { width: min(680px, calc(100% - 30px)); padding: 0; overflow: hidden; border: 0; border-radius: 24px; background: white; box-shadow: var(--shadow); }
.article-dialog::backdrop { background: rgba(6,4,7,.8); backdrop-filter: blur(6px); }
.article-dialog img { width: 100%; height: 280px; object-fit: cover; }
.dialog-body { padding: 34px; }
.dialog-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; color: white; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(7,5,8,.75); cursor: pointer; }

/* About / Contact */
.about-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.about-hero-grid .internal-hero__content { max-width: none; }
.about-hero-image { position: relative; height: 440px; overflow: hidden; border-radius: 24px; box-shadow: 0 24px 80px rgba(0,0,0,.45); }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-image::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); border-radius: inherit; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.value-card span { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 25px; color: white; border-radius: 50%; background: var(--gradient); }
.value-card h3 { font-size: 1.35rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .83rem; }
.contact-section { scroll-margin-top: 60px; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; overflow: hidden; border-radius: 28px; background: white; box-shadow: var(--shadow); }
.contact-aside { position: relative; padding: 58px 48px; color: white; background: var(--ink); }
.contact-aside::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 10% 90%, rgba(224,25,135,.4), transparent 38%); }
.contact-aside > * { position: relative; }
.contact-aside h2 { font-size: 3.2rem; }
.contact-list { display: grid; gap: 22px; margin-top: 40px; }
.contact-list a, .contact-list .contact-item { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: start; margin: 0; color: #d6ced7; font-size: .86rem; }
.contact-list span { display: grid; place-items: center; width: 42px; height: 42px; margin-top: 2px; color: var(--magenta-light); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.contact-form { padding: 56px; }
.contact-form h2 { margin-bottom: 8px; font-size: 2.6rem; }
.contact-form > p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; margin-top: 30px; }
.field { display: grid; gap: 7px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 14px 15px; background: #fbf9fa; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(224,25,135,.1); }
.field .is-invalid { border-color: #c62828; }
.field textarea { min-height: 130px; resize: vertical; }
.checkbox { grid-column: 1 / -1; display: flex; gap: 10px; color: var(--muted); font-size: .78rem; }
.checkbox input { margin-top: 5px; accent-color: var(--magenta); }
.checkbox a, .privacy-summary a { color: var(--magenta); text-decoration: underline; text-underline-offset: 2px; }
.privacy-summary { display: grid; gap: 5px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); background: #fbf9fa; font-size: .76rem; line-height: 1.55; }
.privacy-summary strong { color: var(--text); font-size: .78rem; }
.form-feedback { grid-column: 1/-1; margin: 0; font-size: .83rem; }
.form-feedback.is-success { color: #18844d; }
.form-feedback.is-error { color: #c62828; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 23px 0; display: flex; justify-content: space-between; gap: 20px; border: 0; background: transparent; font-family: var(--serif); font-size: 1.24rem; text-align: left; cursor: pointer; }
.faq-item button span { color: var(--magenta); transition: transform .2s ease; }
.faq-item.is-open button span { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 35px 20px 0; margin: 0; color: var(--muted); font-size: .88rem; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* CTA */
.cta-band { position: relative; padding: 78px 0; overflow: hidden; color: white; background: var(--ink); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,5,8,.98), rgba(7,5,8,.6)), url('../images/hero-evento.jpg') center 62% / cover; opacity: .78; }
.cta-band__inner { position: relative; display: flex; justify-content: space-between; gap: 44px; align-items: center; }
.cta-band h2 { max-width: 720px; margin: 0; font-size: clamp(2.3rem, 5vw, 4.4rem); }
.cta-band .actions { flex: 0 0 auto; margin: 0; }

/* Footer */
.site-footer { padding-top: 66px; color: #c8c0c9; background: #050405; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 60px; padding-bottom: 54px; }
.footer-brand img { width: 102px; height: 92px; object-fit: contain; }
.footer-brand p { max-width: 300px; margin: 28px 0 0; color: #9f97a0; font-size: .82rem; }
.footer-main h3 { margin-bottom: 16px; color: white; font: 800 .72rem var(--sans); letter-spacing: .1em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-main a, .footer-main p { font-size: .8rem; }
.footer-main a:hover { color: var(--magenta-light); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.08); color: #817a82; font-size: .7rem; }
.footer-bottom div { display: flex; gap: 28px; }

/* Legal pages */
.legal-hero { padding: 170px 0 76px; color: white; background: radial-gradient(circle at 75% 15%, rgba(224,25,135,.24), transparent 35%), var(--ink); }
.legal-hero h1 { max-width: 850px; margin: 0; font-size: clamp(3.2rem, 7vw, 6.2rem); letter-spacing: -.055em; }
.legal-hero p:last-child { max-width: 690px; margin: 22px 0 0; color: #c9c1ca; }
.legal-section { background: var(--white); }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); justify-content: space-between; gap: 80px; }
.legal-index { position: sticky; top: 110px; align-self: start; display: grid; gap: 10px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.legal-index strong { margin-bottom: 5px; font-size: .73rem; letter-spacing: .11em; text-transform: uppercase; }
.legal-index a { color: var(--muted); font-size: .82rem; }
.legal-index a:hover { color: var(--magenta); }
.legal-content { min-width: 0; }
.legal-content section { scroll-margin-top: 100px; padding-bottom: 38px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { padding-bottom: 0; margin-bottom: 0; border: 0; }
.legal-content h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.035em; }
.legal-content h3 { margin-top: 28px; font: 800 .78rem var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.legal-content p, .legal-content li { color: #5f5961; font-size: .94rem; }
.legal-content ul { display: grid; gap: 8px; padding-left: 20px; }
.legal-content a { color: var(--magenta); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { padding: 20px 22px; border-left: 3px solid var(--magenta); border-radius: 0 12px 12px 0; background: #fbf4f8; }
.legal-meta { margin-top: 42px; color: var(--muted); font-size: .78rem; }

/* Floating contact and social links */
.floating-socials { position: fixed; right: 22px; bottom: 24px; z-index: 90; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.floating-socials__networks { display: flex; flex-direction: column; gap: 5px; padding: 7px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(5,4,5,.9); box-shadow: 0 16px 45px rgba(0,0,0,.26); backdrop-filter: blur(16px); }
.floating-socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: white; transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease; }
.floating-socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-socials svg.icon-fill { fill: currentColor; stroke: none; }
.floating-socials__networks a:hover { color: white; background: var(--magenta); box-shadow: 0 10px 26px rgba(224,25,135,.34); transform: translateX(-3px); }
.floating-socials__whatsapp { position: relative; width: 56px !important; height: 56px !important; padding: 0; color: var(--ink) !important; background: transparent; box-shadow: 0 12px 34px rgba(0,200,65,.28); }
.floating-socials__whatsapp .whatsapp-icon-image { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.floating-socials__whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px rgba(0,200,65,.42); }
.floating-socials__whatsapp span { position: absolute; right: calc(100% + 11px); padding: 7px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 8px; color: white; background: rgba(5,4,5,.94); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; opacity: 0; transform: translateX(6px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.floating-socials__whatsapp:hover span { opacity: 1; transform: translateX(0); }
.floating-socials a:focus-visible { outline: 3px solid white; outline-offset: 3px; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 1050px) {
  .nav-shell { grid-template-columns: 100px 1fr auto; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: .66rem; }
  .top-service-card { flex-basis: calc((var(--container) - 20px) / 2); }
  .nav-actions .button { display: none; }
  .story-grid, .testimonials-wrap, .about-hero-grid { gap: 40px; }
  .service-row { grid-template-columns: 230px 1fr; gap: 30px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .pack-card__body { padding: 24px; }
  .blog-layout { grid-template-columns: 1fr 260px; gap: 30px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 680px); }
  .section { padding: 80px 0; }
  .site-header, .site-header.is-scrolled { height: 70px; }
  .site-header.is-hidden { transform: none; }
  body.menu-open .site-header, body.menu-open .site-header.is-scrolled { z-index: 200; color: white; background: #070508; border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .brand img { width: 64px; height: 58px; transform: translateY(2px); }
  .main-nav { position: fixed; z-index: 201; top: 70px; right: 0; bottom: auto; left: 0; display: flex; height: calc(100vh - 70px); height: calc(100dvh - 70px); min-height: calc(100svh - 70px); padding: 40px 28px; overflow-y: auto; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0; color: white; background: #070508; isolation: isolate; overscroll-behavior: contain; transform: translateX(100%); transition: transform .35s ease; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: white; font: 400 2rem var(--serif); text-transform: none; }
  .main-nav a::after { display: none; }
  body.menu-open .floating-socials, body.menu-open .budget-cart-fab { visibility: hidden; opacity: 0; pointer-events: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 720px; }
  .hero::before { background: linear-gradient(90deg, rgba(4,3,5,.94), rgba(4,3,5,.36)), linear-gradient(0deg, rgba(4,3,5,.9), transparent 60%); }
  .hero__media { object-position: center; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5.6rem); }
  .hero .lead { max-width: 90%; }
  .service-ribbon { margin-top: 0; padding: 28px 0 56px; background: var(--ink); }
  .service-ribbon__inner { grid-template-columns: repeat(2, 1fr); }
  .service-ribbon a { min-height: 130px; }
  .service-ribbon a:last-child { grid-column: span 2; }
  .top-services__header { align-items: center; gap: 28px; }
  .story-grid, .testimonials-wrap, .about-hero-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-rows: 190px 190px; }
  .stat-band__grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .big-stat:nth-child(2), .benefit:nth-child(2) { border-right: 0; }
  .internal-hero { min-height: 580px; }
  .internal-hero__content { padding-top: 48px; }
  .about-hero-image { height: 340px; }
  .service-row { grid-template-columns: 1fr; }
  .service-row__intro { position: static; max-width: 520px; }
  .pack-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .pack-card { min-height: 0; }
  .pack-card--featured { transform: none; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 42px; }
  .legal-index { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-index strong { grid-column: 1 / -1; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 1/-1; }
  .floating-socials { right: 12px; bottom: 14px; gap: 7px; }
  .floating-socials__networks { gap: 3px; padding: 5px; }
  .floating-socials a { width: 32px; height: 32px; }
  .floating-socials svg { width: 15px; height: 15px; }
  .floating-socials__whatsapp { width: 48px !important; height: 48px !important; }
  .floating-socials__whatsapp span { display: none; }
}

@media (max-width: 620px) {
  .top-service-card { flex-basis: var(--container); }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .section { padding: 68px 0; }
  .section-head, .blog-toolbar { align-items: flex-start; flex-direction: column; }
  h2 { font-size: 2.55rem; }
  .hero { min-height: 700px; }
  .hero__content { padding-top: 110px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.6rem); }
  .hero__eyebrow { font-size: .65rem; }
  .hero .actions { display: grid; }
  .hero .button { width: 100%; }
  .service-ribbon__inner { border-radius: 18px; }
  .service-ribbon { padding: 22px 0 44px; }
  .service-ribbon a { padding: 20px 16px; }
  .service-ribbon p { display: none; }
  .top-services__header { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .top-services__header h2 { font-size: 2.8rem; }
  .top-services__controls { align-self: flex-end; margin-top: -72px; }
  .top-services__controls button { width: 44px; height: 44px; }
  .top-services__viewport { margin-inline: 0; padding-inline: 0; }
  .top-service-card { flex-basis: calc(100vw - 28px); }
  .top-service-card__image { height: 245px; }
  .top-services__footer { align-items: flex-start; flex-direction: column; }
  .mini-stats { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 230px 140px; }
  .mosaic figure:first-child { grid-column: 1/-1; grid-row: auto; }
  .big-stat, .big-stat:first-child { padding: 28px 14px; }
  .big-stat strong { font-size: 2.2rem; }
  .big-stat span { font-size: .64rem; }
  .testimonial-stage { min-height: 410px; }
  .testimonial { padding: 35px; }
  .internal-hero { min-height: 550px; padding: 145px 0 62px; }
  .internal-hero__content { padding-top: 36px; }
  .internal-hero h1 { font-size: 3.2rem; }
  .hero-features { gap: 14px; }
  .category-nav { top: 70px; }
  .category-nav__inner { justify-content: flex-start; }
  .service-cards, .article-grid, .form-grid, .values-grid { grid-template-columns: 1fr; }
  .service-card__image { height: 230px; }
  .benefit { padding: 34px 12px; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .search { width: 100%; }
  .article-card > img { height: 210px; }
  .contact-aside, .contact-form { padding: 38px 26px; }
  .contact-aside h2 { font-size: 2.6rem; }
  .field--wide, .checkbox, .form-feedback { grid-column: auto; }
  .faq-grid { gap: 35px; }
  .legal-hero { padding: 135px 0 58px; }
  .legal-index { grid-template-columns: 1fr; }
  .legal-index strong { grid-column: auto; }
  .legal-content section { padding-bottom: 30px; margin-bottom: 30px; }
  .cta-band { padding: 62px 0; }
  .cta-band .actions { width: 100%; display: grid; }
  .cta-band .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand, .footer-main > div:last-child { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; gap: 12px 22px; }
}

/* Services catalog and quote selector */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.services-page { --services-accent: var(--magenta); --services-accent-dark: #b3146d; background: var(--white); }
.services-page.cart-open { overflow: hidden; }
.services-accent { color: var(--services-accent); }
.services-button { color: white; border-color: var(--services-accent); background: var(--services-accent); box-shadow: 0 13px 34px rgba(224,25,135,.22); }
.services-button:hover { box-shadow: 0 16px 40px rgba(224,25,135,.34); }
.services-button:focus-visible, .service-add:focus-visible, .service-filter:focus-visible, .budget-cart button:focus-visible, .budget-cart a:focus-visible { outline: 3px solid var(--services-accent); outline-offset: 3px; }
.services-hero { min-height: 650px; }
.services-hero::after { background: linear-gradient(90deg, rgba(5,4,6,.89) 0, rgba(5,4,6,.65) 52%, rgba(5,4,6,.1) 90%), linear-gradient(0deg, rgba(5,4,6,.7), transparent 62%); }
.services-hero .internal-hero__content { max-width: none; }
.services-hero .internal-hero__content > * { max-width: 800px; }
.services-hero h1 { max-width: 760px; }
.services-hero .eyebrow, .services-cta .eyebrow, .velvet-page .eyebrow { color: var(--services-accent); }
.services-hero .hero-feature span { color: var(--services-accent); border-color: rgba(224,25,135,.48); }

.services-catalog { padding: 112px 0 120px; color: var(--text); background: #fff; }
.services-catalog__head { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 70px; align-items: end; margin-bottom: 50px; }
.services-catalog__head h2 { max-width: 780px; margin: 0; }
.services-catalog__head > p { margin: 0 0 8px; color: var(--muted); }
.services-catalog .eyebrow { color: var(--services-accent-dark); }
.services-toolbar { position: sticky; z-index: 18; top: 72px; display: grid; grid-template-columns: 300px 1fr; gap: 16px; padding: 16px; margin: 0 -16px 22px; border: 1px solid rgba(8,6,9,.09); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 14px 45px rgba(8,6,9,.08); backdrop-filter: blur(18px); }
.services-search { position: relative; display: block; }
.services-search input { width: 100%; height: 48px; padding: 0 20px 0 48px; border: 1px solid var(--line); border-radius: 12px; color: var(--text); background: #f8f8f6; outline: none; }
.services-search input:focus { border-color: var(--services-accent-dark); box-shadow: 0 0 0 3px rgba(224,25,135,.14); background: white; }
.services-search__icon { position: absolute; z-index: 1; top: 8px; left: 17px; color: var(--ink); font-size: 1.35rem; }
.service-filters { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; scrollbar-color: #c8c8c5 transparent; }
.service-filter { flex: 0 0 auto; min-height: 48px; padding: 0 16px; border: 1px solid var(--line); border-radius: 12px; color: #5e585f; background: white; font-size: .7rem; font-weight: 800; letter-spacing: .04em; cursor: pointer; transition: color .2s ease, background .2s ease, border .2s ease, transform .2s ease; }
.service-filter:hover { color: var(--ink); border-color: var(--magenta); transform: translateY(-1px); }
.service-filter.is-active { color: white; border-color: var(--services-accent); background: var(--services-accent); }
.service-filter span { display: inline-grid; min-width: 23px; height: 23px; margin-left: 6px; place-items: center; border-radius: 99px; background: rgba(8,6,9,.07); font-size: .62rem; }
.services-results-bar { display: flex; justify-content: space-between; align-items: center; min-height: 36px; margin-bottom: 36px; }
.services-results-bar p { margin: 0; color: var(--muted); font-size: .76rem; font-weight: 700; }
.services-clear { padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; color: var(--services-accent-dark); background: transparent; font-size: .74rem; font-weight: 800; cursor: pointer; }
.services-category { padding: 42px 0 76px; scroll-margin-top: 150px; border-top: 1px solid var(--line); }
.services-category:first-child { border-top: 0; }
.services-category--kids .services-category__head { position: relative; justify-content: center; align-items: center; }
.services-category--kids .services-category__head > div { width: 100%; justify-content: center; align-items: center; }
.services-category--kids .services-category__head > div > span { position: absolute; left: 0; }
.services-category--kids .services-category__head > p { position: absolute; right: 0; }
.services-category__logo { width: clamp(230px, 31vw, 390px); margin: 0; line-height: 1; }
.services-category__logo img { width: 100%; height: auto; }
.services-category__head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 28px; }
.services-category__head > div { display: flex; align-items: baseline; gap: 18px; }
.services-category__head span { color: var(--services-accent-dark); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.services-category__head h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.8rem); }
.services-category__head > p { margin: 0 0 5px; color: var(--muted); font-size: .75rem; }
.services-category__description { max-width: 760px; margin: -10px 0 32px; color: var(--muted); }
.services-category__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.service-catalog-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 10px 35px rgba(18,14,20,.055); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.service-catalog-card:hover { transform: translateY(-5px); border-color: rgba(118,152,0,.36); box-shadow: 0 24px 60px rgba(18,14,20,.12); }
.service-catalog-card--featured { grid-column: span 2; border-color: rgba(224,25,135,.7); background: linear-gradient(135deg, #fff 0%, #fff3fa 100%); box-shadow: 0 22px 70px rgba(224,25,135,.14); }
.service-catalog-card__media { position: relative; height: 220px; overflow: hidden; background: var(--ink); }
.service-catalog-card--featured .service-catalog-card__media { height: 300px; }
.service-catalog-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,5,7,.72), transparent 52%); pointer-events: none; }
.service-catalog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.service-catalog-card:hover .service-catalog-card__media img { transform: scale(1.045); }
.service-catalog-card__category { position: absolute; z-index: 1; left: 17px; bottom: 15px; max-width: calc(100% - 34px); color: white; font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-catalog-card__label { position: absolute; z-index: 2; top: 15px; right: 15px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: white; background: var(--services-accent); font-size: .61rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.service-catalog-card__content { flex: 1; display: flex; flex-direction: column; padding: 24px; }
.service-catalog-card--featured .service-catalog-card__content { padding: 28px 30px 30px; }
.service-catalog-card__heading { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.service-catalog-card__heading h3 { margin-bottom: 12px; font-size: 1.65rem; }
.service-catalog-card--featured .service-catalog-card__heading h3 { font-size: 2.25rem; }
.service-catalog-card__heading > span { display: grid; flex: 0 0 33px; width: 33px; height: 33px; place-items: center; border-radius: 50%; color: white; background: var(--services-accent); }
.service-catalog-card__content > p { margin-bottom: 18px; color: var(--muted); font-size: .83rem; line-height: 1.58; }
.service-highlights, .service-inclusions ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.service-highlights { margin-bottom: 20px; }
.service-highlights li, .service-inclusions li { position: relative; padding-left: 19px; color: #373138; font-size: .75rem; line-height: 1.45; }
.service-highlights li::before, .service-inclusions li::before { content: '✓'; position: absolute; left: 0; color: var(--services-accent-dark); font-weight: 900; }
.service-inclusions { margin-top: 2px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-inclusions summary { display: flex; min-height: 46px; justify-content: space-between; align-items: center; gap: 18px; color: var(--text); font-size: .7rem; font-weight: 800; cursor: pointer; list-style: none; }
.service-inclusions summary::-webkit-details-marker { display: none; }
.service-inclusions summary span { font-size: 1rem; transition: transform .25s ease; }
.service-inclusions[open] summary span { transform: rotate(45deg); }
.service-inclusions ul { padding: 2px 0 18px; }
.service-catalog-card__actions { display: grid; gap: 11px; margin-top: auto; padding-top: 22px; }
.service-add { min-height: 48px; padding: 0 16px; border: 1px solid var(--ink); border-radius: 11px; color: white; background: var(--ink); font-size: .68rem; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; cursor: pointer; transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease; }
.service-add:hover:not(:disabled) { color: white; border-color: var(--services-accent); background: var(--services-accent); transform: translateY(-2px); }
.service-add.is-added, .service-add:disabled { color: white; border-color: var(--services-accent); background: var(--services-accent); cursor: default; opacity: 1; }
.service-add span { margin-right: 5px; font-size: 1rem; }
.service-detail-link { justify-self: center; padding: 4px; color: var(--services-accent-dark); font-size: .7rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.service-detail-link span { display: inline-block; transition: transform .2s ease; }
.service-detail-link:hover span { transform: translate(2px, -2px); }
.services-empty { padding: 80px 24px; text-align: center; border: 1px dashed #b9b4b9; border-radius: 24px; background: #fafafa; }
.services-empty > span { display: grid; width: 54px; height: 54px; margin: 0 auto 20px; place-items: center; border-radius: 50%; color: white; background: var(--services-accent); }
.services-empty h2 { margin-bottom: 10px; font-size: 2.4rem; }
.services-empty p { color: var(--muted); }
.services-cta { background: radial-gradient(circle at 80% 20%, rgba(224,25,135,.18), transparent 28%), var(--ink); }

.budget-cart-fab { position: fixed; z-index: 95; left: 22px; bottom: 24px; display: flex; min-height: 56px; align-items: center; gap: 10px; padding: 7px 8px 7px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: white; background: rgba(8,6,9,.95); box-shadow: 0 18px 45px rgba(0,0,0,.25); backdrop-filter: blur(16px); cursor: pointer; transition: transform .22s ease, box-shadow .22s ease; }
.budget-cart-fab:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(0,0,0,.32); }
.budget-cart-fab__icon { color: var(--services-accent); font-size: 1.05rem; }
.budget-cart-fab > span:nth-child(2) { font-size: .67rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.budget-cart-fab strong { display: grid; min-width: 40px; height: 40px; padding: 0 8px; place-items: center; border-radius: 50%; color: white; background: var(--services-accent); font-size: .75rem; }
.budget-cart-backdrop { position: fixed; z-index: 110; inset: 0; background: rgba(5,4,6,.66); opacity: 0; backdrop-filter: blur(5px); transition: opacity .3s ease; }
.budget-cart-backdrop.is-visible { opacity: 1; }
.budget-cart { position: fixed; z-index: 120; top: 0; right: 0; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; width: min(480px, 100%); height: 100dvh; color: var(--text); background: white; box-shadow: -28px 0 80px rgba(0,0,0,.24); transform: translateX(105%); visibility: hidden; transition: transform .3s ease, visibility .3s ease; }
.budget-cart.is-open { transform: translateX(0); visibility: visible; }
.budget-cart__header { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 25px 25px 20px; border-bottom: 1px solid var(--line); }
.budget-cart__header p { margin: 0 0 3px; color: var(--services-accent-dark); font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.budget-cart__header h2 { margin: 0; font-size: 2rem; }
.budget-cart__header h2 span { display: inline-grid; min-width: 30px; height: 30px; margin-left: 4px; place-items: center; border-radius: 50%; color: white; background: var(--services-accent); font: 900 .67rem var(--sans); vertical-align: middle; }
.budget-cart__close { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.budget-cart__body { overflow-y: auto; padding: 22px 25px; }
.budget-cart__items > ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.budget-cart__items li { display: grid; grid-template-columns: 64px 1fr 34px; gap: 13px; align-items: center; padding: 9px; border: 1px solid var(--line); border-radius: 13px; background: #fafafa; }
.budget-cart__items li img { width: 64px; height: 60px; object-fit: cover; border-radius: 9px; }
.budget-cart__items li div { min-width: 0; }
.budget-cart__items li span { display: block; overflow: hidden; color: var(--services-accent-dark); font-size: .56rem; font-weight: 900; letter-spacing: .08em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.budget-cart__items li strong { display: block; margin-top: 2px; font: 400 1rem var(--serif); line-height: 1.15; }
.budget-cart__items li button { width: 32px; height: 32px; border: 0; border-radius: 50%; color: #625d63; background: #eceaea; font-size: 1.1rem; cursor: pointer; }
.budget-cart__items li button:hover { color: white; background: var(--ink); }
.budget-cart__empty { padding: 54px 26px; text-align: center; }
.budget-cart__empty > span { display: grid; width: 54px; height: 54px; margin: 0 auto 18px; place-items: center; border-radius: 50%; color: white; background: var(--services-accent); font-size: 1.4rem; }
.budget-cart__empty h3 { margin-bottom: 10px; font-size: 1.65rem; }
.budget-cart__empty p { color: var(--muted); font-size: .81rem; }
.budget-cart__empty button { padding: 8px 0; border: 0; border-bottom: 1px solid currentColor; color: var(--services-accent-dark); background: transparent; font-size: .7rem; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.cart-recommendation { display: grid; grid-template-columns: 92px 1fr; gap: 15px; margin-top: 22px; padding: 13px; border: 1px solid rgba(224,25,135,.3); border-radius: 15px; background: #fff2f9; }
.cart-recommendation img { width: 92px; height: 100%; min-height: 112px; object-fit: cover; border-radius: 10px; }
.cart-recommendation span { color: var(--services-accent-dark); font-size: .58rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.cart-recommendation p { margin: 5px 0 8px; font-size: .75rem; line-height: 1.45; }
.cart-recommendation button { padding: 0; border: 0; border-bottom: 1px solid currentColor; color: var(--ink); background: transparent; font-size: .65rem; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.budget-cart__footer { padding: 18px 25px 22px; border-top: 1px solid var(--line); background: white; }
.budget-cart__footer > p { margin: 0 0 13px; color: var(--muted); font-size: .68rem; line-height: 1.45; }
.budget-cart__whatsapp { display: flex; min-height: 50px; justify-content: center; align-items: center; gap: 10px; padding: 0 16px; border-radius: 11px; color: white; background: var(--services-accent); font-size: .68rem; font-weight: 900; letter-spacing: .05em; text-align: center; text-transform: uppercase; }
.budget-cart__whatsapp[aria-disabled='true'] { opacity: .45; pointer-events: none; }
.budget-cart__form { display: block; margin-top: 12px; color: #555056; font-size: .68rem; font-weight: 800; text-align: center; text-decoration: underline; text-underline-offset: 4px; }
.services-toast { position: fixed; z-index: 150; left: 50%; bottom: 26px; width: min(560px, calc(100% - 32px)); padding: 14px 18px; border: 1px solid rgba(224,25,135,.4); border-radius: 13px; color: white; background: rgba(8,6,9,.96); box-shadow: 0 18px 50px rgba(0,0,0,.3); font-size: .76rem; text-align: center; opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.services-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Fotomatón Velvet */
.velvet-hero { position: relative; min-height: 780px; display: flex; align-items: end; overflow: hidden; color: white; background: var(--ink); }
.velvet-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.velvet-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,4,6,.86), rgba(5,4,6,.48) 50%, rgba(5,4,6,.1)), linear-gradient(0deg, rgba(5,4,6,.78), transparent 58%); }
.velvet-hero__content { position: relative; z-index: 1; padding-bottom: 95px; }
.velvet-back { position: absolute; top: -240px; left: 0; color: rgba(255,255,255,.8); font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.velvet-badge { display: inline-flex; margin-bottom: 22px; padding: 8px 13px; border-radius: 99px; color: white; background: var(--services-accent); font-size: .63rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.velvet-hero h1 { margin: 0 0 20px; font-size: clamp(4.2rem, 10vw, 8.5rem); letter-spacing: -.065em; }
.velvet-hero h1 span { color: var(--services-accent); font-style: italic; }
.velvet-hero__content > p:last-of-type { max-width: 660px; color: #e2dce2; font-size: clamp(1rem, 2vw, 1.25rem); }
.velvet-intro { padding: 110px 0; background: white; }
.velvet-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.velvet-intro h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5rem); }
.velvet-intro__copy { padding-top: 26px; }
.velvet-intro__copy p { color: var(--muted); font-size: 1.05rem; }
.velvet-benefits { padding: 110px 0; color: white; background: var(--ink); }
.velvet-benefits header { max-width: 750px; margin-bottom: 54px; }
.velvet-benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.velvet-benefits article { min-height: 245px; padding: 30px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.velvet-benefits article > span { color: var(--services-accent); font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.velvet-benefits h3 { margin-top: 40px; font-size: 1.35rem; }
.velvet-benefits article p { margin: 0; color: #bdb6be; font-size: .78rem; line-height: 1.55; }
.velvet-why { padding: 120px 0; background: #f5f5f1; }
.velvet-why__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.velvet-why figure { height: 660px; margin: 0; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.velvet-why figure img { width: 100%; height: 100%; object-fit: cover; }
.velvet-why h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.velvet-why p { color: var(--muted); }
.velvet-why ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 28px 0 34px; padding: 0; list-style: none; }
.velvet-why li { position: relative; padding-left: 21px; font-size: .78rem; font-weight: 700; }
.velvet-why li::before { content: '✓'; position: absolute; left: 0; color: var(--services-accent-dark); }
.velvet-gallery { padding: 120px 0; background: white; }
.velvet-gallery header { max-width: 780px; margin-bottom: 46px; }
.velvet-gallery__grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; grid-template-rows: 300px 300px; gap: 16px; }
.velvet-gallery figure { margin: 0; overflow: hidden; border-radius: 18px; }
.velvet-gallery__main { grid-row: 1 / 3; }
.velvet-gallery figure:nth-child(2) { grid-column: span 2; }
.velvet-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.velvet-gallery figure:hover img { transform: scale(1.035); }
.velvet-video-section { padding: 110px 0; color: white; background: #100e11; }
.velvet-video-section__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.velvet-video-section h2 { font-size: clamp(3rem, 5vw, 5rem); }
.velvet-video-section p { color: #bdb7be; }
.velvet-video-placeholder { position: relative; height: 480px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: #050405; }
.velvet-video-placeholder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,4,6,.86), rgba(5,4,6,.1)); }
.velvet-video-placeholder > img { width: 100%; height: 100%; object-fit: cover; opacity: .76; }
.velvet-video-placeholder > span { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 78px; height: 78px; place-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: white; background: var(--services-accent); transform: translate(-50%, -50%); }

.services-page .floating-socials__networks a:hover { color: white; background: var(--magenta); }
.services-page .floating-socials__whatsapp { color: white !important; background: transparent; box-shadow: 0 12px 34px rgba(0,200,65,.28); }
.services-page .floating-socials__whatsapp:hover { box-shadow: 0 16px 40px rgba(0,200,65,.42); }
.velvet-video-placeholder > div { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 26px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.velvet-video-placeholder strong { font: 400 1.6rem var(--serif); }
.velvet-video-placeholder small { color: #c9c3ca; font-size: .65rem; font-weight: 800; letter-spacing: .07em; text-align: right; text-transform: uppercase; }

@media (max-width: 1050px) {
  .services-catalog__head { gap: 42px; }
  .services-toolbar { grid-template-columns: 260px 1fr; }
  .services-category__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-catalog-card--featured { grid-column: span 2; }
  .velvet-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .velvet-why__grid { gap: 50px; }
  .velvet-why figure { height: 580px; }
}

@media (max-width: 820px) {
  .services-hero { min-height: 600px; }
  .services-catalog { padding: 82px 0 90px; }
  .services-catalog__head { grid-template-columns: 1fr; gap: 24px; }
  .services-catalog__head > p { max-width: 620px; }
  .services-toolbar { position: static; grid-template-columns: 1fr; margin-inline: 0; }
  .services-category { padding-bottom: 58px; }
  .service-catalog-card--featured .service-catalog-card__media { height: 260px; }
  .velvet-hero { min-height: 700px; }
  .velvet-hero__content { padding-bottom: 70px; }
  .velvet-back { top: -170px; }
  .velvet-intro__grid, .velvet-why__grid, .velvet-video-section__grid { grid-template-columns: 1fr; gap: 42px; }
  .velvet-intro__copy { padding-top: 0; }
  .velvet-why figure { height: 470px; }
  .velvet-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 230px 230px; }
  .velvet-gallery__main { grid-column: 1 / 3; grid-row: auto; }
  .velvet-gallery figure:nth-child(2) { grid-column: auto; }
  .velvet-video-placeholder { height: 400px; }
}

@media (max-width: 600px) {
  .services-hero h1 { font-size: 3rem; }
  .services-hero .hero-features { display: grid; }
  .services-catalog { padding-top: 68px; }
  .services-catalog__head h2 { font-size: 2.75rem; }
  .services-toolbar { padding: 12px; border-radius: 14px; }
  .services-results-bar { margin-bottom: 22px; }
  .services-category__head { align-items: start; }
  .services-category__head > div { gap: 10px; }
  .services-category__head > p { display: none; }
  .services-category__head h2 { font-size: 2.2rem; }
  .services-category__grid { grid-template-columns: 1fr; }
  .service-catalog-card--featured { grid-column: auto; }
  .service-catalog-card__media, .service-catalog-card--featured .service-catalog-card__media { height: 230px; }
  .service-catalog-card--featured .service-catalog-card__content { padding: 24px; }
  .service-catalog-card--featured .service-catalog-card__heading h3 { font-size: 1.8rem; }
  .budget-cart-fab { left: 12px; bottom: 14px; min-height: 50px; }
  .budget-cart-fab > span:nth-child(2) { display: none; }
  .budget-cart-fab strong { min-width: 36px; height: 36px; }
  .budget-cart__header { padding: 20px 18px 16px; }
  .budget-cart__body { padding: 18px; }
  .budget-cart__footer { padding: 15px 18px 18px; }
  .services-toast { bottom: 76px; }
  .velvet-hero { min-height: 670px; }
  .velvet-hero h1 { font-size: 4.2rem; }
  .velvet-hero__content { padding-bottom: 52px; }
  .velvet-hero .actions { display: grid; }
  .velvet-back { top: -125px; }
  .velvet-intro, .velvet-benefits, .velvet-why, .velvet-gallery, .velvet-video-section { padding: 76px 0; }
  .velvet-benefits__grid { grid-template-columns: 1fr; }
  .velvet-benefits article { min-height: 200px; }
  .velvet-why figure { height: 390px; }
  .velvet-why ul { grid-template-columns: 1fr; }
  .velvet-gallery__grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .velvet-gallery__main { grid-column: auto; }
  .velvet-gallery figure { height: 270px; }
  .velvet-video-placeholder { height: 330px; }
  .velvet-video-placeholder > div { flex-direction: column; align-items: start; }
  .velvet-video-placeholder small { text-align: left; }
}
