@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --mist: #f0fdfa;
  --paper: #ecfeff;
  --teal: #0d9488;
  --slate: #1e293b;
  --ink: #0f172a;
  --coral: #ea580c;
  --coral-light: #fdba74;
  --muted: #64748b;
  --line: #ccfbf1;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Source Sans 3", system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 10px 32px rgba(15,23,42,.1);
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-ui); font-size: 1rem; line-height: 1.65; color: var(--ink); background: var(--mist); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--coral); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.22; color: var(--ink); }
.container { width: min(var(--max), 92vw); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; z-index: 9999; background: var(--teal); color: #fff; padding: 8px 16px; font-weight: 700; border-radius: var(--radius); }
.skip-link:focus { left: 12px; top: 12px; }

/* Header bordeaux band */
.em-masthead { background: linear-gradient(90deg, var(--slate), var(--teal)); color: #fff; padding: 10px 0; font-size: .74rem; }
.em-masthead-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; width: min(var(--max), 92vw); margin-inline: auto; }
.em-masthead a { color: var(--coral-light); }
.em-masthead-links { display: flex; gap: 16px; flex-wrap: wrap; }
.tasa-bcv { color: var(--coral-light); font-weight: 600; }

.em-header { background: var(--mist); border-bottom: 3px solid var(--coral); position: sticky; top: 0; z-index: 300; }
.em-header-inner { display: flex; align-items: center; gap: 20px; padding: 14px 4vw; max-width: var(--max); margin-inline: auto; }
.em-logo img { height: 38px; width: auto; }
.em-nav { display: flex; gap: 4px; margin-left: auto; }
.em-nav a { font-size: .84rem; font-weight: 600; color: var(--muted); padding: 8px 14px; border-radius: var(--radius); }
.em-nav a:hover, .em-nav a.active { color: var(--teal); background: var(--paper); }
.em-nav-toggle { display: none; margin-left: auto; background: var(--teal); color: #fff; border: none; padding: 8px 12px; border-radius: var(--radius); cursor: pointer; font-weight: 700; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 22px; font-family: var(--font-ui); font-size: .84rem; font-weight: 700; border: none; border-radius: var(--radius); cursor: pointer; transition: transform .15s, background .2s; }
.btn:hover { transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #0f766e; color: #fff; }
.btn-coral { background: var(--coral); color: var(--ink); }
.btn-coral:hover { background: #c2410c; color: var(--ink); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--teal); background: var(--paper); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-sm { padding: 7px 12px; font-size: .76rem; }
.btn-block { width: 100%; }

/* Hero editorial centrado */
.em-hero { padding: 56px 0 0; text-align: center; background: var(--mist); }
.em-hero-inner { max-width: 680px; margin-inline: auto; padding: 0 4vw 40px; }
.em-hero-kicker { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--teal); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; background: var(--paper); }
.em-hero h1 { font-size: clamp(1.85rem, 4vw, 2.65rem); margin-bottom: 16px; text-wrap: balance; max-width: 18em; margin-inline: auto; }
.em-hero-lead { font-size: 1.02rem; color: var(--muted); margin-bottom: 28px; max-width: 36em; margin-inline: auto; }
.em-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.em-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.em-hero-pills span { font-size: .72rem; font-weight: 700; padding: 6px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; color: var(--muted); }
.em-hero-band { position: relative; height: 320px; overflow: hidden; border-top: 4px solid var(--coral); border-bottom: 4px solid var(--teal); }
.em-hero-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.em-hero-band-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(44,24,16,.75)); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 24px; }
.em-hero-band-overlay p { color: #fff; font-family: var(--font-display); font-size: 1.1rem; }

/* Stats row */
.em-stats { background: var(--teal); color: #fff; padding: 0; margin-top: -1px; }
.em-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.em-stat { padding: 22px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.em-stat:last-child { border-right: none; }
.em-stat strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--coral-light); }
.em-stat span { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }

/* Sections */
.em-section { padding: 64px 0; }
.em-section-alt { background: var(--paper); }
.em-head { margin-bottom: 36px; }
.em-head.center { text-align: center; max-width: 620px; margin-inline: auto; margin-bottom: 36px; }
.em-head .label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--coral); margin-bottom: 8px; }
.em-head p { color: var(--muted); margin-top: 10px; font-size: .95rem; }

