/* ============================================================
   Barkley Experience — estilos
   Paleta: Cinder #14110F · Amber #C66A22 · Ember #B51819 · Linen #EFE6DA
   ============================================================ */

/* Form controls and buttons don't inherit font-family from the page by
   default — without this reset they render in the OS UI font instead of
   the brand typeface. */
button, input, select, textarea, optgroup, option {
  font: inherit;
  color: inherit;
}

:root {
  --cinder: #14110f;
  --cinder-soft: #1c1815;
  --cinder-card: #201b17;
  --amber: #c66a22;
  --ember: #b51819;
  --linen: #efe6da;
  --linen-dim: rgba(239, 230, 218, 0.7);
  --linen-faint: rgba(239, 230, 218, 0.45);
  --hairline: rgba(239, 230, 218, 0.12);
  --gradient-brand: linear-gradient(160deg, var(--amber), var(--ember));

  --font-serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --header-h: 92px;
  --hero-reveal: 170vh;
}

/* Self-hosted fonts (variable) — see assets/fonts */
@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/geist-variable.woff2") format("woff2-variations"), url("../assets/fonts/geist-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/geist-italic-variable.woff2") format("woff2-variations"), url("../assets/fonts/geist-italic-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-variable.woff2") format("woff2-variations"), url("../assets/fonts/playfair-variable.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-italic-variable.woff2") format("woff2-variations"), url("../assets/fonts/playfair-italic-variable.woff2") format("woff2");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--cinder);
  color: var(--linen);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  cursor: url("../assets/logo/cursor-y.png") 6 4, auto;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--linen-dim); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--linen);
  color: var(--cinder);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gradient-brand);
  color: var(--linen);
  box-shadow: 0 8px 24px -8px rgba(181, 24, 25, 0.55);
}
.btn-primary:hover { box-shadow: 0 12px 28px -8px rgba(181, 24, 25, 0.7); }

.btn-outline {
  border-color: rgba(239, 230, 218, 0.35);
  color: var(--linen);
  background: transparent;
}
.btn-outline:hover { border-color: var(--linen); background: rgba(239, 230, 218, 0.06); }

.btn-ghost {
  color: var(--linen-dim);
  background: transparent;
}
.btn-ghost:hover { color: var(--linen); }

.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(20, 17, 15, 0.85);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
}

.brand { display: flex; align-items: center; }
.brand-mark { height: 44px; width: auto; }

.nav {
  display: flex;
  gap: 36px;
  font-size: 0.94rem;
}
.nav a { color: var(--linen-dim); transition: color 0.2s ease; }
.nav a:hover { color: var(--linen); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 18px;
  margin: 0 auto;
  background: var(--linen);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero-stack {
  position: relative;
  height: calc(100vh + var(--hero-reveal));
}

.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 100px;
}

.page-sheet {
  position: relative;
  z-index: 2;
  background: var(--cinder);
  /* Fixed at one viewport (not --hero-reveal): the rise-and-cover transition
     itself always takes one screen of scroll — --hero-reveal instead stretches
     how long the hero stays pinned, pour-only, before this sheet even appears. */
  margin-top: -100vh;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -60px 90px -40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  background:
    radial-gradient(45% 40% at 30% 20%, rgba(198, 106, 34, 0.28), transparent 70%),
    radial-gradient(35% 35% at 75% 55%, rgba(181, 24, 25, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-icon {
  width: 40px;
  height: auto;
  margin-bottom: 26px;
  opacity: 0.95;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  color: var(--linen);
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-sub {
  font-size: 1.08rem;
  max-width: 46ch;
  margin: 18px auto 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero background photo — full-bleed, 3D tilt / parallax on scroll */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  perspective: 1200px;
}

.hero-bg-photo {
  position: absolute;
  /* Kept close to a plain cover fit (minimal oversize) so the vertical clip reads
     as pulled back / farther away on wide screens, instead of zoomed in tight —
     just enough slack for the scroll parallax to pan without exposing edges. */
  inset: -6% -2%;
  width: 104%;
  height: 112%;
  background-size: cover;
  background-position: center 40%;
  object-fit: cover;
  object-position: center 40%;
  transform-origin: center;
  will-change: transform;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 40% at 50% 30%, rgba(20, 17, 15, 0.4), transparent 72%),
    linear-gradient(180deg, rgba(20, 17, 15, 0.12) 0%, rgba(20, 17, 15, 0.42) 45%, rgba(20, 17, 15, 0.95) 100%),
    linear-gradient(90deg, rgba(20, 17, 15, 0.5) 0%, rgba(20, 17, 15, 0.1) 30%, rgba(20, 17, 15, 0.1) 70%, rgba(20, 17, 15, 0.5) 100%);
}

.hero-glow { z-index: 1; opacity: 0.7; }

/* ---------- Ticker ---------- */

.ticker {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 18px 0;
  background: var(--cinder-soft);
}

.ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--linen-faint);
  white-space: nowrap;
}
.ticker-track span:nth-child(2n) { color: var(--amber); font-style: normal; font-family: var(--font-sans); font-size: 0.9rem; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

/* ---------- Sections ---------- */

.section { padding: 110px 0; }
.section-alt { background: var(--cinder-soft); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--linen);
}
.section-lead { font-size: 1.05rem; }

/* Values grid */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
}

.value-card {
  background: var(--cinder);
  padding: 40px 32px;
  transition: background 0.25s ease;
}
.value-card:hover { background: var(--cinder-card); }

