﻿/* ===========================
   SHARED — nav, footer, base
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap&font-display=swap');

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

:root {
  --orange:      #E8620A;
  --orange-glow: #FF7A1A;
  --orange-dim:  rgba(232,98,10,0.10);
  --orange-mid:  rgba(232,98,10,0.20);
  --bg:          #FFFFFF;
  --bg-2:        #F7F5F2;
  --bg-3:        #F0EDE8;
  --ink:         #111111;
  --ink-70:      rgba(17,17,17,0.70);
  --ink-45:      rgba(17,17,17,0.45);
  --ink-20:      rgba(17,17,17,0.20);
  --ink-10:      rgba(17,17,17,0.10);
  --ink-05:      rgba(17,17,17,0.05);
  --serif:       'Fraunces', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --display:     'Syne', system-ui, sans-serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; overscroll-behavior-y: none; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.7; overflow-x: hidden; cursor: none; margin: 0; padding: 0; }
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none !important; }
  *, *::before, *::after { cursor: auto !important; }
  a, button, [role="button"], input, select, textarea, label { cursor: pointer !important; }
}
img:not(.lang-trigger__flag):not(.lang-dropdown__flag) { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Cursor ─────────────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 2147483647;
  will-change: transform;
  transition: width .3s var(--ease), height .3s var(--ease);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(232,98,10,.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 2147483646;
  will-change: transform;
  transition: width .4s var(--ease), height .4s var(--ease), opacity .3s;
}

/* ── Nav ────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; padding: 20px 0; transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease); }
.nav.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 12px 0; border-bottom: 1px solid var(--ink-10); box-shadow: 0 2px 24px rgba(0,0,0,.06); }
.nav__inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { width: auto; height: 78px; object-fit: contain; filter: brightness(0) invert(1); transition: filter .4s; }
.nav.scrolled .nav__logo img { filter: none; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-family: var(--display); font-size: 13px; font-weight: 500; letter-spacing: .5px; color: var(--ink-70); position: relative; transition: color .3s; white-space: nowrap; }
.nav__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--orange); transition: width .3s var(--ease); }
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,.85); }
.nav:not(.scrolled) .nav__links a:hover { color: #fff; }
/* Active page — orange pill indicator */
.nav__links a.active {
  color: var(--orange) !important;
  background: var(--orange-dim);
  padding: 4px 12px;
  border-radius: 100px;
}
.nav__links a.active::after { display: none; }
.nav:not(.scrolled) .nav__links a.active {
  color: #fff !important;
  background: rgba(255,255,255,.15);
}
.nav__cta { display: flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 10px 22px; border-radius: 100px; font-family: var(--display); font-size: 13px; font-weight: 600; white-space: nowrap; transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); flex-shrink: 0; }
.nav__cta:hover { background: var(--orange-glow); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,10,.4); }

/* ── Hamburger button ───────────────────────────── */
.nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  cursor: none;
  padding: 0;
  flex-shrink: 0;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.nav__hamburger:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
}
/* Scrolled state — dark background */
.nav.scrolled .nav__hamburger {
  background: var(--bg-3);
  border-color: var(--ink-10);
}
.nav.scrolled .nav__hamburger:hover {
  background: var(--orange-dim);
  border-color: var(--orange);
}
/* The three lines — drawn with pseudo-elements + box-shadow */
.nav__hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.nav__hamburger-icon span {
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s var(--ease), opacity .25s var(--ease), width .3s var(--ease), background .3s;
}
.nav__hamburger-icon span:nth-child(1) { width: 20px; }
.nav__hamburger-icon span:nth-child(2) { width: 14px; }
.nav__hamburger-icon span:nth-child(3) { width: 20px; }
/* Scrolled — dark lines */
.nav.scrolled .nav__hamburger-icon span { background: var(--ink); }
/* Hover — all lines full width + orange */
.nav__hamburger:hover .nav__hamburger-icon span { width: 20px; background: var(--orange); }
/* Open state — morphs to X */
.nav__hamburger.open .nav__hamburger-icon span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 20px; }
.nav__hamburger.open .nav__hamburger-icon span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open .nav__hamburger-icon span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 20px; }