/* Service list rows */
.em-svc-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.em-svc-row { display: grid; grid-template-columns: 64px 72px 1fr auto; gap: 16px; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line); transition: background .2s; }
.em-svc-thumb { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); flex-shrink: 0; }
.em-svc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.em-svc-row:last-child { border-bottom: none; }
.em-svc-row:hover { background: var(--paper); }
.em-svc-num { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--teal); text-align: center; }
.em-svc-row h3 { font-size: .98rem; margin-bottom: 4px; }
.em-svc-row p { font-size: .82rem; color: var(--muted); }
.em-svc-link { font-size: .78rem; font-weight: 700; white-space: nowrap; }

/* Price cards grid */
.em-price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.em-price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: start; transition: box-shadow .2s; }
.em-price-card:hover { box-shadow: var(--shadow); border-color: var(--coral); }
.em-price-card .sku { font-size: .68rem; font-weight: 700; color: var(--teal); writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing: .06em; }
.em-price-card h3 { font-size: .92rem; margin-bottom: 4px; }
.em-price-card .mod { font-size: .74rem; color: var(--muted); }
.em-price-tag { text-align: right; }
.em-price-tag strong { display: block; font-size: 1rem; color: var(--teal); }
.em-price-tag small { font-size: .7rem; color: var(--muted); }

/* Process vertical */
.em-process { max-width: 560px; margin-inline: auto; }
.em-process-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding-bottom: 28px; position: relative; }
.em-process-item:not(:last-child)::before { content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px; background: var(--line); }
.em-process-num { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.em-process-item h3 { font-size: .95rem; margin-bottom: 4px; }
.em-process-item p { font-size: .84rem; color: var(--muted); }

/* Showcase strip */
.em-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 4px solid var(--coral); border-bottom: 4px solid var(--teal); }
.em-showcase-item { position: relative; height: 200px; overflow: hidden; }
.em-showcase-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.em-showcase-item:hover img { transform: scale(1.04); }
.em-showcase-item span { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px; background: linear-gradient(transparent, rgba(15,23,42,.85)); color: #fff; font-size: .78rem; font-weight: 600; }

/* Gallery mosaic */
.em-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; gap: 10px; }
.em-gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.em-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.em-gallery-item.wide { grid-column: span 2; }
.em-gallery-item.tall { grid-row: span 2; }
.em-gallery-cap { position: absolute; inset: auto 0 0 0; padding: 10px 12px; background: linear-gradient(transparent, rgba(13,148,136,.88)); color: #fff; font-size: .72rem; font-weight: 600; }

/* Process + image split */
.em-process-split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.em-process-visual { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.em-process-visual img { width: 100%; min-height: 320px; object-fit: cover; }

/* Catalog hero band */
.em-cat-hero { position: relative; padding: 0; text-align: center; border-bottom: 4px solid var(--coral); overflow: hidden; min-height: 220px; display: flex; align-items: center; }
.em-cat-hero-bg { position: absolute; inset: 0; z-index: 0; }
.em-cat-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.em-cat-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,41,59,.92), rgba(13,148,136,.78)); }
.em-cat-hero .container { position: relative; z-index: 1; padding: 56px 4vw; }
.em-cat-hero h1 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.em-cat-hero p { color: rgba(255,255,255,.85); margin-top: 10px; font-size: .9rem; }

/* CTA with image */
.em-cta-visual { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 280px; display: flex; align-items: center; justify-content: center; text-align: center; border-bottom: 4px solid var(--coral); }
.em-cta-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.em-cta-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,41,59,.92), rgba(13,148,136,.82)); z-index: 1; }
.em-cta-inner { position: relative; z-index: 2; padding: 48px 32px; color: #fff; max-width: 560px; }
.em-cta-inner h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
.em-cta-inner p { color: rgba(255,255,255,.85); margin-bottom: 20px; }

.map-wrap iframe { width: 100%; height: 340px; border: none; border-radius: var(--radius); border: 1px solid var(--line); }
.about-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 28px 0; }
.about-gallery img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.em-faq { max-width: 720px; margin-inline: auto; }
.em-faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: #fff; }
.em-faq-q { width: 100%; text-align: left; background: var(--paper); border: none; padding: 14px 18px; font-family: var(--font-display); font-size: .9rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; gap: 12px; }
.em-faq-q::after { content: "+"; color: var(--teal); font-size: 1.1rem; font-weight: 400; }
.em-faq-item.open .em-faq-q::after { content: "−"; }
.em-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; }
.em-faq-item.open .em-faq-a { max-height: 160px; }
.em-faq-a p { padding: 0 18px 16px; font-size: .86rem; color: var(--muted); }

