/* ==========================================================================
   Millennium Group of Companies — main stylesheet
   Brand: sunburst gold/amber mark + deep maroon wordmark
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* brand */
  --maroon-900: #40090B;
  --maroon-800: #5C0F12;
  --maroon-700: #7E1416;
  --maroon-600: #9B2225;
  --maroon-050: #FBEDEC;

  --sun-200: #FFE7B4;
  --sun-300: #FFD37A;
  --sun-400: #F7B32B;
  --sun-500: #EF8F1C;
  --sun-600: #E2650F;

  /* neutrals */
  --ink-900: #14161B;
  --ink-800: #1F232C;
  --ink-700: #363B47;
  --ink-500: #5C6373;
  --ink-400: #7A8192;
  --ink-300: #A8AEBC;
  --line: #E9E2D6;
  --line-soft: #F2ECE2;
  --cream: #FDFAF4;
  --tint: #F8F4EC;
  --paper: #FFFFFF;

  /* semantic */
  --brand: var(--maroon-700);
  --accent: var(--sun-400);
  --bg: var(--paper);
  --fg: var(--ink-800);

  /* type */
  --font-head: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* metrics */
  --wrap: 1220px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius-s: 10px;
  --radius: 16px;
  --radius-l: 24px;
  --header-h: 78px;

  /* elevation */
  --sh-1: 0 1px 2px rgba(20, 22, 27, .05), 0 4px 12px rgba(20, 22, 27, .05);
  --sh-2: 0 2px 6px rgba(20, 22, 27, .06), 0 14px 34px rgba(20, 22, 27, .08);
  --sh-3: 0 6px 18px rgba(64, 9, 11, .10), 0 28px 60px rgba(64, 9, 11, .12);

  --ease: cubic-bezier(.22, .68, .36, 1);
  --dur: .55s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.is-locked { overflow: hidden; }

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 6vw, 4.15rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--maroon-600); }

ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--sun-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--sun-300); color: var(--maroon-900); }

