/* ═══════════════════════════════════════════════════
   Motto Azabu — Premium WPBakery Blocks
   Mayco Agency · v1.0.0
   ═══════════════════════════════════════════════════ */

:root {
  --mab-bg: #0C0A08;
  --mab-bg-light: #141210;
  --mab-bg-card: #1A1714;
  --mab-copper: #C4956A;
  --mab-copper-light: #D4A97A;
  --mab-cream: #F5EDE4;
  --mab-cream-muted: #B8AFA5;
  --mab-border: rgba(196,149,106,0.15);
  --mab-border-hover: rgba(196,149,106,0.35);
  --mab-font-heading: 'PT Mono', monospace;
  --mab-font-body: 'Montserrat', sans-serif;
  --mab-font-jp: 'Noto Sans JP', sans-serif;
}

/* ── THEME CONTAINER OVERRIDE ── */
/* Remove Norebro's boxed layout and container constraints */
.boxed-container {
  max-width: none !important;
  margin: 0 !important;
  overflow: visible !important;
}
.page-container,
.page-container.full {
  max-width: none;
  padding: 0;
}
.page-content {
  max-width: none;
  padding: 0;
}
#main.site-main {
  max-width: none;
  padding: 0;
}
/* Hide theme title area and breadcrumbs on MAB pages */
.mab-page .header-title-box,
.mab-page .breadcrumbs {
  display: none;
}

/* ── RESET THEME INTERFERENCE ── */
/* Force no border-radius on all MAB elements (Norebro theme adds rounded corners) */
.mab-section button,
.mab-section input,
.mab-section select,
.mab-section a,
.mab-gallery__filter,
.mab-menu__download,
.mab-contacts__submit,
.mab-contacts__field input,
.mab-contacts__field select,
.mab-hero__dot,
.mab-news__tag,
.mab-footer__social,
.mab-footer button,
.mab-footer a {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

/* ── SECTION BASE ── */
.mab-section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.mab-section__label {
  font-family: var(--mab-font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mab-copper);
  margin-bottom: 8px;
  font-weight: 500;
}
.mab-section__title {
  font-family: var(--mab-font-heading);
  font-weight: 400;
  font-size: 36px;
  color: var(--mab-cream);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mab-section__title-jp {
  font-family: var(--mab-font-jp);
  font-weight: 300;
  font-size: 14px;
  color: var(--mab-cream-muted);
  opacity: 0.5;
  margin-bottom: 40px;
}

/* ── ANIMATIONS ── */
@keyframes mabFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mabFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mab-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mab-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Nested animates inside a visible parent should also be visible */
.mab-animate.is-visible .mab-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.mab-animate.is-visible .mab-animate:nth-child(1) { transition-delay: 0.05s; }
.mab-animate.is-visible .mab-animate:nth-child(2) { transition-delay: 0.1s; }
.mab-animate.is-visible .mab-animate:nth-child(3) { transition-delay: 0.15s; }
.mab-animate.is-visible .mab-animate:nth-child(4) { transition-delay: 0.2s; }
.mab-animate.is-visible .mab-animate:nth-child(5) { transition-delay: 0.25s; }
.mab-animate.is-visible .mab-animate:nth-child(6) { transition-delay: 0.3s; }
.mab-animate.is-visible .mab-animate:nth-child(7) { transition-delay: 0.35s; }

/* ══════════════════
   HERO SLIDER
   ══════════════════ */
.mab-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mab-bg);
}
.mab-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(196,149,106,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(139,104,66,0.06) 0%, transparent 50%),
    var(--mab-bg);
}
.mab-hero__lines {
  position: absolute; inset: 0; pointer-events: none;
}
.mab-hero__line {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: var(--mab-border);
}

