/* ==========================================================================
   Orizon Engenharia — folha de estilo principal
   Paleta e tipografia conforme "Guia de uso da marca v1.0"
   ========================================================================== */

:root {
  --bg:      #14263C; /* Azul Escuro  — base, fundos      */
  --panel:   #1B2F47; /* faixa alternada                  */
  --slate:   #324860; /* Azul Ardósia — texto corrido     */
  --steel:   #52718E; /* Azul Aço     — elementos técnicos*/
  --gold:    #C39B52; /* Ouro Escuro  — filetes           */
  --amber:   #C99643; /* Ouro Claro   — destaques         */
  --amber-2: #D9AB5E; /* hover                            */
  --text:    #FCFCFC; /* Branco                           */

  --dim:   rgba(252, 252, 252, .80);
  --muted: rgba(252, 252, 252, .58);
  --line:  rgba(195, 155, 82, .26);
  --hair:  rgba(252, 252, 252, .10);

  --sans:  'Archivo', Helvetica, Arial, sans-serif;
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;

  --pad:  clamp(20px, 4vw, 56px);
  --wrap: 1260px;
  --radius: 6px;
}

/* --------------------------------------------------------------- reset -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a  { color: var(--amber); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--amber-2); }
input, textarea, select, button { font: inherit; color: inherit; }
input::placeholder, textarea::placeholder { color: rgba(252, 252, 252, .45); }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; top: -100px; left: var(--pad); z-index: 200;
  background: var(--amber); color: var(--bg);
  padding: 12px 20px; border-radius: 4px; font-weight: 600; font-size: .9rem;
}
.skip-link:focus { top: 12px; color: var(--bg); }

/* --------------------------------------------------------------- layout -- */

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section        { border-bottom: 1px solid var(--line); }
.section--panel { background: var(--panel); }
.section__inner { padding-block: clamp(52px, 7vh, 88px); }

.eyebrow {
  font-weight: 500; font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}

.h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 600; letter-spacing: -.01em; line-height: 1.22;
  margin-bottom: 16px;
}

.h2--sm { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 26px; }

.body-text { color: var(--dim); font-size: .98rem; line-height: 1.75; }
.body-text + .body-text { margin-top: 16px; }
.measure { max-width: 60ch; }

/* Utilitários de espaçamento. Existem para que nenhum estilo precise ficar
   embutido na marcação — é o que permite fechar a política de conteúdo do
   servidor sem liberar estilo inline. */
.mb-block                    { margin-bottom: clamp(28px, 4vh, 44px); }
.section__inner--obras       { padding-block: clamp(52px, 7vh, 88px) clamp(32px, 4vh, 52px); }
.section__inner--privacidade { padding-block: clamp(44px, 6vh, 72px); }
.contact-lead                { max-width: 52ch; margin-bottom: 28px; }
.cta-row--center             { justify-content: center; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 4vw, 72px);
}

/* Grade de cartões com filete de 1px feito pelo próprio gap. */
.card-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(288px, 100%), 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.card-grid--teams { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }

/* ------------------------------------------------------------- reveal ---- */

/* O texto só nasce oculto quando há JS capaz de revelá-lo. Sem JS, sem
   IntersectionObserver ou com erro de script, tudo aparece normalmente. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ------------------------------------------------------------- botões ---- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px; font-size: .9rem; font-weight: 500;
  white-space: nowrap; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary {
  background: var(--amber); color: var(--bg); border: 1px solid var(--amber);
  padding: 14px 26px;
}
.btn--primary:hover { background: var(--amber-2); border-color: var(--amber-2); color: var(--bg); }

.btn--ghost {
  border: 1px solid var(--line); color: var(--text); padding: 13px 24px;
}
.btn--ghost:hover { border-color: var(--amber); color: var(--text); }

.btn--outline {
  border: 1px solid var(--amber); color: var(--amber);
  padding: 10px 20px; font-size: .82rem;
}
.btn--outline:hover { background: var(--amber); color: var(--bg); }

/* ----------------------------------------------------------- cabeçalho --- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 38, 60, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  height: 70px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; min-width: 0; }
/* 26px é a altura que faz a marca oficial ocupar os mesmos ~277px de largura
   que o logotipo ocupava aqui antes — a composição da barra não se mexeu.
   object-fit: contain garante que a proporção jamais distorça se a barra
   apertar em telas estreitas: a imagem encolhe inteira, nunca achatada. */
.brand img {
  height: 26px; width: auto; max-width: 100%;
  object-fit: contain; object-position: left center;
}