/* Contact */
.em-contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; }
.em-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px; }
.em-card h3 { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--coral); margin-bottom: 6px; font-family: var(--font-ui); font-weight: 700; }
.em-map iframe { width: 100%; height: 340px; border: none; border-radius: var(--radius); border: 1px solid var(--line); }

/* Catalog */
.em-cat-hero-plain { background: var(--teal); color: #fff; padding: 48px 0; text-align: center; border-bottom: 4px solid var(--coral); }
.em-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
.em-chip { padding: 7px 14px; font-size: .76rem; font-weight: 600; border: 1px solid var(--line); background: #fff; border-radius: 999px; cursor: pointer; color: var(--muted); }
.em-chip.active, .em-chip:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.em-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.em-cat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.em-cat-img img { width: 100%; height: 165px; object-fit: cover; }
.em-cat-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.em-cat-body .sku { font-size: .68rem; font-weight: 700; color: var(--teal); }
.em-cat-body h2 { font-size: .98rem; margin: 6px 0; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 8px 0; }
.feat-tags li { font-size: .66rem; padding: 3px 8px; background: var(--paper); border-radius: 4px; color: var(--muted); }
.modalidad-tag { font-size: .72rem; color: var(--coral); font-weight: 600; }
.precio-slot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.precio-line strong { color: var(--teal); }
.precio-line span { display: block; font-size: .74rem; color: var(--muted); }
.precio-note { font-size: .7rem; color: var(--muted); font-style: italic; margin-top: 4px; }

/* CTA */
.em-cta { background: var(--teal); color: #fff; padding: 48px 32px; text-align: center; border-radius: var(--radius); border-bottom: 4px solid var(--coral); }
.em-cta h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
.em-cta p { color: rgba(255,255,255,.8); margin-bottom: 20px; }
.legal-page { padding: 48px 0 64px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .fecha { color: var(--muted); margin-bottom: 24px; font-size: .88rem; }
.legal-page h2 { font-size: 1.05rem; margin: 28px 0 10px; padding-bottom: 6px; border-bottom: 2px solid var(--paper); }
.legal-page p, .legal-page li { font-size: .9rem; margin-bottom: 8px; color: var(--muted); }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .84rem; }
.legal-page th, .legal-page td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.legal-page th { background: var(--paper); }
.legal-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.legal-hub-card { display: block; padding: 20px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: var(--radius); color: inherit; }
.legal-hub-card:hover { box-shadow: var(--shadow); }
.about-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; margin-bottom: 28px; }
.about-visual { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.about-visual img { width: 100%; min-height: 240px; object-fit: cover; }
.contact-banner { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; border: 1px solid var(--line); }
.contact-banner img { width: 100%; height: 160px; object-fit: cover; }
.contact-banner-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,41,59,.9), rgba(13,148,136,.75)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; color: #fff; }
.contact-banner-overlay h2 { color: #fff; font-size: 1.2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.ads-disclaimer { background: #f0fdfa; border: 1px solid #99f6e4; border-left: 4px solid var(--coral); padding: 16px 20px; margin: 32px auto; font-size: .84rem; max-width: var(--max); width: 92vw; border-radius: var(--radius); color: var(--muted); }
.em-legal-strip { background: var(--ink); color: #94a3b8; text-align: center; padding: 12px; font-size: .8rem; }
.em-legal-strip a { color: var(--coral-light); }

.em-footer { background: var(--slate); color: #e8ddd4; padding: 48px 0 24px; }
.em-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.em-footer-brand p { font-size: .84rem; margin-top: 12px; line-height: 1.5; }
.em-footer-col h4 { font-family: var(--font-display); color: #fff; font-size: .88rem; margin-bottom: 12px; }
.em-footer-col a { display: block; color: #94a3b8; font-size: .82rem; margin-bottom: 6px; }
.em-footer-col a:hover { color: var(--coral-light); }
.em-footer-legal { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.em-footer-legal a { color: #94a3b8; font-size: .76rem; }
.em-footer-copy { text-align: center; font-size: .72rem; margin-top: 16px; color: #5eead4; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--ink); color: #fff; padding: 16px; transform: translateY(100%); transition: transform .35s; border-top: 3px solid var(--coral); }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: var(--max); margin-inline: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; }
.cookie-inner p { font-size: .84rem; flex: 1; min-width: 220px; color: #e8ddd4; }
.cookie-inner a { color: var(--coral-light); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }


/* Split hero — distinto al editorial centrado */
/* Hero portada equilibrada */
.em-hero-portada { padding: 48px 0 56px; background: linear-gradient(165deg, var(--mist) 0%, #fff 55%, var(--paper) 100%); border-bottom: 1px solid var(--line); }
.em-hero-portada-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.em-hero-portada .em-hero-copy { padding: 0; max-width: 34rem; }
.em-hero-portada h1 { font-size: clamp(1.85rem, 3.2vw, 2.55rem); margin-bottom: 16px; line-height: 1.18; text-wrap: balance; }
.em-hero-portada .em-hero-lead { font-size: 1rem; color: var(--muted); margin-bottom: 24px; max-width: 32em; }
.em-hero-portada .em-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.em-hero-meta { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; }
.em-hero-meta li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 16px; min-width: 100px; }
.em-hero-meta strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--teal); margin-bottom: 2px; }
.em-hero-meta span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.em-hero-media { position: relative; margin: 0; border-radius: calc(var(--radius) + 4px); overflow: hidden; box-shadow: 0 20px 50px rgba(15,23,42,.12); aspect-ratio: 5/4; border: 1px solid var(--line); }
.em-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.em-hero-badge { position: absolute; left: 16px; bottom: 16px; background: rgba(30,41,59,.88); color: #fff; font-size: .78rem; font-weight: 600; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); }

/* Split hero legacy — oculto si no se usa */
.em-hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; background: var(--mist); }
.em-hero-copy { padding: 48px 4vw; display: flex; flex-direction: column; justify-content: center; }
.em-hero-copy h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 16px; text-align: left; max-width: none; }
.em-hero-copy .em-hero-lead { text-align: left; margin-inline: 0; }
.em-hero-copy .em-hero-actions { justify-content: flex-start; }
.em-hero-copy .em-hero-pills { justify-content: flex-start; }
.em-hero-visual { position: relative; display: grid; grid-template-rows: 1fr 1fr; gap: 8px; padding: 8px 8px 8px 0; }
.em-hero-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.em-hero-visual .main-img { grid-row: span 2; border: 3px solid var(--coral); }
.em-svc-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.em-svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.em-svc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.em-svc-card-img img { width: 100%; height: 120px; object-fit: cover; }
.em-svc-card-body { padding: 14px 16px; }
.em-svc-card-body .sku { font-size: .68rem; font-weight: 700; color: var(--teal); }
.em-svc-card-body h3 { font-size: .92rem; margin: 6px 0 4px; }
.em-svc-card-body p { font-size: .8rem; color: var(--muted); margin-bottom: 10px; }
.em-price-card { border-top: 3px solid var(--teal); }
.em-price-card .sku { writing-mode: horizontal-tb; transform: none; grid-column: 1 / -1; }
.em-price-card { grid-template-columns: 1fr auto; }
@media (max-width: 900px) {
  .em-hero-portada-inner, .em-hero-split { grid-template-columns: 1fr; }
  .em-hero-media { aspect-ratio: 16/10; max-height: 280px; }
  .em-hero-meta { justify-content: flex-start; }
  .em-hero-visual { grid-template-columns: 1fr 1fr; grid-template-rows: auto; padding: 0 4vw 24px; }
  .em-hero-visual .main-img { grid-row: auto; grid-column: span 2; height: 200px; }
  .em-svc-cards { grid-template-columns: 1fr; }
}.reveal { opacity: 0; transform: translateY(14px); transition: opacity .45s, transform .45s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .em-nav { position: fixed; inset: 0; top: 110px; background: var(--mist); flex-direction: column; padding: 24px; transform: translateX(100%); transition: transform .3s; z-index: 250; }
  .em-nav.open { transform: translateX(0); }
  .em-nav-toggle { display: block; }
  .em-header .btn-teal { display: none; }
  .em-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .em-stat:nth-child(2) { border-right: none; }
  .em-svc-row { grid-template-columns: 56px 1fr; }
  .em-svc-thumb { display: none; }
  .em-svc-link { grid-column: 2; justify-self: start; margin-top: 6px; }
  .em-price-grid, .em-cat-grid, .em-contact, .em-footer-grid, .legal-hub-grid, .about-split, .contact-grid, .em-showcase, .em-gallery, .em-process-split, .about-gallery { grid-template-columns: 1fr; }
  .em-gallery-item.wide, .em-gallery-item.tall { grid-column: auto; grid-row: auto; }
  .em-hero-band { height: 240px; }
}
@media (max-width: 520px) {
  .em-price-card { grid-template-columns: 1fr; }
  .em-price-card .sku { writing-mode: horizontal-tb; transform: none; }
}
