/* ============================================================
   TriggerWoods — style.css
   Premium rustic-craftsman aesthetic
   ============================================================ */

/* ── FONTS & TOKENS ─────────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg:        #0d0b09;
  --c-surface:   #141210;
  --c-surface-2: #1e1b17;
  --c-border:    #2e2820;
  --c-wood-dark: #2c1f0e;
  --c-wood-mid:  #8b5e3c;
  --c-wood-warm: #c4894a;
  --c-amber:     #e8a832;
  --c-amber-lt:  #f5c96e;
  --c-text:      #f0ebe3;
  --c-text-muted:#a89880;
  --c-text-dim:  #6b5c4c;
  --c-white:     #ffffff;

  /* Typography */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-hand:    'Caveat', cursive;
  --f-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;

  /* Transitions */
  --t-fast:  150ms ease;
  --t-base:  300ms ease;
  --t-slow:  600ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.7);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section-eyebrow {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
}

.section-sub {
  margin-top: 1rem;
  color: var(--c-text-muted);
  font-size: 1.05rem;
  max-width: 55ch;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-header .section-sub { margin-inline: auto; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--r-xl);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all var(--t-base);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-amber), var(--c-wood-warm));
  color: var(--c-wood-dark);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 50, 0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--c-text);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--c-amber);
  color: var(--c-amber);
  padding: 0.75rem 1.6rem;
  border-radius: var(--r-xl);
  font-weight: 600;
  transition: all var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover {
  background: var(--c-amber);
  color: var(--c-wood-dark);
  transform: translateY(-2px);
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--t-base), backdrop-filter var(--t-base),
              box-shadow var(--t-base), padding var(--t-base);
}
#navbar.scrolled {
  background: rgba(13, 11, 9, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.nav-logo-tw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-amber), var(--c-wood-warm));
  color: var(--c-wood-dark);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 0.9rem;
}

.nav-logo-name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--c-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-amber);
  border-radius: 2px;
  transition: width var(--t-base);
}
.nav-links a:hover { color: var(--c-text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--c-amber), var(--c-wood-warm)) !important;
  color: var(--c-wood-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-xl);
  font-weight: 600 !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,168,50,0.35); }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-base);
}

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('OriginalTriggerwoods/Shop background.png');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 11, 9, 0.82) 0%,
    rgba(13, 11, 9, 0.55) 50%,
    rgba(44, 31, 14, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-md);
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding-top: 100px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--c-amber), var(--c-amber-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(240, 235, 227, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-attribution {
  display: block;
  font-family: var(--f-hand);
  font-size: 1.3rem;
  color: var(--c-amber);
  margin-top: 0.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: bob 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-amber), transparent);
}

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee-strip {
  background: linear-gradient(90deg, var(--c-amber), var(--c-wood-warm));
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-wood-dark);
  flex-shrink: 0;
}
.marquee-track .dot {
  font-size: 0.6rem;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
#about {
  padding: var(--space-2xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.4) 0%, transparent 60%);
  z-index: 1;
}
.about-img { border-radius: var(--r-lg); transition: transform var(--t-slow); }
.about-image-wrap:hover .about-img { transform: scale(1.03); }

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: var(--c-amber);
  color: var(--c-wood-dark);
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.about-img-badge strong { font-size: 1.2rem; display: block; font-weight: 900; }

.about-text { display: flex; flex-direction: column; gap: 0; }
.about-body {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.about-body strong { color: var(--c-amber); font-weight: 600; }
.about-body em { color: var(--c-text); font-style: italic; }
.about-body--closing {
  color: var(--c-text);
  font-size: 1.05rem;
  font-style: italic;
  border-left: 3px solid var(--c-amber);
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
#gallery {
  padding: var(--space-2xl) 0;
  background: var(--c-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
  cursor: pointer;
  background: var(--c-surface-2);
}

/* ── Image layering for crossfade rotation ── */
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.7s ease;
}
.gallery-item img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.gallery-item img.next {
  opacity: 0;
  transform: scale(1.04);
  z-index: 2;
}
.gallery-item img.fade-in {
  opacity: 1;
  transform: scale(1);
}
.gallery-item img.fade-out {
  opacity: 0;
}
.gallery-item:hover img.active {
  transform: scale(1.06);
}

/* "rotating" badge — top-right corner */
.gallery-item[data-rotating]::after {
  content: '↻';
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 4;
  width: 24px;
  height: 24px;
  background: rgba(13,11,9,0.65);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--c-amber);
  opacity: 0.6;
  transition: opacity var(--t-base);
  line-height: 24px;
  text-align: center;
}
.gallery-item[data-rotating]:hover::after {
  opacity: 0; /* hide badge on hover so overlay shows cleanly */
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 3;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item:focus-visible .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
}

.gallery-cta {
  text-align: center;
  margin-top: var(--space-md);
}

/* ── PRODUCTS ────────────────────────────────────────────────── */
#products {
  padding: var(--space-2xl) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.product-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img { transition: transform var(--t-slow); }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-info {
  padding: 1.5rem;
}
.product-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-amber);
  background: rgba(232, 168, 50, 0.12);
  border: 1px solid rgba(232, 168, 50, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-xl);
}

/* ── TEAM ────────────────────────────────────────────────────── */
#team {
  padding: var(--space-2xl) 0;
  background: var(--c-surface);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.team-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.team-card--wide {
  grid-column: span 1;
}

.team-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-img-wrap img { transition: transform var(--t-slow); }
.team-card:hover .team-img-wrap img { transform: scale(1.04); }

.team-info {
  padding: 1.5rem;
}
.team-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.75rem;
}
.team-quote {
  font-family: var(--f-hand);
  font-size: 1.1rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
#contact {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
  text-align: center;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--c-wood-dark) 0%, var(--c-bg) 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232,168,50,0.12) 0%, transparent 60%);
  z-index: 0;
}
.contact-inner {
  position: relative;
  z-index: 1;
}
.contact-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.contact-sub {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}
.contact-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--r-xl);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  transition: all var(--t-base);
}
.contact-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-link:hover {
  background: var(--c-amber);
  color: var(--c-wood-dark);
  border-color: var(--c-amber);
  transform: translateY(-2px);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
#footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}
.footer-logo {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--c-amber), var(--c-wood-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--c-text-dim);
  font-style: italic;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--c-amber); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--c-text-dim);
  margin-top: 0.5rem;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll-in reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--t-slow), transform 0.7s var(--t-slow);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { aspect-ratio: 16/9; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1/1; }
  .gallery-item--wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,11,9,0.97);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.4rem; }
  .nav-hamburger { display: flex; z-index: 100; }

  .products-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 1/1; }
  .contact-links { flex-direction: column; align-items: center; }
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13, 11, 9, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-close {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--c-surface-2);
  border: 2px solid var(--c-border);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
  transition: all var(--t-base);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.lightbox-close:hover, .lightbox-close:focus-visible {
  background: var(--c-amber);
  color: var(--c-surface);
  border-color: var(--c-amber);
  transform: scale(1.1);
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  width: 90vw;
  height: 80vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.lightbox-caption {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.lightbox-gphotos-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--c-surface-2);
  color: var(--c-white);
  text-decoration: none;
  border-radius: var(--r-full);
  font-family: var(--f-sans);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--t-base), color var(--t-base);
}
.lightbox-gphotos-link:hover, .lightbox-gphotos-link:focus-visible {
  background: var(--c-amber);
  color: var(--c-surface);
}