.nav-desktop { display: none; align-items: center; gap: 24px; }
.nav-desktop a { color: var(--dim); font-size: .88rem; white-space: nowrap; }
.nav-desktop a:hover,
.nav-desktop a[aria-current="true"] { color: var(--text); }
.nav-desktop .btn--outline { color: var(--amber); }
.nav-desktop .btn--outline:hover { color: var(--bg); }

/* flex: 0 0 auto é o que garante o alvo de toque. Sem ele o botão é um item
   flexível e encolhe para 39px quando a barra fica apertada no celular —
   abaixo dos 44px mínimos. */
.nav-toggle {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
  flex: 0 0 auto;
  gap: 5px; width: 46px; height: 46px;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--text);
  transition: width .2s ease, background .2s ease;
}
.nav-toggle span:nth-child(1),
.nav-toggle span:nth-child(2) { width: 24px; }
.nav-toggle span:nth-child(3) { width: 15px; background: var(--amber); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { width: 24px; }

.nav-mobile {
  border-top: 1px solid var(--line);
  background: var(--panel);
  padding: 6px var(--pad) 20px;
  display: flex; flex-direction: column;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  color: var(--text); font-size: 1rem;
  padding: 15px 0; border-bottom: 1px solid var(--hair);
}
.nav-mobile .btn {
  margin-top: 16px; border-bottom: 0;
  border: 1px solid var(--amber); color: var(--amber);
  padding: 15px; font-size: .92rem;
}

@media (min-width: 1080px) {
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-mobile { display: none !important; }
}

/* ----------------------------------------------------------------- hero -- */

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }

/* Mesma lógica do texto: a imagem só nasce apagada quando existe JS para
   acendê-la. Sem JS ela fica discreta, mas presente — e a página deixa de
   precisar de um bloco <noscript> embutido. */
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 45%;
  filter: brightness(.62) saturate(.72) contrast(1.04);
  opacity: .32; transition: opacity 1s ease;
}
.js .hero__bg { opacity: 0; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(20, 38, 60, .96) 0%,
    rgba(20, 38, 60, .92) 34%,
    rgba(20, 38, 60, .60) 58%,
    rgba(20, 38, 60, .18) 100%);
}
.hero__inner {
  position: relative;
  padding-block: clamp(52px, 8vh, 96px) clamp(40px, 6vh, 68px);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.1vw, 3.6rem);
  font-weight: 400; letter-spacing: -.01em; line-height: 1.13;
  max-width: 26ch; margin-bottom: 22px;
}
.hero__lead {
  color: var(--dim);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7; max-width: 62ch; margin-bottom: 32px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------- ficha da empresa ---- */

.spec {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec__head {
  background: var(--panel);
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.spec__head p {
  font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.spec__list { display: grid; grid-template-columns: minmax(0, auto) minmax(0, 1fr); }
.spec__list dt,
.spec__list dd { padding: 14px 20px; border-bottom: 1px solid var(--hair); }
.spec__list dt { font-size: .82rem; color: var(--muted); white-space: nowrap; }
.spec__list dd { font-size: .86rem; text-align: right; overflow-wrap: anywhere; }

/* Em telas muito estreitas o rótulo preso em uma linha empurra o valor para
   fora da caixa. Abaixo de 400px ele pode quebrar. */
@media (max-width: 400px) {
  .spec__list dt,
  .spec__list dd { padding-inline: 14px; }
  .spec__list dt { white-space: normal; }
}
.spec__list dt:last-of-type,
.spec__list dd:last-of-type { border-bottom: 0; }

.note {
  margin-top: 20px;
  border-left: 2px solid var(--amber);
  padding: 4px 0 4px 18px;
}
.note p { color: var(--dim); font-size: .9rem; line-height: 1.7; }

/* ------------------------------------------------------------- equipes --- */

.team-card {
  background: var(--bg);
  padding: clamp(22px, 2.4vw, 30px);
}
.team-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.team-card p  { color: var(--dim); font-size: .88rem; line-height: 1.7; }

/* ------------------------------------------------------------ serviços --- */

.service {
  background: var(--panel);
  padding: clamp(24px, 2.6vw, 32px);
  display: flex; flex-direction: column; gap: 12px;
}
.service__num {
  font-weight: 500; font-size: .72rem;
  color: var(--amber); letter-spacing: .12em;
}
.service h3 {
  font-size: 1.08rem; font-weight: 600; line-height: 1.3;
  min-height: 2.6em;
}
.service p { color: var(--dim); font-size: .9rem; line-height: 1.7; }
.service ul {
  display: flex; flex-direction: column; gap: 7px;
  margin-top: auto; padding-top: 6px;
}
.service li {
  font-size: .84rem; color: var(--muted);
  padding-left: 14px; position: relative;
}
.service li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--amber);
}

/* --------------------------------------------------------------- obras --- */

.shots { display: flex; flex-direction: column; background: var(--bg); }

.shot { position: relative; height: 100vh; height: 100dvh; overflow: hidden; }
.shot__bg {
  position: absolute; inset: -2%;
  background-size: cover; background-position: center;
  filter: brightness(.58) contrast(1.08) saturate(.6);
  transform: scale(1.12);
  opacity: .32; transition: opacity .9s ease;
  will-change: transform;
}
.js .shot__bg { opacity: 0; }
.shot__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 110% at 50% 50%,
    transparent 38%, rgba(0, 0, 0, .62) 100%);
}
.shot__fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(20, 38, 60, .62) 0%,
    transparent 32%,
    rgba(20, 38, 60, .66) 66%,
    rgba(20, 38, 60, .97) 100%);
}
.shot__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding-block: clamp(32px, 5vh, 60px) clamp(40px, 7vh, 76px);
}
.shot__caption h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.1vw, 2.9rem);
  font-weight: 400; letter-spacing: -.005em; line-height: 1.1;
  margin-bottom: 16px; max-width: 20ch;
}
.shot__caption p {
  color: var(--dim);
  font-size: clamp(.95rem, 1.1vw, 1.08rem);
  line-height: 1.75; max-width: 56ch;
}
.shot--right .shot__caption .wrap {
  display: flex; flex-direction: column; align-items: flex-end; text-align: right;
}