/* ---------- Layout helpers ---------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--tint { background: var(--tint); }

.section--dark {
  background:
    radial-gradient(900px 500px at 82% -10%, rgba(247, 179, 43, .16), transparent 62%),
    linear-gradient(155deg, var(--maroon-900) 0%, #2A0607 58%, #17070A 100%);
  color: #EDE6DC;
}
.section--dark h2, .section--dark h3 { color: #FFF8ED; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.grid-2--narrow { grid-template-columns: .82fr 1.18fr; align-items: start; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--maroon-800);
  color: #fff;
  padding: .85rem 1.25rem;
  border-radius: 0 0 var(--radius-s) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--maroon-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
}
.btn .ic { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-800));
  box-shadow: 0 6px 18px rgba(126, 20, 22, .28);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--sun-500), var(--sun-600));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.btn--primary:hover { box-shadow: 0 12px 28px rgba(226, 101, 15, .34); }
.btn--primary:hover::before { opacity: 1; }

.btn--ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: #fff; color: var(--maroon-800); border-color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--maroon-700);
  border-color: rgba(126, 20, 22, .3);
}
.btn--outline:hover { background: var(--maroon-700); color: #fff; border-color: var(--maroon-700); }

.btn--lg { padding: 1rem 1.85rem; font-size: 1.02rem; }
.btn--sm { padding: .55rem 1.05rem; font-size: .87rem; }
.btn--block { width: 100%; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--maroon-700);
}
.eyebrow__dot {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--sun-400), var(--sun-600));
  border-radius: 2px;
}
.eyebrow--light { color: var(--sun-300); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head__lede { color: var(--ink-500); font-size: 1.06rem; }
.section--dark .section-head__lede { color: rgba(237, 230, 220, .78); }

.lede { font-size: clamp(1.03rem, 1.4vw, 1.16rem); color: var(--ink-500); }

.grad {
  background: linear-gradient(100deg, var(--sun-300) 0%, var(--sun-400) 42%, var(--sun-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  background: var(--maroon-900);
  color: rgba(255, 255, 255, .82);
  font-size: .845rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  padding-block: .35rem;
}
.topbar__list { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.topbar__list li { display: inline-flex; align-items: center; gap: .45rem; }
.topbar .ic { width: 15px; height: 15px; fill: var(--sun-400); flex: none; }
.topbar a { color: inherit; }
.topbar a:hover { color: var(--sun-300); }

.topbar__social { display: flex; align-items: center; gap: .35rem; }
.topbar__follow {
  margin-right: .35rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.topbar__social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.topbar__social svg { width: 14px; height: 14px; fill: currentColor; }
.topbar__social a:hover { background: var(--sun-500); color: var(--maroon-900); transform: translateY(-2px); }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--sh-1); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: block; position: relative; flex: none; }
.brand__logo {
  width: auto;
  height: clamp(50px, 5.6vw, 62px);
  transition: opacity .3s var(--ease);
}
.brand__logo--light { position: absolute; inset: 0; opacity: 0; pointer-events: none; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.25rem); }
.nav__list { display: flex; align-items: center; gap: clamp(.85rem, 1.8vw, 1.75rem); }
.nav__list a {
  position: relative;
  display: inline-block;
  padding: .35rem 0;
  color: var(--ink-700);
  font-family: var(--font-head);
  font-size: .96rem;
  font-weight: 500;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sun-400), var(--sun-600));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s var(--ease);
}
.nav__list a:hover, .nav__list a.is-active { color: var(--maroon-700); }
.nav__list a:hover::after, .nav__list a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__close { display: none; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink-800);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--sun-400), var(--sun-600), var(--maroon-700));
  transition: width .1s linear;
}

/* transparent header while over the hero */
.site-header.is-over-hero {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.site-header.is-over-hero .brand__logo--dark { opacity: 0; }
.site-header.is-over-hero .brand__logo--light { opacity: 1; }
.site-header.is-over-hero .nav__list a { color: rgba(255, 255, 255, .88); }
.site-header.is-over-hero .nav__list a:hover { color: #fff; }
.site-header.is-over-hero .burger { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .35); }
.site-header.is-over-hero .burger span { background: #fff; }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(20, 8, 9, .5);
  backdrop-filter: blur(3px);
  animation: fade .3s var(--ease);
}
@keyframes fade { from { opacity: 0; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(600px, 92svh, 940px);
  margin-top: calc(var(--header-h) * -1);
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem));
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  transform: scale(1.06);
  will-change: transform;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(14, 8, 10, .74) 0%, rgba(14, 8, 10, .5) 34%, rgba(20, 6, 8, .88) 100%),
    linear-gradient(100deg, rgba(64, 9, 11, .72) 0%, rgba(64, 9, 11, .1) 62%);
}
.hero__rays {
  position: absolute;
  z-index: -1;
  top: -34%;
  right: -14%;
  width: min(78vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 179, 43, .34) 0%, rgba(226, 101, 15, .12) 38%, transparent 68%);
  filter: blur(10px);
  animation: pulse 9s var(--ease) infinite alternate;
  pointer-events: none;
}
@keyframes pulse {
  from { transform: scale(1); opacity: .85; }
  to   { transform: scale(1.13); opacity: 1; }
}

.hero__inner { position: relative; max-width: 900px; }
.hero__title { color: #fff; margin-bottom: 1rem; }
.hero__lede {
  max-width: 62ch;
  margin-bottom: 2.1rem;
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, .84);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.6rem, 2vw, 1.6rem);
  margin: clamp(2.75rem, 6vw, 4.25rem) 0 0;
  padding-top: clamp(1.75rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--sun-400);
}
.stat__label {
  margin: .45rem 0 0;
  font-size: .88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, .72);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.9rem;
  translate: -50% 0;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  translate: -50% 0;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--sun-400);
  animation: wheel 1.9s var(--ease) infinite;
}
@keyframes wheel {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ==========================================================================
   Trust ticker
   ========================================================================== */
.trust {
  padding: 1.15rem 0;
  background: var(--maroon-800);
  color: rgba(255, 255, 255, .9);
  overflow: hidden;
}
.marquee { display: flex; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 2.5rem; animation: slide 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: none;
  padding-right: 2.5rem;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__group li[aria-hidden] { color: var(--sun-400); font-size: .55rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ==========================================================================
   About
   ========================================================================== */
.about__media { position: relative; padding-bottom: 3rem; }
.about__img { overflow: hidden; border-radius: var(--radius-l); box-shadow: var(--sh-2); }
.about__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about__img--main img { aspect-ratio: 5 / 4; }
.about__img--sub {
  position: absolute;
  right: -6%;
  bottom: 0;
  width: 46%;
  border: 6px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--sh-3);
}

.badge-years {
  position: absolute;
  left: -1.5rem;
  top: 1.9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  color: #fff;
  box-shadow: var(--sh-3);
}
.badge-years__num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sun-400);
}
.badge-years__num sup { font-size: .5em; top: -.7em; }
.badge-years__txt { font-size: .78rem; line-height: 1.25; color: rgba(255, 255, 255, .82); }

