/* Micah 6 AI — clone estático (estudo local) */
:root {
  --black: #0e0e0e;
  --white: #ffffff;
  --gray-bg: #f5f4f2;
  --gray-line: #e4e2de;
  --gray-text: #4a4a4a;
  --max-w: 1240px;
  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: clamp(15.5px, 14px + 0.35vw, 17px);
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* Disable hover-only affordances on touch devices to avoid "sticky hover" */
@media (hover: hover) and (pointer: fine) {
  .hover-enabled { --hover: 1; }
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 40px);
  max-width: calc(var(--max-w) + 80px);
  margin: 0 auto;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.brand img { width: 30px; height: auto; }

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 16px;
}

.main-nav a {
  text-decoration: none;
  color: var(--black);
}

.main-nav a.active { color: #6b6b6b; }

@media (hover: hover) and (pointer: fine) {
  .main-nav a:hover { color: #6b6b6b; }
}

.lang-select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 18px;
  border: 1px solid var(--black);
  background: var(--white);
  cursor: pointer;
  min-height: 44px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--black);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: clamp(56px, 11vw, 110px) 0 clamp(40px, 8vw, 90px); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.hero-side {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.hero-side p {
  font-size: 18px;
  max-width: 340px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  padding: 14px 34px;
  border: 1px solid var(--black);
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-solid { background: var(--black); color: var(--white); }
.btn-outline { background: var(--white); color: var(--black); }

@media (hover: hover) and (pointer: fine) {
  .btn-solid:hover { background: #333; }
  .btn-outline:hover { background: var(--black); color: var(--white); }
}

/* ---------- Collage ---------- */
.collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.collage img {
  width: 100%;
  height: clamp(240px, 38vw, 480px);
  object-fit: cover;
  object-position: top center;
}

/* ---------- Logo strip ---------- */
.logos { padding: clamp(48px, 9vw, 90px) 0 clamp(36px, 7vw, 70px); text-align: center; }

.logos h2, .logos h3, .logos h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 40px;
}

.logos img { margin: 0 auto; max-width: 900px; width: 100%; }

.logos-text {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #555;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-grid img,
.logo-marquee img {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.logo-grid img:hover,
.logo-marquee img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-grid .logo-text,
.logo-marquee .logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
}

/* Logo marquee (Splide) */
.logo-marquee {
  max-width: 1000px;
  margin: 0 auto;
}

.logo-marquee .splide__track { overflow: hidden; }

.logo-marquee .splide__list {
  align-items: center;
  list-style: none;
}

.logo-marquee .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-marquee:not(.is-active) .splide__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 56px;
}

/* ---------- Blind Spot ---------- */
.blindspot {
  background: var(--gray-bg);
  padding: clamp(56px, 11vw, 110px) 0;
}

.blindspot-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 7vw, 80px);
}

.blindspot h2, .blindspot h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.15;
}

.blindspot .lead {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 28px;
}

.blindspot p + p { margin-top: 20px; }

.text-link {
  display: inline-block;
  margin-top: 34px;
  font-size: 17px;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- How We Work ---------- */
.how { padding: clamp(56px, 11vw, 110px) 0; }

.how-head { max-width: 720px; margin-bottom: clamp(40px, 7vw, 70px); }

.how h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 18px;
}

.how-head p { font-size: clamp(17px, 1.4vw, 20px); color: var(--gray-text); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.card {
  border: 1px solid var(--gray-line);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: clamp(200px, 22vw, 260px);
  object-fit: cover;
}

.card-body { padding: 40px 38px 44px; display: flex; flex-direction: column; flex: 1; }

.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.card .tagline {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}

.card p + p { margin-top: 16px; }
.card p { font-size: 16px; color: var(--gray-text); }
.card p strong { color: var(--black); }

.card .email {
  margin-top: auto;
  padding-top: 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
}

/* ---------- Why ---------- */
.why {
  background: var(--black);
  color: var(--white);
  padding: clamp(60px, 12vw, 120px) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1.15fr;
  gap: clamp(32px, 6vw, 60px);
}

.why-photo {
  height: 100%;
}

.why-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.why h2, .why h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
}