.value-icon {
  width: 34px;
  height: 34px;
  color: var(--amber);
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 1.15rem;
  color: var(--linen);
  margin-bottom: 8px;
}
.value-card p { font-size: 0.95rem; margin: 0; }

/* Services grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--cinder-card);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 34px 26px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 106, 34, 0.45);
}

.service-card-signature {
  background: linear-gradient(165deg, rgba(198, 106, 34, 0.16), rgba(181, 24, 25, 0.12));
  border-color: rgba(198, 106, 34, 0.35);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--amber);
  margin-bottom: 20px;
}

.signature-icon {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--linen);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.94rem; margin: 0; }

.signature-tag {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--amber);
  border: 1px solid rgba(198, 106, 34, 0.4);
  padding: 5px 12px;
  border-radius: 999px;
}

/* Equipe (team / founder bio) */

.team-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.team-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
}

.team-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.team-copy .eyebrow { text-align: left; }
.team-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  color: var(--linen);
  margin-bottom: 22px;
}
.team-copy .section-lead { text-align: left; }
.team-copy .section-lead strong { color: var(--linen); }

/* Galeria (drinks carousel) */

.gallery-section .section-head { margin-bottom: 40px; }

.gallery-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(var(--container) + 88px);
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 12px;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-card {
  position: relative;
  flex: 0 0 auto;
  width: 260px;
  height: 325px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.6);
  scroll-snap-align: start;
  cursor: pointer;
}
.gallery-card:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

.gallery-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-photo { transform: scale(1.05); }

.gallery-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 17, 15, 0.55);
  backdrop-filter: blur(4px);
  color: var(--linen);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.gallery-expand svg { width: 16px; height: 16px; }
.gallery-card:hover .gallery-expand,
.gallery-card:focus-visible .gallery-expand {
  opacity: 1;
  transform: scale(1);
}

.gallery-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--cinder-card);
  color: var(--linen);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.gallery-arrow svg { width: 20px; height: 20px; }
.gallery-arrow:hover {
  border-color: rgba(198, 106, 34, 0.45);
  background: rgba(198, 106, 34, 0.1);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 17, 15, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox-img {
  max-width: min(88vw, 640px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.lightbox.is-open .lightbox-img { transform: scale(1); }

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--cinder-card);
  color: var(--linen);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: rgba(198, 106, 34, 0.45);
  background: rgba(198, 106, 34, 0.1);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
}
.lightbox-close svg { width: 18px; height: 18px; }

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* CTA / Contato */

.cta-section { position: relative; overflow: hidden; }
.hero-glow-cta { opacity: 0.7; }

.cta-inner { position: relative; z-index: 1; }

.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.quote-form,
.cta-side {
  background: var(--cinder-card);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 36px;
}

.form-row { margin-bottom: 18px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--linen-dim);
  margin-bottom: 6px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: var(--cinder-soft);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--linen);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: var(--amber); }

.quote-form textarea { resize: vertical; }

.form-note {
  font-size: 0.82rem;
  color: var(--linen-faint);
  text-align: center;
  margin: 14px 0 0;
}

.cta-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}
.cta-icon { width: 32px; margin-bottom: 4px; }
.cta-side-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--linen);
  margin: 0 0 6px;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-mark {
  height: 42px;
  width: auto;
  align-self: flex-start;
  opacity: 0.95;
  margin-bottom: 2px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--linen-faint);
  margin: 0;
  max-width: 32ch;
}

.footer-links-group {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

.footer-nav {
  font-size: 0.92rem;
  color: var(--linen-dim);
}
.footer-nav a { display: block; }
.footer-nav a:hover { color: var(--linen); }

.footer-social {
  flex-direction: row;
  gap: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  color: var(--linen-dim);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-social a svg { width: 19px; height: 19px; }
.footer-social a:hover {
  color: var(--linen);
  border-color: rgba(198, 106, 34, 0.45);
  background: rgba(198, 106, 34, 0.1);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.footer-copy,
.footer-credit {
  font-size: 0.8rem;
  color: var(--linen-faint);
  margin: 0;
}
.footer-credit {
  display: flex;
  align-items: center;
  gap: 8px;
}
.evori-mark { height: 14px; width: auto; opacity: 0.95; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
}

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

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-photo-frame { max-width: 360px; margin: 0 auto; }
  .team-copy .eyebrow, .team-copy h2, .team-copy .section-lead { text-align: center; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(20, 17, 15, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--hairline); }
  .nav a:last-child { border-bottom: none; }

  .nav-toggle { display: flex; }

  .section { padding: 76px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .form-row-split { grid-template-columns: 1fr; }

  .quote-form, .cta-side { padding: 26px; }

  .footer-inner { flex-direction: column; text-align: center; align-items: center; gap: 32px; }
  .footer-col { align-items: center; }
  .footer-mark { align-self: center; }
  .footer-links-group { flex-direction: column; align-items: center; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-credit { justify-content: center; }

  .gallery-arrow { display: none; }
  .gallery-carousel { padding: 0; }
  .gallery-track { padding-left: 24px; padding-right: 24px; scroll-padding-left: 24px; }
  .gallery-card {
    width: calc(100vw - 48px);
    height: calc((100vw - 48px) * 1.25);
  }

  .lightbox-img { max-width: 92vw; max-height: 78vh; }
  .lightbox-close { top: 16px; right: 16px; width: 38px; height: 38px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 420px) {
  .header-actions .btn-primary { padding: 9px 16px; font-size: 0.85rem; }
  .brand-mark { height: 24px; }
}