/* Slides */
.mab-hero__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.mab-hero__slide.is-active {
  opacity: 1;
  z-index: 2;
}
.mab-hero__slide::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(12,10,8,0.6);
}
.mab-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.mab-hero__title {
  font-family: var(--mab-font-heading);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.2;
  color: var(--mab-cream);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: mabFadeUp 1s ease forwards;
}
.mab-hero__subtitle {
  font-family: var(--mab-font-heading);
  font-weight: 400;
  font-size: 16px;
  color: var(--mab-copper);
  margin-top: 20px;
  letter-spacing: 4px;
  text-transform: lowercase;
  animation: mabFadeUp 1s ease 0.2s forwards;
  opacity: 0;
}
.mab-hero__desc {
  font-family: var(--mab-font-body);
  font-size: 15px;
  font-weight: 200;
  color: var(--mab-cream-muted);
  margin-top: 24px;
  letter-spacing: 1px;
  animation: mabFadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* Dots */
.mab-hero__dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.mab-hero__dot {
  width: 32px; height: 2px;
  background: rgba(196,149,106,0.3);
  border: none; cursor: pointer;
  transition: all 0.4s;
}
.mab-hero__dot.is-active {
  background: var(--mab-copper);
  width: 48px;
}

/* ══════════════════
   ABOUT
   ══════════════════ */
.mab-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 60px;
}
.mab-about__text {
  font-family: var(--mab-font-body);
}
.mab-about__text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--mab-cream-muted);
  margin-bottom: 24px;
  font-weight: 200;
}
.mab-about__text p strong {
  color: var(--mab-cream);
  font-weight: 400;
}
.mab-about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  align-self: start;
}
.mab-about__img {
  background: var(--mab-bg-card);
  border: 1px solid var(--mab-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s;
}
.mab-about__img:hover {
  border-color: var(--mab-border-hover);
}
.mab-about__img:first-child {
  grid-row: span 2;
}
.mab-about__img:not(:first-child) {
  aspect-ratio: 1/1;
}
.mab-about__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.mab-about__img:hover img {
  transform: scale(1.03);
}
.mab-about__img span {
  font-size: 12px;
  color: var(--mab-cream-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Quote */
.mab-about__quote {
  grid-column: 1 / -1;
  margin-top: 60px;
  padding: 48px;
  border-left: 2px solid var(--mab-copper);
  background: var(--mab-bg-card);
}
.mab-about__quote blockquote {
  font-family: var(--mab-font-heading);
  font-size: 18px;
  line-height: 1.8;
  color: var(--mab-cream);
  margin: 0;
}
.mab-about__quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--mab-font-body);
  font-size: 13px;
  color: var(--mab-copper);
}

/* Facts */
.mab-about__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: var(--mab-border);
}
.mab-about__fact {
  background: var(--mab-bg);
  padding: 40px 32px;
  text-align: center;
}
.mab-about__fact-number {
  font-family: var(--mab-font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--mab-copper);
}
.mab-about__fact-label {
  font-family: var(--mab-font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mab-cream-muted);
  margin-top: 8px;
}

/* ══════════════════
   MENU
   ══════════════════ */