.why h2 .muted, .why h3 .muted { color: #9a9a9a; }

.why p + p { margin-top: 20px; }
.why p { color: #d6d6d6; }
.why p strong { color: var(--white); }

.why .divider {
  border: none;
  border-top: 1px solid #333;
  margin: 36px 0;
}

/* ---------- Contact ---------- */
.contact { padding: clamp(60px, 12vw, 120px) 0; }

.contact-single { max-width: 640px; }

.contact h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.18;
  margin-bottom: 36px;
}

.contact-emails p { font-size: 18px; margin-bottom: 10px; }
.contact-emails-label { color: var(--gray-text); font-size: 15px; margin-bottom: 6px; }
.contact-emails a { font-weight: 600; font-size: clamp(18px, 1.6vw, 20px); text-decoration: none; overflow-wrap: break-word; }

@media (hover: hover) and (pointer: fine) {
  .contact-emails a:hover { text-decoration: underline; }
  .text-link:hover { opacity: 0.7; }
}
.contact-note { margin-top: 26px; color: var(--gray-text); }

.field { margin-bottom: 22px; display: flex; flex-direction: column; }

.field label { font-size: 15px; margin-bottom: 6px; }

.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--black);
  background: var(--white);
  outline: none;
}

.field input:focus,
.field textarea:focus { border-width: 2px; }

.field textarea { min-height: 120px; resize: vertical; }

form .btn { width: 100%; cursor: pointer; margin-top: 6px; }

.form-success {
  display: none;
  margin-top: 18px;
  font-weight: 600;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  margin-top: 12px;
}

.btn-whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--gray-line);
  padding: clamp(48px, 9vw, 90px) 0 clamp(28px, 5vw, 50px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 7vw, 80px);
  margin-bottom: clamp(40px, 7vw, 70px);
}

.site-footer h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 16px;
}

.newsletter-label { font-size: 17px; margin-bottom: 26px; }

.newsletter .field { max-width: 480px; }

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  margin-bottom: 22px;
}

.newsletter .btn { max-width: 480px; }

.social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}

.social img { width: 34px; height: 34px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-text);
  border-top: 1px solid var(--gray-line);
  padding-top: 28px;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.footer-links a { color: var(--gray-text); text-decoration: none; }

@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover { text-decoration: underline; }
}

.photo-credit {
  margin-top: 14px;
  font-size: 12px;
  color: var(--gray-text);
}

.photo-credit a { color: inherit; }

/* ---------- Responsive ---------- */

/* Tablet and below: fixed-ratio grids collapse to one column.
   .cards and .collage use auto-fit, so they adapt on their own. */
@media (max-width: 960px) {
  .hero-grid,
  .blindspot-grid,
  .why-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .hero-side { grid-template-columns: 1fr; }

  .why-photo { height: clamp(280px, 62vw, 420px); }

  /* Mobile nav: collapsible panel anchored under the sticky header */
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-line);
    border-bottom: 1px solid var(--gray-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open { max-height: 320px; }

  .main-nav a {
    padding: 16px clamp(20px, 5vw, 40px);
    border-bottom: 1px solid var(--gray-line);
    width: 100%;
  }
}

/* Small phones: tighten touch spacing further */
@media (max-width: 480px) {
  .brand { font-size: 18px; }
  .brand img, .brand-logo { width: 28px; height: 28px; }
  .hero-ctas { gap: 14px; }
  .btn { padding: 14px 24px; }
  .logo-grid { gap: 28px 32px; }
  .logo-grid img { height: 40px; max-width: 110px; }
}

/* Landscape phones (short viewport height): trim vertical rhythm */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 32px 0; }
  .why, .contact, .how, .blindspot { padding-top: 48px; padding-bottom: 48px; }
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(56px, 11vw, 110px) 0; background: var(--gray-bg); }

.faq h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  margin-bottom: clamp(28px, 5vw, 48px);
}

.faq-item {
  border-bottom: 1px solid var(--gray-line);
  padding: 20px 0;
  max-width: 820px;
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 20px);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p { margin-top: 14px; color: var(--gray-text); max-width: 720px; }

/* ========== UI polish pack ========== */

/* 1. Header: shadow appears after scrolling */
.site-header { transition: box-shadow 0.25s ease; }
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--gray-line), 0 8px 24px rgba(0,0,0,0.06); }

/* 2. Hero entrance (staggered fade-up) */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero h1 { animation: fadeUp 0.7s ease both; }
.hero-side p { animation: fadeUp 0.7s 0.15s ease both; }
.hero-ctas { animation: fadeUp 0.7s 0.3s ease both; }

