:root {
  --black: #050403;
  --black-soft: #0d0b08;
  --ink: #16120c;
  --gold: #d6a344;
  --gold-soft: #f0d188;
  --cream: #f7efe1;
  --mist: #eee9df;
  --sage: #879079;
  --white: #fffaf0;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: Inter, Arial, sans-serif;
}

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

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

/* ─── Scroll reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-up    { transform: translateY(44px); }
.reveal.reveal-left  { transform: translateX(-56px); }
.reveal.reveal-right { transform: translateX(56px); }
.reveal.reveal-scale { transform: scale(0.9); }
.reveal.is-visible   { opacity: 1; transform: none; }
.hero .reveal,
.page-hero .reveal {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.13s; }
.delay-2 { transition-delay: 0.26s; }
.delay-3 { transition-delay: 0.39s; }

/* ─── Header ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(5, 4, 3, 0.42);
  border-bottom: 1px solid rgba(214, 163, 68, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 4, 3, 0.92);
  border-color: rgba(214, 163, 68, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity 220ms, filter 220ms;
  filter: drop-shadow(0 0 0px rgba(214, 163, 68, 0));
}
.brand:hover .brand-logo {
  opacity: 0.88;
  filter: drop-shadow(0 0 8px rgba(214, 163, 68, 0.35));
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 250, 240, 0.78);
}
.nav a {
  position: relative;
  padding-bottom: 2px;
  transition: color 200ms;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-soft);
  transition: width 250ms ease;
}
.nav a:hover { color: var(--gold-soft); }
.nav a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: rgba(255, 250, 240, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(214, 163, 68, 0.22);
  transition: color 200ms, background 200ms, border-color 200ms, transform 200ms;
}
.header-social:hover {
  color: var(--gold-soft);
  background: rgba(214, 163, 68, 0.12);
  border-color: rgba(214, 163, 68, 0.5);
  transform: translateY(-2px);
}

/* ─── Hamburger ────────────────────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 8px;
  background: none;
  border: 1px solid rgba(214, 163, 68, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 2px;
  transition: transform 280ms ease, opacity 280ms ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile nav dropdown ─────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 72px; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  padding: 20px clamp(18px, 5vw, 64px);
  gap: 4px;
  background: rgba(5, 4, 3, 0.97);
  border-bottom: 1px solid rgba(214, 163, 68, 0.22);
  backdrop-filter: blur(18px);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 250, 240, 0.85);
  border-bottom: 1px solid rgba(214, 163, 68, 0.1);
  transition: color 180ms, padding-left 180ms;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold-soft); padding-left: 6px; }

.mobile-nav-socials {
  display: flex;
  gap: 14px;
  padding-top: 16px;
}
.mobile-nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  color: rgba(255, 250, 240, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 163, 68, 0.25);
  padding: 0;
  transition: color 200ms, background 200ms, transform 200ms;
}
.mobile-nav-socials a:hover {
  color: var(--gold-soft);
  background: rgba(214, 163, 68, 0.12);
  transform: translateY(-2px);
  padding-left: 0;
}

/* ─── Active nav link ─────────────────────────────────────────── */
.nav-active {
  color: var(--gold-soft) !important;
}
.nav-active::after {
  width: 100% !important;
}

/* ─── Inner page hero banner ──────────────────────────────────── */
.page-hero {
  padding: clamp(110px, 14vw, 160px) clamp(18px, 5vw, 64px) clamp(48px, 6vw, 72px);
  background: radial-gradient(ellipse at 60% 0%, rgba(214, 163, 68, 0.12), transparent 60%), #080603;
  border-bottom: 1px solid rgba(214, 163, 68, 0.16);
}
.page-hero h1 {
  color: var(--gold-soft);
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.9;
  margin-top: 10px;
}
.page-hero-sub {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.65);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  max-width: 560px;
}

/* ─── Services CTA block ──────────────────────────────────────── */
.services-cta {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(22, 18, 12, 0.12);
}
.services-cta p {
  color: rgba(22, 18, 12, 0.65);
  font-size: 16px;
  margin: 0 0 8px;
}

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: center;
  background: radial-gradient(circle at 76% 20%, rgba(214, 163, 68, 0.16), transparent 34%), var(--black);
  border-bottom: 1px solid rgba(214, 163, 68, 0.18);
  padding-top: 76px;
}
.hero-media {
  min-height: 0;
  overflow: hidden;
  background: #050403;
}
.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  filter: saturate(0.95) contrast(1.06);
  transition: transform 8s ease;
}
.hero-media:hover img { transform: scale(1.03); }

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(24px, 6vw, 84px) 64px;
  border-left: 1px solid rgba(214, 163, 68, 0.22);
}