/* ── Mobile menu ────────────────────────────────── */
.mobile-menu { position: fixed; inset: 0; background: #fff; z-index: 950; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateX(100%); transition: transform .5s var(--ease); will-change: transform; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close { position: absolute; top: 28px; right: 32px; background: rgba(17,17,17,.06); border: 1px solid rgba(17,17,17,.12); color: var(--ink); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: none; transition: background .3s, border-color .3s, color .3s; }
.mobile-menu__close:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu nav a { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--ink-70); transition: color .3s; }
.mobile-menu nav a:hover { color: var(--orange); }
.mobile-menu__cta { font-family: var(--display) !important; font-size: 1rem !important; background: var(--orange); color: #fff !important; padding: 14px 36px; border-radius: 100px; }

/* ── Marquee ─────────────────────────────────────── */
.marquee-strip { background: var(--orange); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 32px; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.marquee-dot { color: rgba(255,255,255,.4) !important; font-size: 7px !important; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Page hero (inner pages) ────────────────────── */
.page-hero { position: relative; height: 52vh; min-height: 420px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; transition: transform 8s ease; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.15) 100%); }
.page-hero__content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 40px 64px; width: 100%; }
.page-hero__eyebrow { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.page-hero__eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--orange); }
.page-hero__title { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; line-height: 1.1; color: #fff; }
.page-hero__title em { font-style: italic; color: var(--orange); }

/* ── Section helpers ────────────────────────────── */
.section { padding: 110px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.eyebrow { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--orange); }
.section-title { font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 300; line-height: 1.15; color: var(--ink); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--orange); }

/* ── Buttons ─────────────────────────────────────── */
.btn-pill { display: inline-flex; align-items: center; gap: 12px; padding: 15px 28px; border-radius: 100px; font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); cursor: none; border: none; }
.btn-pill--orange { background: var(--orange); color: #fff; }
.btn-pill--orange:hover { background: var(--orange-glow); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(232,98,10,.35); }
.btn-pill--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink-20); }
.btn-pill--ghost:hover { border-color: var(--ink); background: var(--ink-05); }
.btn-pill--outline { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn-pill--outline:hover { background: var(--orange); color: #fff; }
.btn-pill__icon { width: 30px; height: 30px; background: rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease); flex-shrink: 0; }
.btn-pill:hover .btn-pill__icon { transform: translateX(4px); }
/* Full-width buttons — text fills space, icon anchors right */
.btn-pill span { flex: 1; text-align: center; }

/* ── Reveal animations ──────────────────────────── */

/* Base — all variants start hidden */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-img {
  will-change: opacity, transform;
}

/* Fade up (default) */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Image wipe (clip-path) */
.reveal-img {
  clip-path: inset(100% 0 0 0);
  transition: clip-path .95s var(--ease);
}
.reveal-img.visible { clip-path: inset(0% 0 0 0); }

/* Stagger helpers — applied via JS to child groups */
.reveal-group > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal-group.visible > * { opacity: 1; transform: translateY(0); }
.reveal-group.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-group.visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-group.visible > *:nth-child(6) { transition-delay: .40s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .reveal-img, .reveal-group > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}


/* ── Scroll progress bar ────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--orange);
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

/* ── Site footer ─────────────────────────────────── */
.site-footer { background: #111; }
.site-footer__hero-strip { position: relative; height: 420px; overflow: hidden; display: flex; align-items: center; }
.site-footer__hero-strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transform: scale(1.04); }
.site-footer__hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(17,17,17,.94) 0%, rgba(17,17,17,.78) 55%, rgba(232,98,10,.18) 100%); }
.site-footer__hero-text { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 40px; width: 100%; }
.site-footer__hero-eyebrow { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.site-footer__hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--orange); }
.site-footer__hero-text h2 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 32px; }
.site-footer__hero-text h2 em { font-style: italic; color: var(--orange); }
.site-footer__body { background: #111; padding: 72px 0 0; }
.site-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 40px 56px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer__logo { height: 78px; width: auto; object-fit: contain; object-position: left; filter: brightness(0) invert(1); margin-bottom: 16px; display: block; }
.site-footer__brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 260px; margin-bottom: 24px; }
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: border-color .3s, color .3s, background .3s; }
.site-footer__social a:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,98,10,.1); }
.site-footer__col h4 { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col ul li a, .site-footer__col ul li { font-size: 14px; color: rgba(255,255,255,.6); transition: color .3s; }
.site-footer__col ul li a:hover { color: var(--orange); }
.site-footer__bottom { max-width: 1280px; margin: 0 auto; padding: 24px 40px; display: flex; justify-content: space-between; align-items: center; }
.site-footer__bottom p { font-size: 12px; color: rgba(255,255,255,.2); }


/* ── Service page hero overrides ────────────────── */
@media (max-width: 768px) {
  #svcNavList { gap: 8px !important; }
  .sp-inline-hero-content { flex-direction: column !important; padding: 0 20px 48px !important; align-items: flex-start !important; }
  .sp-inline-stats { display: none !important; }
}
@media (max-width: 640px) {
  #svcNavList { flex-wrap: wrap !important; }
  .svc-nav__item-inner { padding: 8px 14px !important; font-size: 11px !important; white-space: nowrap !important; }
  .svc-nav__num { display: none !important; }
  .sp-inline-title { font-size: clamp(2.4rem, 10vw, 3.5rem) !important; }
  .sp-inline-desc { font-size: 13px !important; max-width: 100% !important; }

  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 16px; gap: 12px; }
  .nav__logo img { height: 52px; }
  .page-hero { height: 40vh; min-height: 280px; }
  .page-hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .page-hero__content { padding: 0 20px 36px; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.6rem); }
  .btn-pill { padding: 12px 20px; font-size: 12px; }
  .btn-pill__icon { width: 26px; height: 26px; }
  .eyebrow { font-size: 10px; letter-spacing: 3px; }
  .mobile-menu nav a { font-size: 1.8rem; }
  .mobile-menu nav { gap: 20px; }
  .site-footer__inner { grid-template-columns: 1fr; padding: 0 20px 40px; }
  .site-footer__brand { grid-column: span 1; }
  .site-footer__hero-text { padding: 0 20px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
  .site-footer__hero-strip { height: 320px; }
  /* Service page overrides */

  .wa-float { bottom: 20px; right: 16px; }
  .wa-float__icon { width: 52px; height: 52px; }
  .wa-float__icon svg { width: 26px; height: 26px; }
  .wa-float__label { display: none; }
}