.ticks { display: grid; gap: .7rem; margin: 1.6rem 0; }
.ticks li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink-700);
  font-weight: 500;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--sun-400), var(--sun-600))
    padding-box;
}
.ticks li::after {
  content: "";
  position: absolute;
  left: .38rem;
  top: .72em;
  width: .42rem;
  height: .22rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  rotate: -45deg;
}

.note {
  margin: 2rem 0;
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--sun-400);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--tint);
}
.note h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.note p { color: var(--ink-500); font-size: .97rem; margin: 0; }

/* ==========================================================================
   Services
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(1.25rem, 2.4vw, 1.9rem);
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--sh-3); border-color: transparent; }

/* overflow lives on the picture, so the floating icon can hang below the image */
.card__media { position: relative; }
.card__media picture { display: block; overflow: hidden; }
.card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.card:hover .card__media img { transform: scale(1.07); }
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(40, 8, 10, .55) 100%);
}

.card__icon {
  position: absolute;
  left: 1.25rem;
  bottom: -1.5rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sun-400), var(--sun-600));
  box-shadow: 0 8px 20px rgba(226, 101, 15, .35);
  transition: transform .4s var(--ease);
}
.card__icon svg { width: 24px; height: 24px; fill: #fff; }
.card:hover .card__icon { transform: rotate(-6deg) scale(1.06); }

.card__body { padding: 2.35rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .55rem; }
.card__body p { color: var(--ink-500); font-size: .96rem; }

.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: auto; padding-top: 1.15rem; }
.chips li {
  padding: .28rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--tint);
  color: var(--ink-500);
  font-size: .78rem;
  font-weight: 500;
}

/* ==========================================================================
   Why us
   ========================================================================== */
.grid-2--rev .why__media { order: 2; }
.pillars { display: grid; gap: 1.5rem; margin-top: 2rem; }
.pillar { display: flex; gap: 1.05rem; align-items: flex-start; }
.pillar__ic {
  flex: none;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--maroon-050);
  border: 1px solid rgba(126, 20, 22, .12);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.pillar__ic svg { width: 24px; height: 24px; fill: var(--maroon-700); transition: fill .3s var(--ease); }
.pillar:hover .pillar__ic { background: linear-gradient(135deg, var(--sun-400), var(--sun-600)); transform: translateY(-3px); }
.pillar:hover .pillar__ic svg { fill: #fff; }
.pillar h3 { font-size: 1.08rem; margin-bottom: .25rem; }
.pillar p { color: var(--ink-500); font-size: .94rem; margin: 0; }

.why__media { position: relative; }
.why__media picture { display: block; overflow: hidden; border-radius: var(--radius-l); box-shadow: var(--sh-2); }
.why__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.why__quote {
  position: absolute;
  left: clamp(-1.5rem, -2vw, -1rem);
  bottom: 1.75rem;
  width: min(84%, 340px);
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(64, 9, 11, .94);
  backdrop-filter: blur(8px);
  color: #FFF6E8;
  box-shadow: var(--sh-3);
}
.why__mark { width: 26px; height: 26px; fill: var(--sun-400); margin-bottom: .5rem; }
.why__quote p { margin: 0; font-family: var(--font-head); font-size: 1.02rem; line-height: 1.45; }

.benefits { margin-top: clamp(3.5rem, 7vw, 5.5rem); }
.benefits__title { text-align: center; margin-bottom: 2.25rem; }
.benefits__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1.15rem;
}
.benefit {
  position: relative;
  padding: 1.6rem 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.benefit__n {
  display: block;
  margin-bottom: .55rem;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--sun-400), var(--sun-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.benefit h4 { margin-bottom: .35rem; }
.benefit p { margin: 0; color: var(--ink-500); font-size: .9rem; }

/* ==========================================================================
   Process
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(4px);
  transition: transform .4s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease);
}
.step:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .07); border-color: rgba(247, 179, 43, .4); }
.step__n {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun-400), var(--sun-600));
  color: var(--maroon-900);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
}
.step h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.step p { margin: 0; color: rgba(237, 230, 220, .74); font-size: .93rem; }

/* ==========================================================================
   Industries
   ========================================================================== */
.inds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}
.ind {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink-800);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease), background-color .3s var(--ease);
}
.ind:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: transparent;
  background: linear-gradient(135deg, #fff, var(--tint));
}
.ind__ic { flex: none; width: 26px; height: 26px; fill: var(--maroon-700); transition: fill .3s var(--ease); }
.ind:hover .ind__ic { fill: var(--sun-600); }