/* 3. Scroll-reveal for sections below the fold */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* 4. Buttons: lift on hover + visible keyboard focus */
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
}
.btn { transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }
.why :focus-visible { outline-color: var(--white); }

/* 5. Cards: elevation + image zoom on hover */
.card { transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease; overflow: hidden; }
.card > img { transition: transform 0.5s ease; }
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.10); border-color: #cfcdc8; }
  .card:hover > img { transform: scale(1.04); }
}

/* 6. Social icons hover */
.social a { transition: transform 0.2s ease, opacity 0.2s ease; display: inline-block; }
@media (hover: hover) and (pointer: fine) {
  .social a:hover { transform: translateY(-3px); opacity: 0.75; }
}

/* 7. Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 28px; height: 28px; }
@media (hover: hover) and (pointer: fine) {
  .wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
}

/* 8. Contact WhatsApp button in brand green */
.btn-whatsapp { background: #25d366; border-color: #25d366; }
@media (hover: hover) and (pointer: fine) {
  .btn-whatsapp:hover { background: #1ebe5b; }
}

/* 9. Nav: animated underline + scrollspy active state */
.main-nav a { position: relative; }
@media (min-width: 961px) {
  .main-nav a::after {
    content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
    background: var(--black); transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s ease;
  }
  .main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
}

/* 10. Micro-polish: selection color, smoother details */
::selection { background: var(--black); color: var(--white); }
.why ::selection { background: var(--white); color: var(--black); }
.faq-item summary { transition: opacity 0.2s ease; }
@media (hover: hover) and (pointer: fine) { .faq-item summary:hover { opacity: 0.65; } }

/* ---------- Speaking ---------- */
.speaking { padding: clamp(56px, 11vw, 110px) 0; }

.speaking h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  margin-bottom: 12px;
}

.speaking .section-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--gray-text);
  margin-bottom: clamp(32px, 5vw, 48px);
  max-width: 680px;
}

.speaking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.speaking-grid article {
  border: 1px solid var(--gray-line);
  overflow: hidden;
}

.speaking-grid img {
  width: 100%;
  height: clamp(200px, 26vw, 300px);
  object-fit: cover;
  object-position: center 30%;
}

.speaking-grid h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin: 20px 24px 8px;
}

.speaking-grid p {
  font-size: 15px;
  color: var(--gray-text);
  margin: 0 24px 20px;
}

.speaking-cta { text-align: center; }

/* ---------- Impact Strip ---------- */
.impact {
  background: var(--black);
  color: var(--white);
  padding: clamp(48px, 9vw, 80px) 0;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.impact-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.impact-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1;
}

.impact-label {
  font-size: 14px;
  color: #9a9a9a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.impact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.impact-links a {
  color: var(--white);
  text-decoration: underline;
  font-size: 14px;
}

.impact-links a:hover { opacity: 0.7; }

/* ---------- Products ---------- */
.products { padding: clamp(56px, 11vw, 110px) 0; background: var(--gray-bg); }

.products h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  margin-bottom: 12px;
  text-align: center;
}

.products .section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 5vw, 48px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.product-card {
  border: 1px solid var(--gray-line);
  overflow: hidden;
  background: var(--white);
}

.product-card img {
  width: 100%;
  height: clamp(160px, 20vw, 220px);
  object-fit: cover;
  display: block;
}

.product-card .prod-body {
  padding: 20px 22px 24px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
}

.product-card .prod-desc {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .hero h1, .hero-side p, .hero-ctas { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ========== New-framework UI pack ========== */

/* Alpine: hide until initialized */
[x-cloak] { display: none !important; }

/* 8. Scroll progress bar (Alpine-driven) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--black);
  z-index: 70;
  width: 0%;
}

/* 9. Copy-to-clipboard button next to contact email */
.copy-email-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gray-line);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
  .copy-btn:hover { border-color: var(--black); }
}

.copy-btn:active { transform: scale(0.92); }

/* GLightbox targets: show it's clickable */
.collage a.glightbox,
.speaking-grid a.glightbox, .products-grid a.glightbox { cursor: zoom-in; display: block; }

/* Tippy.js — brand theme */
.tippy-box[data-theme~="dheiver"] {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  padding: 2px;
}

.tippy-box[data-theme~="dheiver"] .tippy-arrow { color: var(--black); }