/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1366px) {
  /* 13" laptops — tighten nav and containers */
  .nav__inner { padding: 0 28px; gap: 20px; }
  .nav__links { gap: 20px; }
  .nav__links a { font-size: 12px; }
  .container { padding: 0 28px; }
  .site-footer__inner { padding: 0 28px 48px; }
  .site-footer__hero-text { padding: 0 28px; }
  .site-footer__bottom { padding: 20px 28px; }
  .page-hero__content { padding: 0 28px 56px; }
  .section-title { font-size: clamp(1.9rem, 3.5vw, 3rem); }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .page-hero__content { padding: 0 20px 48px; }
  .page-hero { height: 45vh; min-height: 360px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-footer__brand { grid-column: span 2; }
  /* Disable reveal animations on mobile — prevents layout shifts */
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-img {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .reveal-group > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}



/* ── WhatsApp floating button ───────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  animation: wa-bounce 2.4s ease-in-out 2s infinite;
}
.wa-float__icon {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.18);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  flex-shrink: 0;
}
.wa-float:hover .wa-float__icon {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.2);
}
.wa-float__icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
/* Tooltip label — shows on hover */
.wa-float__label {
  background: #fff;
  color: #111;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events: none;
}
.wa-float:hover .wa-float__label {
  opacity: 1;
  transform: translateX(0);
}
/* Pulse ring */
.wa-float__icon::after {
  content: '';
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
/* Mobile — smaller, no label */


/* ── Print styles ────────────────────────────────── */
@media print {
  /* Hide non-content elements */
  .nav, .mobile-menu, .cursor, .cursor-follower, .scroll-progress,
  .wa-float, #cookieBanner, #a11yBtn, #a11yPanel,
  .lang-trigger, .lang-dropdown, #google_translate_element,
  .marquee-strip, .hero__stats, .hero__actions,
  footer .site-footer__hero-strip,
  .btn-pill, .nav__cta, .nav__hamburger { display: none !important; }

  /* Reset backgrounds and colors for print */
  * { background: #fff !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }

  /* Logo — show in original color */
  .nav__logo img { filter: none !important; }

  /* Page setup */
  body { font-size: 12pt; line-height: 1.6; margin: 0; padding: 0; }
  @page { margin: 1.5cm; }

  /* Ensure images print */
  img { max-width: 100% !important; page-break-inside: avoid; }

  /* Links — show URL after text */
  a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555 !important; }
  a[href^="#"]::after, a[href^="javascript"]::after { content: ""; }

  /* Avoid breaking inside cards */
  .pkg-card, .dp-card, .t-card, .blog-card { page-break-inside: avoid; }

  /* Hero sections — reduce height */
  .hero, .dh, .pk-hero, .bp-hero { height: auto !important; min-height: 0 !important; }
  .hero__bg, .dh__slides, .pk-hero__slides { display: none !important; }
  .hero__content, .dh__content, .pk-hero__content { position: static !important; color: #000 !important; padding: 20px 0 !important; }
  .hero__title, .dh__title, .pk-hero__title { color: #000 !important; font-size: 24pt !important; }

  /* Footer — simple print version */
  .site-footer { background: #fff !important; border-top: 1px solid #ccc; padding: 20px 0; }
  .site-footer__bottom p { color: #555 !important; font-size: 9pt; }
}