/* ==========================================================================
   Group of companies
   ========================================================================== */
.orgs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.25rem, 2.4vw, 1.85rem);
}
.org {
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--paper);
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.org:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.org__logo {
  display: grid;
  place-items: center;
  height: 108px;
  margin-bottom: 1.35rem;
}
/* explicit px cap: a % max-height would not resolve against a centred grid area */
.org__logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 108px;
  transition: transform .4s var(--ease);
}
.org:hover .org__logo img { transform: scale(1.05); }
.org h3 { font-size: 1.06rem; margin-bottom: .5rem; }
.org p { margin: 0; color: var(--ink-500); font-size: .92rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.tslider { position: relative; }
.tslider__viewport { overflow: hidden; padding: .5rem; margin: -.5rem; }
.tslider__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  transition: transform .6s var(--ease);
  will-change: transform;
}
.tcard {
  flex: 0 0 calc((100% - (2 * clamp(1rem, 2vw, 1.6rem))) / 3);
  display: flex;
  flex-direction: column;
  padding: 1.9rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--paper);
  box-shadow: var(--sh-1);
}
.tcard__stars { display: flex; gap: .18rem; margin-bottom: 1rem; }
.tcard__stars svg { width: 17px; height: 17px; fill: var(--sun-500); }
.tcard blockquote { margin: 0 0 1.5rem; }
.tcard blockquote p { margin: 0; color: var(--ink-700); font-size: 1rem; line-height: 1.65; }
.tcard__who { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.tcard__who img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sun-300);
}
.tcard__who strong { display: block; font-family: var(--font-head); font-size: .96rem; color: var(--ink-900); }
.tcard__who span { font-size: .84rem; color: var(--ink-400); }

.tslider__ctrl { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.25rem; }
.tslider__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.tslider__btn svg { width: 22px; height: 22px; fill: var(--maroon-700); transition: fill .3s var(--ease); }
.tslider__btn:hover { background: var(--maroon-700); border-color: var(--maroon-700); transform: translateY(-2px); }
.tslider__btn:hover svg { fill: #fff; }
.tslider__btn[disabled] { opacity: .35; cursor: not-allowed; transform: none; }
.tslider__btn[disabled]:hover { background: var(--paper); border-color: var(--line); }
.tslider__btn[disabled]:hover svg { fill: var(--maroon-700); }

.tslider__dots { display: flex; gap: .45rem; }
.tslider__dots button {
  display: grid;
  align-items: center;
  width: 22px;      /* visual dot is 9px; the rest is tap area */
  height: 30px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.tslider__dots button::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--line);
  transition: width .35s var(--ease), background-color .35s var(--ease);
}
.tslider__dots button[aria-selected="true"] { width: 34px; }
.tslider__dots button[aria-selected="true"]::before {
  width: 26px;
  background: linear-gradient(90deg, var(--sun-400), var(--sun-600));
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq__intro { position: sticky; top: calc(var(--header-h) + 2rem); }
.acc { display: grid; gap: .75rem; }
.acc__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.acc__item[open] { box-shadow: var(--sh-1); border-color: rgba(247, 179, 43, .55); }
.acc__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-900);
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary i {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tint);
  transition: background-color .3s var(--ease), rotate .3s var(--ease);
}
.acc__item summary i::before,
.acc__item summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: var(--maroon-700);
  transition: opacity .25s var(--ease), background-color .3s var(--ease);
}
.acc__item summary i::before { width: 10px; height: 2px; }
.acc__item summary i::after { width: 2px; height: 10px; }
.acc__item[open] summary i { background: var(--maroon-700); rotate: 90deg; }
.acc__item[open] summary i::before { background: #fff; }
.acc__item[open] summary i::after { opacity: 0; }
.acc__body { padding: 0 1.3rem 1.25rem; }
.acc__body p { margin: 0; color: var(--ink-500); font-size: .96rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta {
  position: relative;
  isolation: isolate;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(247, 179, 43, .2), transparent 70%),
    linear-gradient(180deg, rgba(40, 8, 10, .88), rgba(20, 5, 7, .93));
}
.cta__inner { max-width: 780px; margin-inline: auto; }
.cta h2 { color: #fff; }
.cta p { margin-bottom: 2rem; color: rgba(255, 255, 255, .8); font-size: 1.06rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

.form {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--paper);
  box-shadow: var(--sh-2);
}
.form__title { margin-bottom: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  margin-bottom: .35rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-700);
}
.field label span { color: var(--maroon-600); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .78rem .95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--cream);
  color: var(--ink-900);
  font: inherit;
  font-size: .96rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235C6373'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .7rem center;
  background-size: 20px;
  padding-right: 2.4rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--sun-500);
  box-shadow: 0 0 0 4px rgba(247, 179, 43, .18);
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #C0392B; background: #FEF6F5; }