/* ------------------------------------------------------- qualificação ---- */

.qual-card { padding: 24px 26px; background: var(--bg); }
.qual-card h3 { font-size: .92rem; font-weight: 600; margin-bottom: 7px; }
.qual-card p  { color: var(--dim); font-size: .86rem; line-height: 1.7; }

/* ------------------------------------------------------------- contato --- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr));
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}
.contact-dl {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact-dl > div {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid var(--hair);
}
.contact-dl > div:last-child { border-bottom: 0; }
.contact-dl dt { font-size: .82rem; color: var(--muted); }
.contact-dl dd { font-size: .9rem; text-align: right; min-width: 0; overflow-wrap: anywhere; }
.contact-dl dd a { color: var(--text); display: inline-block; padding-block: 4px; }
.contact-dl dd a:hover { color: var(--amber); }

/* ---------------------------------------------------------- formulário --- */

.form {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 34px);
  background: var(--panel);
  display: flex; flex-direction: column; gap: 16px;
}
.form[hidden] { display: none; }

.form__honey {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; opacity: 0;
}
.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: .78rem; color: var(--muted); }
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
  font-size: .92rem;
  min-height: 46px;
  transition: border-color .18s ease;
}
.field textarea { line-height: 1.6; resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--amber); outline: none; }
.field select option { background: #1A3049; color: var(--text); }
.field input:user-invalid,
.field textarea:user-invalid { border-color: #C0603A; }

.btn-submit {
  background: var(--amber); color: var(--bg);
  border: 0; border-radius: 4px;
  padding: 15px; font-size: .9rem; font-weight: 600;
  cursor: pointer; min-height: 50px;
  transition: background .18s ease, opacity .18s ease;
}
.btn-submit:hover:not(:disabled) { background: var(--amber-2); }
.btn-submit:disabled { opacity: .7; cursor: progress; }

.form__note { font-size: .78rem; color: var(--muted); line-height: 1.6; }

.panel {
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 12px;
  justify-content: center; min-height: 300px;
}
.panel[hidden] { display: none; }
.panel h3 { font-size: 1.28rem; font-weight: 600; letter-spacing: -.01em; }
.panel p  { color: var(--dim); font-size: .94rem; line-height: 1.7; max-width: 42ch; }
.panel__tag {
  font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--amber);
}
.panel--ok  { border: 1px solid rgba(201, 150, 67, .40); background: rgba(201, 150, 67, .08); }
.panel--err { border: 1px solid rgba(195, 155, 82, .55); background: rgba(195, 155, 82, .10); }
.panel--err .panel__tag { color: var(--gold); }

.panel__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.panel__actions a,
.panel__actions button {
  border: 1px solid var(--line); background: none;
  color: var(--text); padding: 13px 20px; border-radius: 4px;
  font-size: .88rem; font-weight: 500; cursor: pointer;
}
.panel__actions a:hover,
.panel__actions button:hover { border-color: var(--amber); color: var(--text); }

.link-plain {
  align-self: flex-start; margin-top: 6px;
  background: none; border: 0; color: var(--amber);
  font-size: .86rem; cursor: pointer; text-decoration: underline;
}

/* ---------------------------------------------------------- privacidade -- */

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 26px 44px;
}
.privacy-grid h3 { font-size: .88rem; font-weight: 600; margin-bottom: 8px; }
.privacy-grid p  { color: var(--dim); font-size: .86rem; line-height: 1.7; }