.mab-menu__section {
  margin-bottom: 80px;
}
.mab-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--mab-border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.mab-menu__section-title {
  font-family: var(--mab-font-heading);
  font-weight: 400;
  font-size: 22px;
  color: var(--mab-cream);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mab-menu__section-sub {
  font-family: var(--mab-font-body);
  font-size: 13px;
  color: var(--mab-cream-muted);
  letter-spacing: 1px;
}
.mab-menu__item {
  display: grid;
  grid-template-columns: 7fr 3fr;
  align-items: start;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(196,149,106,0.08);
  transition: all 0.3s;
}
.mab-menu__item:hover {
  padding-left: 12px;
  border-bottom-color: var(--mab-border);
}
.mab-menu__item-name {
  font-family: var(--mab-font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--mab-cream);
  margin-bottom: 4px;
}
.mab-menu__item-desc {
  font-family: var(--mab-font-body);
  font-size: 13px;
  color: var(--mab-cream-muted);
  font-weight: 200;
}
.mab-menu__item-price {
  font-family: var(--mab-font-heading);
  font-size: 16px;
  color: var(--mab-copper);
  white-space: nowrap;
  text-align: right;
  align-self: start;
}

/* Downloads */
.mab-menu__downloads {
  display: none; /* temporarily hidden */
  /* display: flex; */
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.mab-menu__download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 1px solid var(--mab-border);
  background: transparent;
  color: var(--mab-cream);
  font-family: var(--mab-font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.mab-menu__download:hover {
  border-color: var(--mab-copper);
  color: var(--mab-copper);
}
.mab-menu__download svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
}

/* ══════════════════
   NEWS
   ══════════════════ */
.mab-news__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.mab-news__tag {
  display: inline-block;
  font-family: var(--mab-font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mab-copper);
  border: 1px solid var(--mab-copper);
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* Featured */
.mab-news__featured {
  grid-row: span 3;
  background: var(--mab-bg-card);
  border: 1px solid var(--mab-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s;
  text-decoration: none;
  color: inherit;
}
.mab-news__featured:hover {
  border-color: var(--mab-border-hover);
}
.mab-news__featured-img {
  height: 320px;
  background: linear-gradient(135deg, rgba(196,149,106,0.15), rgba(139,104,66,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mab-news__featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.mab-news__featured:hover .mab-news__featured-img img {
  transform: scale(1.03);
}
.mab-news__featured-img span {
  font-size: 11px;
  color: var(--mab-cream-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mab-news__featured-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mab-news__featured-body h3 {
  font-family: var(--mab-font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--mab-cream);
  line-height: 1.3;
  margin-bottom: 16px;
}
.mab-news__featured-body p {
  font-family: var(--mab-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--mab-cream-muted);
  font-weight: 200;
  flex: 1;
}
.mab-news__featured-body time,
.mab-news__card time {
  display: block;
  font-size: 12px;
  color: var(--mab-cream-muted);
  opacity: 0.6;
  margin-top: 16px;
}

/* Card */
.mab-news__card {
  background: var(--mab-bg-card);
  border: 1px solid var(--mab-border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.mab-news__card:hover {
  border-color: var(--mab-border-hover);
  transform: translateY(-2px);
}
.mab-news__card h4 {
  font-family: var(--mab-font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--mab-cream);
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
}
.mab-news__card p {
  font-family: var(--mab-font-body);
  font-size: 13px;
  color: var(--mab-cream-muted);
  line-height: 1.6;
  font-weight: 200;
}

/* ══════════════════
   GALLERY
   ══════════════════ */
.mab-gallery__filters {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.mab-gallery__filter {
  background: transparent;
  border: 1px solid var(--mab-border);
  color: var(--mab-cream-muted);
  font-family: var(--mab-font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s;
}
.mab-gallery__filter:hover {
  border-color: var(--mab-copper);
  color: var(--mab-copper);
}
.mab-gallery__filter.is-active {
  background: var(--mab-copper);
  border-color: var(--mab-copper);
  color: var(--mab-bg);
}

.mab-gallery__masonry {
  columns: 3;
  column-gap: 16px;
}
.mab-gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mab-border);
  cursor: pointer;
  transition: border-color 0.3s, opacity 0.4s, transform 0.4s;
}
.mab-gallery__item.is-hidden {
  opacity: 0;
  transform: scale(0.95);
  position: absolute;
  pointer-events: none;
  height: 0;
  margin: 0;
  border: none;
  overflow: hidden;
}
.mab-gallery__item:hover {
  border-color: var(--mab-border-hover);
}
.mab-gallery__item-inner {
  background: var(--mab-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--mab-cream-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.6s;
  overflow: hidden;
}
.mab-gallery__item-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.mab-gallery__item:hover .mab-gallery__item-inner {
  transform: scale(1.03);
}
.mab-gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,8,0.7), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mab-gallery__item:hover .mab-gallery__overlay {
  opacity: 1;
}
.mab-gallery__overlay span {
  font-family: var(--mab-font-heading);
  font-size: 14px;
  color: var(--mab-cream);
  letter-spacing: 1px;
}

/* ══════════════════
   CONTACTS
   ══════════════════ */
.mab-contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 60px;
}
.mab-contacts__block {
  margin-bottom: 40px;
}
.mab-contacts__label {
  font-family: var(--mab-font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mab-copper);
  margin-bottom: 12px;
}
.mab-contacts__value {
  font-family: var(--mab-font-heading);
  font-size: 18px;
  color: var(--mab-cream);
  line-height: 1.5;
}
.mab-contacts__value a {
  color: var(--mab-cream);
  text-decoration: none;
  transition: color 0.3s;
}
.mab-contacts__value a:hover {
  color: var(--mab-copper);
}
.mab-contacts__note {
  font-family: var(--mab-font-body);
  font-size: 13px;
  color: var(--mab-cream-muted);
  margin-top: 8px;
}

/* Map */
.mab-contacts__map {
  background: var(--mab-bg-card);
  border: 1px solid var(--mab-border);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--mab-cream-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
}
.mab-contacts__map iframe {
  width: 100%; height: 100%;
  min-height: 400px;
  border: none;
}

/* Form */
.mab-contacts__form {
  margin-top: 60px;
  padding: 48px;
  border: 1px solid var(--mab-border);
  background: var(--mab-bg-card);
}
.mab-contacts__form h3 {
  font-family: var(--mab-font-heading);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mab-cream);
  margin-bottom: 32px;
}
.mab-contacts__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.mab-contacts__field label {
  display: block;
  font-family: var(--mab-font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mab-cream-muted);
  margin-bottom: 8px;
}
.mab-contacts__field input,
.mab-contacts__field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--mab-bg);
  border: 1px solid var(--mab-border);
  color: var(--mab-cream);
  font-family: var(--mab-font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.mab-contacts__field input:focus,
.mab-contacts__field select:focus {
  border-color: var(--mab-copper);
}
.mab-contacts__field input::placeholder {
  color: rgba(184,175,165,0.4);
}
.mab-contacts__submit {
  margin-top: 24px;
  padding: 16px 48px;
  background: var(--mab-copper);
  border: none;
  color: var(--mab-bg);
  font-family: var(--mab-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.mab-contacts__submit:hover {
  background: var(--mab-copper-light);
}

/* ══════════════════
   RESPONSIVE
   ══════════════════ */
@media (max-width: 1024px) {
  .mab-section { padding: 60px 0; }
  .mab-section__title { font-size: 28px; }
  .mab-hero__title { font-size: 40px; }
  .mab-gallery__masonry { columns: 2; }
  .mab-about__facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mab-section { padding: 60px 0; }
  .mab-section__title { font-size: 24px; letter-spacing: 1px; }
  .mab-hero { min-height: 500px; }
  .mab-hero__title { font-size: 28px; letter-spacing: 1px; }
  .mab-hero__subtitle { font-size: 13px; letter-spacing: 2px; }
  .mab-hero__dots { bottom: 24px; }

  .mab-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .mab-about__images { grid-template-columns: 1fr 1fr; }
  .mab-about__img:first-child { grid-row: auto; aspect-ratio: 4/3; }
  .mab-about__quote { padding: 28px; }
  .mab-about__quote blockquote { font-size: 15px; }
  .mab-about__facts { grid-template-columns: 1fr 1fr; }

  .mab-menu__header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .mab-menu__section-title { font-size: 18px; }
  .mab-menu__item { grid-template-columns: 7fr 3fr; gap: 12px; }
  .mab-menu__item-price { text-align: right; }
  .mab-menu__downloads { flex-direction: column; }
  .mab-menu__download { justify-content: center; }

  .mab-news__grid { grid-template-columns: 1fr; }
  .mab-news__featured { grid-row: auto; }
  .mab-news__featured-img { height: 200px; }

  .mab-gallery__masonry { columns: 2; column-gap: 12px; }
  .mab-gallery__item { margin-bottom: 12px; }
  .mab-gallery__filters { gap: 6px; }
  .mab-gallery__filter { padding: 8px 16px; font-size: 11px; }

  .mab-contacts__grid { grid-template-columns: 1fr; gap: 32px; }
  .mab-contacts__map { min-height: 280px; }
  .mab-contacts__form { padding: 28px; }
  .mab-contacts__form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .mab-section { padding: 60px 0; }
  .mab-hero__title { font-size: 22px; }
  .mab-gallery__masonry { columns: 1; }
  .mab-about__images { grid-template-columns: 1fr; }
  .mab-about__img:first-child { grid-row: auto; }
  .mab-about__facts { grid-template-columns: 1fr; }
}

/* ══════════════════
   NOISE OVERLAY
   ══════════════════ */
.mab-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ══════════════════
   FOOTER
   ══════════════════ */
.mab-footer {
  border-top: 1px solid var(--mab-border);
  padding: 48px;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.mab-footer__logo {
  cursor: pointer;
  text-decoration: none;
}
.mab-footer__logo img {
  height: 28px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.mab-footer__logo:hover img {
  opacity: 1;
}
.mab-footer__logo span {
  font-family: var(--mab-font-heading);
  font-size: 16px;
  color: var(--mab-cream);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}
.mab-footer__socials {
  display: flex;
  gap: 20px;
}
.mab-footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--mab-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mab-cream-muted);
  font-family: var(--mab-font-body);
  font-size: 11px;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
  text-decoration: none;
}
.mab-footer__social:hover {
  border-color: var(--mab-copper);
  color: var(--mab-copper);
}
.mab-footer__copy {
  font-family: var(--mab-font-body);
  font-size: 12px;
  color: var(--mab-cream-muted);
  opacity: 0.5;
}

/* ── FOOTER RESPONSIVE ── */
@media (max-width: 900px) {
  .mab-footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 48px 24px;
  }
}


