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

:root {
  --black: #111111;
  --white: #fafafa;
  --gray-50: #f5f5f5;
  --gray-100: #ebebeb;
  --gray-200: #d4d4d4;
  --gray-300: #ababab;
  --gray-400: #888888;
  --gray-500: #6b6b6b;
  --gray-600: #4a4a4a;
  --gray-700: #333333;
  --gray-800: #222222;
  --gray-900: #1a1a1a;

  --font-heading: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--black);
  color: var(--white);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow 0.4s;
}
header.scrolled {
  box-shadow: 0 1px 0 var(--gray-200);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 1001;
}
.nav-logo-img {
  height: 32px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--black);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover,
.nav-links a:focus {
  color: var(--black);
}
.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.78rem !important;
  background: var(--black);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  transition:
    background 0.3s,
    transform 0.2s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--gray-700);
  transform: scale(1.03);
}

/* Mobile toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
  transition:
    transform 0.3s var(--ease-out-expo),
    opacity 0.3s;
  display: block;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  transition: opacity 0.3s;
}
.mobile-nav a:hover {
  opacity: 0.5;
}

/* ============================================================
   HERO — LIGHT
   ============================================================ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Background image — the actual ETG espresso truck */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-bg.png") center 40% / cover no-repeat;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-logo {
  width: 88px;
  height: auto;
  margin: 0 auto 2.5rem;
  animation: logoIn 1s var(--ease-out-expo) 0.2s both;
  position: relative;
  z-index: 2;
}
.hero-logo img {
  width: 100%;
  height: auto;
}
@keyframes logoIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 1.25rem;
  animation: textIn 1s var(--ease-out-expo) 0.4s both;
}
.hero h1 span {
  color: var(--gray-400);
  font-weight: 300;
}

@keyframes textIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 400;
  color: var(--gray-700);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: textIn 1s var(--ease-out-expo) 0.6s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: textIn 1s var(--ease-out-expo) 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline-dark:hover {
  border-color: var(--black);
  transform: translateY(-2px);
  background: rgba(17, 17, 17, 0.08);
  color: var(--black);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gray-600);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}
.btn-light:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.5s infinite 2.5s;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}
.hero-scroll svg {
  width: 18px;
  height: 18px;
  color: var(--gray-300);
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 6rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-50);
}
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(145deg, var(--gray-50) 0%, var(--gray-100) 100%);
}
.about-image-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--gray-300);
}
.about-image-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text p {
  font-size: 1.02rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-100);
}
.about-stat strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.25rem;
}
.about-stat span {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

/* ============================================================
   MENU
   ============================================================ */
.menu-section-wrapper {
  padding: 6rem 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

/* Coffee beans background texture */
.menu-section-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/coffee_beans.jpg") center/cover no-repeat;
  filter: grayscale(1) contrast(1.15);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* Subtle wash to soften edges */
.menu-section-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.menu-section-wrapper > .container {
  position: relative;
  z-index: 1;
}

.menu-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.flavor-cta {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.menu-tab {
  background: transparent;
  border: 1.5px solid black;
  color: var(--gray-500);
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.menu-tab:hover {
  border-color: var(--gray-400);
  color: var(--black);
}
.menu-tab.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-item {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.3s;
}
.menu-item:hover {
  background: var(--gray-50);
}
.menu-item-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.menu-item-price {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--gray-700);
}

.menu-panel {
  display: none;
}
.menu-panel.active {
  display: grid;
}

.menu-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: black;
}

/* ============================================================
   SHOP / PRODUCTS
   ============================================================ */
.shop {
  padding: 6rem 0;
  background: var(--white);
}

.shop-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3.5rem;
}
.shop-header p {
  font-size: 1rem;
  color: var(--gray-500);
  margin-top: -0.5rem;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-card {
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  background: var(--white);
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.product-image {
  aspect-ratio: 1;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.product-image svg {
  width: 48px;
  height: 48px;
  color: var(--gray-300);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.product-badge.low-stock {
  background: var(--gray-600);
}

.product-info {
  padding: 1.25rem;
}
.product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.product-meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.product-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
}

.shop-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ============================================================
   BEANS BANNER
   ============================================================ */
.beans-banner {
  padding: 5rem 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.beans-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.beans-banner .container {
  position: relative;
  z-index: 1;
}
.beans-banner .section-label {
  color: var(--gray-500);
}
.beans-banner .section-heading {
  color: var(--white);
}
.beans-banner p {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.beans-banner .btn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   HOURS & LOCATION
   ============================================================ */
.location {
  padding: 6rem 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.hours-table tr {
  border-bottom: 1px solid var(--gray-100);
}
.hours-table td {
  padding: 0.85rem 0;
  font-size: 0.95rem;
}
.hours-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 500;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--gray-500);
}
.hours-table .closed td:last-child {
  color: var(--gray-300);
}

.location-address {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 8px;
}
.location-address p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.location-address a {
  font-weight: 600;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 1;
  position: relative;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 768px) {
  .map-wrapper {
    aspect-ratio: auto;
    min-height: 420px;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 6rem 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.contact-detail svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
}
.contact-detail a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
}
@media (min-width: 768px) {
  .contact-form {
    padding: 2.5rem;
  }
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c00;
}

.btn-submit {
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
}
.btn-submit:active {
  transform: translateY(0);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success.show {
  display: block;
}
.form-success svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gray-700);
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 3rem 0;
  background: var(--black);
  color: var(--gray-400);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-brand img {
  height: 24px;
  width: auto;
  filter: invert(1) brightness(2);
}
.footer-brand span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.footer-social a:hover {
  border-color: var(--gray-400);
  background: rgba(255, 255, 255, 0.05);
}
.footer-social a svg {
  width: 15px;
  height: 15px;
  color: var(--gray-400);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-600);
}