/* --------------------------------------------------------------- rodapé -- */

.site-footer { background: #0E1C2D; }
.site-footer__grid {
  padding-block: clamp(36px, 5vh, 56px) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 32px 40px;
}
.site-footer svg { width: 216px; max-width: 100%; height: auto; margin-bottom: 18px; }
.site-footer__tagline { color: var(--muted); font-size: .82rem; line-height: 1.7; }
.site-footer h2 {
  font-size: .66rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
/* O espaço entre itens saiu do gap e entrou no próprio link: o ritmo visual
   fica igual, mas o alvo de toque sobe de 15px para 25px. */
.site-footer ul { display: flex; flex-direction: column; gap: 2px; }
.site-footer li,
.site-footer li a { color: var(--dim); font-size: .84rem; }
.site-footer li a     { display: inline-block; padding-block: 5px; }
.site-footer li.plain { padding-block: 5px; }
.site-footer li a:hover { color: var(--amber); }
.site-footer .break { word-break: break-word; }

.site-footer__bottom {
  margin-top: 32px;
  padding-block: 26px 34px;
  border-top: 1px solid var(--hair);
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between; align-items: center;
}
.site-footer__bottom p,
.site-footer__bottom a { color: var(--muted); font-size: .76rem; }
.site-footer__bottom a { display: inline-block; padding-block: 6px; }
.site-footer__bottom a:hover { color: var(--amber); }

/* ------------------------------------------------------- página de erro -- */
/* Mora aqui, e não dentro do 404.html, para que nenhuma página precise de
   bloco de estilo embutido. */

.erro {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 40px var(--pad);
}
.erro svg { width: 260px; max-width: 70vw; margin-bottom: 40px; }
.erro h1 {
  font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 600;
  letter-spacing: -.01em; margin-bottom: 16px;
}
.erro p {
  color: var(--dim); font-size: .98rem; line-height: 1.75;
  max-width: 46ch; margin-bottom: 32px;
}
/* O número do erro também é um <p>, então precisa de peso maior que .erro p
   para não ser achatado por ele na cascata. */
.erro .erro__cod {
  font-family: var(--serif); font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 400; line-height: 1; color: var(--amber);
  max-width: none; margin-bottom: 12px;
}

/* ------------------------------------------------- contato flutuante ---- */

/* Fica ABAIXO do cabeçalho (z-index 100) de propósito: com o menu aberto no
   celular, a navegação precisa vencer o botão, nunca o contrário. */
.zap {
  position: fixed;
  right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  /* Verde oficial do WhatsApp. É a única cor fora da paleta no site inteiro,
     e é deliberada: o reconhecimento imediato é a razão de existir do botão.
     O filete dourado no anel costura o verde ao resto — sem ele, o botão
     parece adesivo colado por cima da página. */
  background: #25D366;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .38), 0 0 0 1px rgba(195, 155, 82, .55);
  transition: transform .18s ease, box-shadow .18s ease;
}
.zap svg { width: 30px; height: 30px; display: block; fill: #FFFFFF; }
.zap:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .46), 0 0 0 1px rgba(195, 155, 82, .8);
}
/* O anel decorativo é box-shadow para deixar o outline livre para o foco.
   Se os dois disputassem a mesma propriedade, quem navega por teclado
   perderia a indicação de onde está. */
.zap:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; }

/* --------------------------------------------------- redes no rodapé ---- */

.site-footer .social { display: inline-flex; align-items: center; gap: 8px; }
.site-footer .social svg {
  width: 17px; height: 17px; flex: 0 0 auto; fill: currentColor;
}

/* ------------------------------------------------- movimento reduzido ---- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .shot__bg { transform: scale(1.02) !important; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ------------------------------------------------------------ impressão -- */

@media print {
  .site-header, .nav-mobile, .hero__bg, .shot__bg, .form, .zap { display: none !important; }
  body { background: #fff; color: #000; }
  .section { border-color: #ccc; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; }
}
