/* Acquire & Scale 2026. Design system adapted from the Tax Gen site (same vibe, Acquire A Firm glasses blue). */
:root {
  --black: #050505;
  --black-2: #0d0d0f;
  --panel: #121214;
  --panel-2: #18181b;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #38b6ff;
  --gold: #f5c542;
  --gold-grad: linear-gradient(100deg, #fff1b8 0%, #f5c542 40%, #e09b0b 70%, #f5c542 100%);
  --accent-deep: #1a8fd6;
  --accent-light: #8fd4ff;
  --accent-grad: linear-gradient(100deg, #d6f0ff 0%, #8fd4ff 30%, #38b6ff 60%, #8fd4ff 100%);
  --btn-grad: linear-gradient(135deg, #4cc0ff, #1f9be6 55%, #0b78c2);
  --white: #ffffff;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --error: #ff6b5b;
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

.wrap { width: min(1120px, 100% - 40px); margin-inline: auto; }

.display {
  font-family: "Archivo", "Inter", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.accent-text {
  background: var(--accent-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.wordmark {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
}
.wordmark span { color: var(--accent-light); }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 16px 32px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-accent {
  background: var(--btn-grad);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 1px rgba(56, 182, 255, 0.4), 0 10px 40px rgba(56, 182, 255, 0.35);
}
.btn-accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-20deg);
  animation: shine 3.2s ease-in-out infinite;
}
@keyframes shine {
  0%, 60% { left: -60%; }
  100% { left: 130%; }
}
.btn-accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(56, 182, 255, 0.6), 0 14px 50px rgba(56, 182, 255, 0.5);
}
.btn-small { padding: 10px 20px; font-size: 0.9rem; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* grid lines */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
}
.orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 12s ease-in-out infinite;
}
.orb-1 { width: 520px; height: 520px; background: #38b6ff; top: -220px; right: -120px; opacity: 0.35; }
.orb-2 { width: 420px; height: 420px; background: #0b3d6b; bottom: -220px; left: -120px; opacity: 0.35; animation-delay: -6s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

.hero-inner { text-align: center; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(56, 182, 255, 0.35);
  background: rgba(56, 182, 255, 0.08);
  color: var(--accent-light);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(56, 182, 255, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(56, 182, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 182, 255, 0); }
}
.hero h1 {
  font-size: clamp(3.6rem, 17vw, 10rem);
  margin: 0;
  text-transform: uppercase;
}
.hero h1 .line { display: block; }
.tagline {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  margin: 22px 0 28px;
  color: var(--white);
}
.pillars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}
.pillars li {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid rgba(56, 182, 255, 0.45);
  box-shadow: inset 0 0 20px rgba(56, 182, 255, 0.08);
}
.lead {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.2rem;
  color: var(--muted);
}
.presented {
  margin-top: 30px;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.presented strong { color: var(--white); }

/* Marquee */
.marquee {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #0b0b0c, #141414, #0b0b0c);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 38s linear infinite;
}
.marquee-track span {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  white-space: nowrap;
  padding: 0 22px;
  color: #d4d4d8;
}
.marquee-track span::after {
  content: "\2605";
  color: var(--accent);
  margin-left: 44px;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* Sections */
section { padding: 100px 0; position: relative; }
.kicker {
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 14px;
}
.section-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 48px;
  font-size: 1.1rem;
}
.center { text-align: center; }
.center .section-sub { margin-inline: auto; }

.tracks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.track {
  position: relative;
  padding: 36px 30px 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 0% 0%, rgba(56, 182, 255, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.track:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 182, 255, 0.55);
  box-shadow: 0 20px 60px rgba(56, 182, 255, 0.15);
}
.track:hover::before { opacity: 1; }
.track .num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.track h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.track p { margin: 0; color: var(--muted); font-size: 1.02rem; position: relative; }

/* Who it's for */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.persona {
  border-radius: var(--radius);
  padding: 44px 36px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.persona.accent {
  background: var(--btn-grad);
  color: #fff;
  border: 0;
}
.persona .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.7;
}
.persona h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  margin: 0 0 14px;
}
.persona p { margin: 0; font-size: 1.08rem; color: var(--muted); }
.persona.accent p { color: #e6f6ff; }

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.benefit {
  padding: 26px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.benefit .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(56, 182, 255, 0.12);
  border: 1px solid rgba(56, 182, 255, 0.35);
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.benefit h4 { margin: 0 0 6px; font-size: 1.1rem; color: var(--white); }
.benefit p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* Signup */
.signup {
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(56, 182, 255, 0.16), transparent 70%),
    var(--black-2);
  border-top: 1px solid var(--line);
}
.form-card {
  max-width: 660px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid rgba(56, 182, 255, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(56, 182, 255, 0.08);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label, .field legend {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #e4e4e7;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #2e2e33;
  background: #0b0b0c;
  color: var(--white);
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder { color: #5b5b63; }
.field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(56, 182, 255, 0.18);
}
fieldset.field { border: 0; padding: 0; margin: 0 0 18px; }
.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #2e2e33;
  background: #0b0b0c;
  cursor: pointer;
  font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.choice input { accent-color: var(--accent); }
.choice:has(input:checked) {
  border-color: var(--accent);
  background: rgba(56, 182, 255, 0.1);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); }
.consent a { color: #d4d4d8; }
.form-card .btn { width: 100%; justify-content: center; font-size: 1.05rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin: 14px 0 0; text-align: center; }
.error-msg {
  color: var(--error);
  background: rgba(255, 107, 91, 0.08);
  border: 1px solid rgba(255, 107, 91, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  margin: 0 0 16px;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.success { text-align: center; padding: 26px 8px; }
.success .check {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #fff;
  background: var(--btn-grad);
  box-shadow: 0 0 40px rgba(56, 182, 255, 0.45);
}
.success h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin: 0 0 8px;
}
.success p { color: var(--muted); margin: 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  color: #71717a;
  font-size: 0.82rem;
  padding: 36px 0;
}
.site-footer .wrap { display: grid; gap: 8px; }
.site-footer strong { color: #d4d4d8; }
.site-footer a { color: #a1a1aa; }

/* Simple content page */
.page { padding: 70px 0 90px; }
.page h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin: 0 0 8px;
}
.page h2 { color: var(--accent); margin-top: 34px; font-size: 1.15rem; }
.page p, .page li { color: #c4c4cc; max-width: 760px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .field-row, .choice-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  section { padding: 72px 0; }
  .hero { padding: 80px 0 90px; }
  .site-header .btn-small { padding: 8px 14px; font-size: 0.82rem; }
}

/* Accessibility checklist (focus, tap size, field errors) */
.btn { min-height: 44px; }
.btn:focus-visible,
a:focus-visible,
.choice:has(input:focus-visible),
.consent input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.field input[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(255, 107, 91, 0.15);
}

/* Small screens: keep header on one line */
.wordmark, .btn { white-space: nowrap; }
@media (max-width: 420px) {
  .wordmark { font-size: 1rem; }
  .site-header .btn-small { padding: 8px 12px; font-size: 0.78rem; }
}

/* Gold accents (a touch, on purpose) */
.gold-text {
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
.pulse-dot {
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(245, 197, 66, 0.7);
  animation-name: pulse-gold;
}
@keyframes pulse-gold {
  70% { box-shadow: 0 0 0 10px rgba(245, 197, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 197, 66, 0); }
}
.marquee-track span::after { color: var(--gold); }
.presented strong { color: var(--gold); }

/* Two forms (top and bottom) + interest checkboxes */
.hero-form { margin-top: 36px; text-align: left; }
.hint { font-weight: 400; color: var(--muted); font-size: 0.82rem; margin-left: 6px; }
.choice-row.four { grid-template-columns: 1fr 1fr; }
.choice input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; }


/* ---------- Acquire & Scale additions ---------- */
.wordmark { display: inline-flex; align-items: center; gap: 10px; }
.wordmark img { height: 22px; width: auto; display: block; }
.hero { background: url("img/hero-glow.jpg") center right / cover no-repeat, var(--black); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5,5,5,0.35), rgba(5,5,5,0.75) 70%, var(--black));
}
.hero h1 .amp { color: var(--white); }
.hero-glasses { width: 88px; height: auto; margin: 0 auto 18px; display: block; filter: drop-shadow(0 0 18px rgba(56,182,255,0.55)); }
.facts {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
  padding: 0; margin: 0 0 26px; list-style: none;
}
.facts li {
  font-weight: 700; letter-spacing: 0.04em; font-size: 0.95rem;
  padding: 10px 18px; border-radius: 999px; background: rgba(18,18,20,0.8);
  border: 1px solid rgba(56, 182, 255, 0.45);
}
.facts li strong { color: var(--gold); font-weight: 800; }

.days { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }
.day {
  border-radius: var(--radius); padding: 36px 32px; border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}
.day.scale { border-color: rgba(56, 182, 255, 0.45); box-shadow: 0 0 60px rgba(56,182,255,0.08) inset; }
.day .when { color: var(--muted); font-weight: 600; margin: 0 0 6px; }
.day h3 {
  font-family: "Archivo", sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1; margin: 0 0 22px;
}
.agenda { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.agenda li { padding-left: 18px; position: relative; color: var(--muted); }
.agenda li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px rgba(56,182,255,0.8);
}
.agenda li strong { color: var(--white); display: block; }
.agenda li.highlight strong { color: var(--gold); }
.fine { color: #71717a; font-size: 0.85rem; text-align: center; margin: 22px 0 0; }

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 auto 40px; max-width: 820px; }
.chips span {
  padding: 10px 18px; border-radius: 999px; background: var(--panel); border: 1px solid var(--line);
  font-weight: 700; font-size: 0.95rem;
}

.awards {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center;
  border-radius: 26px; padding: 48px; border: 1px solid rgba(245,197,66,0.35);
  background: radial-gradient(600px 300px at 0% 0%, rgba(245,197,66,0.12), transparent 70%), var(--panel);
}
.awards h2 { margin-top: 0; }
.awards p { color: var(--muted); font-size: 1.08rem; }
.award-list { display: grid; gap: 14px; }
.award {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 16px;
  background: #0b0b0c; border: 1px solid var(--line);
}
.award .num { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 2rem; line-height: 1; }
.award h4 { margin: 0; font-family: "Archivo", sans-serif; font-weight: 900; text-transform: uppercase; font-size: 1.15rem; letter-spacing: 0.02em; }
.award p { margin: 2px 0 0; font-size: 0.92rem; }

.venue { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items: center; }
.venue img { width: 100%; height: auto; border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.venue h2 { margin-top: 0; }
.venue address { font-style: normal; color: var(--muted); font-size: 1.1rem; margin: 0 0 22px; }
.hotels { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hotels li { padding: 14px 16px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); }
.hotels li strong { display: block; color: var(--white); }
.hotels li span { color: var(--muted); font-size: 0.92rem; }

.choice-row.three { grid-template-columns: 1fr 1fr 1fr; }
.field input[type="text"].optional::placeholder { color: #4b4b52; }

@media (max-width: 860px) {
  .awards, .venue { grid-template-columns: 1fr; }
  .awards { padding: 30px 22px; }
}
@media (max-width: 640px) {
  .choice-row.three { grid-template-columns: 1fr; }
  .hero-glasses { width: 70px; }
}

/* Small phones: keep the header on one line */
@media (max-width: 420px) {
  .site-header .wordmark img { display: none; }
  .site-header .wrap { gap: 10px; }
}

/* Marquee photo in the hero, above the top form */
.hero-photo {
  display: block; width: 100%; max-width: 760px; height: auto; margin: 36px auto 0;
  border-radius: 22px; border: 1px solid rgba(56, 182, 255, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(56, 182, 255, 0.12);
}
.hotels-row { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); max-width: 980px; margin: 0 auto; }

/* Awards: winner photo */
.awards { grid-template-columns: 0.95fr 1.05fr; }
.awards .award-list { margin-top: 24px; }
.award-photo { margin: 0; position: relative; }
.award-photo img {
  display: block; width: 100%; height: auto; border-radius: 18px;
  border: 1px solid rgba(245, 197, 66, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(245, 197, 66, 0.10);
}
.award-photo figcaption {
  position: absolute; right: 10px; bottom: 10px; font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.7); background: rgba(0, 0, 0, 0.45);
  padding: 3px 8px; border-radius: 999px;
}
@media (max-width: 860px) { .awards { grid-template-columns: 1fr; } }