/* ─── Typography ──────────────────────────────────────────────── */
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}
h1 {
  max-width: 620px;
  color: var(--gold-soft);
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.86;
}
h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
}
h3 { color: var(--gold-soft); font-size: 30px; }

.lead, .section-copy p, .contact p {
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
}
.lead { max-width: 560px; margin: 24px 0 0; }

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
}
.hero-title-row h1 {
  flex: 1 1 auto;
  min-width: 0;
}
.hero-brand-logo {
  flex: 0 0 auto;
  height: clamp(64px, 8vw, 108px);
  width: auto;
  filter: drop-shadow(0 2px 14px rgba(214, 163, 68, 0.22));
  opacity: 0.88;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(214, 163, 68, 0.55);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 500ms ease;
}
.btn:hover::after { transform: translateX(100%); }
.btn:hover { transform: translateY(-3px); }

.btn.primary {
  color: #100b04;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}
.btn.primary:hover { box-shadow: 0 8px 28px rgba(214, 163, 68, 0.45); }

.btn.secondary {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.04);
}
.btn.secondary:hover {
  background: rgba(214, 163, 68, 0.1);
  border-color: rgba(214, 163, 68, 0.65);
  box-shadow: 0 4px 18px rgba(214, 163, 68, 0.15);
}

/* Social button accent colors */
.social-btn.ig:hover { border-color: #e1306c; box-shadow: 0 4px 18px rgba(225,48,108,0.2); }
.social-btn.fb:hover { border-color: #1877f2; box-shadow: 0 4px 18px rgba(24,119,242,0.2); }


/* ─── Sections ────────────────────────────────────────────────── */
.section { padding: clamp(72px, 9vw, 130px) clamp(18px, 5vw, 64px); }

.section-copy { max-width: 760px; }

.feature-image { margin: 0; box-shadow: var(--shadow); }
.brand-gallery img,
.work-panel img {
  width: 100%;
  border: 1px solid rgba(214, 163, 68, 0.24);
  border-radius: var(--radius);
  transition: border-color 300ms, box-shadow 300ms;
}
.feature-image img:hover {
  border-color: rgba(214, 163, 68, 0.5);
  box-shadow: 0 12px 48px rgba(214, 163, 68, 0.15);
}

/* ─── Services ────────────────────────────────────────────────── */
.services { background: var(--cream); color: var(--ink); }
.services h2, .services h3 { color: var(--ink); }
.section-head { max-width: 780px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}
.service-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(22, 18, 12, 0.14);
  border-radius: var(--radius);
  background: #fff9ee;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.service-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(22, 18, 12, 0.12);
  border-color: rgba(214, 163, 68, 0.35);
}
.service-grid span { color: var(--sage); font-weight: 900; }
.service-grid p { color: rgba(22, 18, 12, 0.72); line-height: 1.7; }

/* ─── Gallery stacked sections ────────────────────────────────── */
.work-section { background: linear-gradient(180deg, #0f0c08, #050403); }

.gallery-cat-nav {
  position: sticky;
  top: 77px;
  z-index: 10;
  display: flex;
  gap: 10px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(5, 4, 3, 0.88);
  border-bottom: 1px solid rgba(214, 163, 68, 0.18);
  backdrop-filter: blur(14px);
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-cat-nav::-webkit-scrollbar { display: none; }
.gallery-cat-nav a {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 1px solid rgba(214, 163, 68, 0.36);
  border-radius: var(--radius);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 180ms, color 180ms, border-color 180ms;
  white-space: nowrap;
}
.gallery-cat-nav a:hover {
  background: rgba(214, 163, 68, 0.12);
  border-color: rgba(214, 163, 68, 0.6);
}

.gallery-cat {
  padding: clamp(52px, 6vw, 90px) clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(214, 163, 68, 0.1);
  scroll-margin-top: 140px;
}
.gallery-cat:first-child { border-top: none; }

.gallery-cat-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: clamp(22px, 3vw, 38px);
}
.gallery-cat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.32;
  line-height: 1;
  user-select: none;
}
.gallery-cat-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3.4vw, 40px);
  font-weight: 600;
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.01em;
}

.work-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.work-panel img {
  height: 360px;
  object-fit: cover;
  background: #090705;
  transition: transform 350ms ease, border-color 300ms ease, box-shadow 300ms ease;
}
.work-panel img:hover {
  transform: scale(1.02);
  border-color: rgba(214, 163, 68, 0.5);
  box-shadow: 0 6px 28px rgba(214, 163, 68, 0.18);
}
.work-panel img:nth-child(5n + 1) { grid-row: span 2; height: 734px; }
.work-panel img:nth-child(7n + 3) { grid-column: span 2; }