.field__err { min-height: 0; margin: .3rem 0 0; color: #C0392B; font-size: .82rem; }
.field__err:empty { display: none; }

.field--check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .6rem;
  align-items: start;
  margin: 1.15rem 0 1.5rem;
}
.field--check input { width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--maroon-700); }
.field--check label { margin: 0; font-weight: 400; font-size: .88rem; color: var(--ink-500); }
.field--check .field__err { grid-column: 1 / -1; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status { margin: 1rem 0 0; font-size: .92rem; font-weight: 500; }
.form__status.is-ok { color: #1E7A46; }
.form__status.is-err { color: #C0392B; }
.form__small { margin: .9rem 0 0; font-size: .86rem; color: var(--ink-400); text-align: center; }

.spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { rotate: 360deg; } }
.btn.is-busy { pointer-events: none; opacity: .85; }
.btn.is-busy .spinner { display: block; }

.people { display: grid; gap: .9rem; }
.person {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.person:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: rgba(247, 179, 43, .5); }
.person__ic {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sun-400), var(--sun-600));
}
.person__ic svg { width: 20px; height: 20px; fill: #fff; }
.person__role {
  margin: 0;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sun-600);
}
.person__name {
  margin: .1rem 0 .35rem;
  font-family: var(--font-head);
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--ink-900);
}
.person a { display: block; font-size: .91rem; color: var(--ink-500); word-break: break-word; }
.person a:hover { color: var(--maroon-700); }

.general {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-900));
  color: #fff;
}
.general__k {
  margin: 0 0 .2rem;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.general__v {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sun-300);
  word-break: break-word;
}
.general__v:hover { color: #fff; }

.map { margin: 0; }
.map iframe {
  width: 100%;
  height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  filter: grayscale(.35) contrast(1.03);
  transition: filter .4s var(--ease);
}
.map:hover iframe { filter: none; }
.map figcaption { margin-top: .85rem; text-align: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background:
    radial-gradient(800px 400px at 8% 0%, rgba(247, 179, 43, .12), transparent 60%),
    linear-gradient(165deg, var(--maroon-900), #1A0507);
  color: rgba(237, 230, 220, .76);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 1fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  padding: clamp(3rem, 6vw, 4.75rem) 0 clamp(2rem, 4vw, 3rem);
}
.footer__brand img { height: 82px; width: auto; margin-bottom: 1.15rem; }
.footer__brand p { font-size: .93rem; max-width: 38ch; }

.footer__social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.footer__social svg { width: 17px; height: 17px; fill: currentColor; }
.footer__social a:hover {
  background: linear-gradient(135deg, var(--sun-400), var(--sun-600));
  color: var(--maroon-900);
  transform: translateY(-3px);
}

.footer__col h3 {
  margin-bottom: 1.05rem;
  color: #FFF6E8;
  font-size: 1rem;
  letter-spacing: .02em;
}
.footer__col ul { display: grid; gap: .55rem; }
.footer__col a { color: rgba(237, 230, 220, .74); font-size: .92rem; }
.footer__col a:hover { color: var(--sun-300); }
.footer__contact li { font-size: .92rem; }
.footer__col .btn { margin-top: 1.15rem; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .86rem;
}
.footer__bottom p { margin: 0; }

.footer__credit { color: rgba(237, 230, 220, .6); }
.footer__credit a {
  color: rgba(237, 230, 220, .9);
  font-weight: 600;
  border-bottom: 1px solid rgba(247, 179, 43, .45);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer__credit a:hover { color: var(--sun-300); border-color: var(--sun-300); }

.footer__legal { display: flex; gap: 1.35rem; }
.footer__legal a { color: rgba(237, 230, 220, .66); }
.footer__legal a:hover { color: var(--sun-300); }

/* ---------- Back to top ---------- */
.totop {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  box-shadow: var(--sh-2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  translate: 0 12px;
  transition: opacity .3s var(--ease), translate .3s var(--ease),
              visibility .3s var(--ease), background-color .3s var(--ease);
}
.totop svg { width: 22px; height: 22px; fill: #fff; }
.totop.is-visible { opacity: 1; visibility: visible; translate: 0 0; }
.totop:hover { background: linear-gradient(135deg, var(--sun-500), var(--sun-600)); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { --d: 1; }
.reveal[data-delay="2"] { --d: 2; }
.reveal[data-delay="3"] { --d: 3; }
.reveal[data-delay="4"] { --d: 4; }
.reveal[data-delay="5"] { --d: 5; }
.reveal[data-delay="6"] { --d: 6; }
.reveal[data-delay="7"] { --d: 7; }
.reveal[data-delay="8"] { --d: 8; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .tcard { flex: 0 0 calc((100% - clamp(1rem, 2vw, 1.6rem)) / 2); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  :root { --header-h: 70px; }

  /* backdrop-filter would make the header a containing block for the
     position:fixed drawer, trapping it inside the header's height */
  .site-header { backdrop-filter: none; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 99;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.6rem 2rem;
    background: var(--paper);
    box-shadow: -20px 0 60px rgba(20, 8, 9, .22);
    translate: 100% 0;
    visibility: hidden;
    transition: translate .4s var(--ease), visibility .4s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { translate: 0 0; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li + li { border-top: 1px solid var(--line-soft); }
  .nav__list a { padding: .95rem 0; font-size: 1.05rem; color: var(--ink-800); }
  .nav__list a::after { display: none; }
  .site-header.is-over-hero .nav__list a { color: var(--ink-800); }
  .nav__cta { margin-top: 1.5rem; }
  .nav__close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    cursor: pointer;
  }
  .nav__close svg { width: 20px; height: 20px; fill: var(--ink-800); }
  .burger { display: block; }

  .grid-2, .grid-2--narrow { grid-template-columns: 1fr; }
  .grid-2--rev .why__media { order: 0; }
  .why__media img { aspect-ratio: 16 / 10; }
  .faq__intro { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 620px; }
}

@media (max-width: 720px) {
  .topbar__inner { flex-direction: column; align-items: flex-start; gap: .4rem; padding-block: .6rem; }
  .topbar__list { gap: .35rem 1.1rem; }
  .topbar__list li.topbar__loc { display: none; }
  .topbar__follow { display: none; }

  .stats { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__scroll { display: none; }

  .about__img--sub { position: static; width: 100%; margin-top: 1rem; border-width: 0; }
  .about__media { padding-bottom: 0; }
  .badge-years { left: auto; right: 1rem; top: 1rem; }

  .tcard { flex: 0 0 100%; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .general { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .topbar__social a { width: 34px; height: 34px; }
  .topbar__social svg { width: 16px; height: 16px; }
  .footer__col ul { gap: .15rem; }
  .footer__col a, .footer__contact li { display: inline-block; padding-block: .35rem; }
  .footer__legal a { display: inline-block; padding-block: .3rem; }
}

@media (max-width: 420px) {
  .why__quote { position: static; width: auto; margin-top: 1rem; }
}

/* ---------- Motion / print / contrast ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .hero__media img { transform: none; }
}

@media (prefers-contrast: more) {
  :root { --ink-500: #3E4451; --ink-400: #4A5060; --line: #C9C0B2; }
}

@media print {
  .topbar, .site-header, .totop, .hero__scroll, .cta, .map, .nav-scrim, .trust { display: none !important; }
  body { color: #000; }
  .section { padding: 1rem 0; }
  .reveal { opacity: 1; transform: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