/* ─── Brand gallery ───────────────────────────────────────────── */
.brand-gallery {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1fr;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  background: #0b0906;
}
.brand-gallery img {
  height: auto;
  max-height: 620px;
  object-fit: contain;
  background: #050403;
}
.brand-gallery img:nth-child(2) {
  max-height: 520px;
}
.brand-gallery img:hover {
  border-color: rgba(214, 163, 68, 0.5);
  box-shadow: 0 8px 32px rgba(214, 163, 68, 0.2);
}

/* ─── Contact + Map ───────────────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: stretch;
  min-height: 520px;
  background: linear-gradient(135deg, #13100b, #060504 62%, #1d160d);
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(64px, 8vw, 110px);
}
.contact-info { display: flex; flex-direction: column; justify-content: center; }
.contact h2 { max-width: 780px; }

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
}
.contact-address svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.map-wrap {
  position: relative;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(214, 163, 68, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: border-color 300ms, box-shadow 300ms;
}
.map-wrap:hover {
  border-color: rgba(214, 163, 68, 0.55);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
}
.map-wrap iframe { display: block; }

.map-cta {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(5, 4, 3, 0.88);
  border: 1px solid rgba(214, 163, 68, 0.45);
  border-radius: 6px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: background 200ms, transform 200ms, box-shadow 200ms;
  z-index: 2;
}
.map-cta:hover {
  background: rgba(214, 163, 68, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ─── Footer ──────────────────────────────────────────────────── */
footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 250, 240, 0.55);
  background: #050403;
  border-top: 1px solid rgba(214, 163, 68, 0.18);
  font-size: 14px;
}
footer > span:nth-child(2) {
  justify-self: center;
  text-align: center;
}
.footer-socials {
  display: flex;
  gap: 10px;
  justify-self: end;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: rgba(255, 250, 240, 0.55);
  border: 1px solid rgba(214, 163, 68, 0.2);
  transition: color 200ms, border-color 200ms, transform 200ms;
}
.footer-socials a:hover {
  color: var(--gold-soft);
  border-color: rgba(214, 163, 68, 0.5);
  transform: translateY(-3px);
}

/* ─── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 4, 3, 0.96);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(214, 163, 68, 0.22);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  transition: opacity 200ms ease, transform 200ms ease;
  user-select: none;
}
.lightbox-img.is-switching {
  opacity: 0;
  transform: scale(0.97);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(214, 163, 68, 0.28);
  color: var(--gold-soft);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: background 180ms, transform 180ms;
}
.lightbox-close:hover {
  background: rgba(214, 163, 68, 0.15);
  transform: scale(1.1);
}
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 163, 68, 0.28);
  color: var(--gold-soft);
  cursor: pointer;
  transition: background 180ms, transform 180ms;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(214, 163, 68, 0.15);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 250, 240, 0.5);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.work-panel img { cursor: zoom-in; }

/* ─── WhatsApp FAB ────────────────────────────────────────────── */
.fab-whatsapp {
  position: fixed;
  z-index: 30;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 230ms ease, box-shadow 230ms ease;
  animation: fabPop 0.6s 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
@keyframes fabPop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .menu-toggle { display: flex; }

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

  .contact {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .map-wrap { min-height: 340px; }

  .hero-media { min-height: 0; order: 2; }
  .hero-media img { height: auto; }
  .hero-copy { border-left: 0; padding-bottom: 38px; }

  .service-grid, .brand-gallery {
    grid-template-columns: 1fr;
  }

  .work-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-panel img,
  .work-panel img:nth-child(5n + 1) { height: 340px; }
  .work-panel img:nth-child(7n + 3) { grid-column: span 1; }

  .brand-gallery img,
  .brand-gallery img:nth-child(2) { height: auto; }

  .contact-actions { margin-top: 0; }
}

@media (max-width: 560px) {
  .brand-logo { height: 38px; }

  .hero-copy { padding-top: 104px; }
  h1 { font-size: 54px; }

  .hero-actions, .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }
  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-socials { justify-self: center; }

  .gallery-cat-nav { top: 68px; }
  .gallery-cat { scroll-margin-top: 130px; }

  .work-panel { grid-template-columns: 1fr; }
  .work-panel img,
  .work-panel img:nth-child(5n + 1) { height: auto; }

  .fab-whatsapp { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
