/* MAHK Premium Store — light theme v3 */
/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #ffffff;
  --bg-subtle:    #f7f7f8;
  --bg-card:      #ffffff;
  --bg-elevated:  #f3f4f6;
  --border:       #e8eaed;
  --border-strong:#d1d5db;
  --text:         #111827;
  --text-muted:   #6b7280;
  --accent:       #8b6914;
  --accent-2:     #a67c00;
  --accent-soft:  #faf6ed;
  --accent-glow:  rgba(139, 105, 20, 0.08);
  --instagram:    linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --radius:       8px;
  --radius-lg:    12px;
  --font:         'DM Sans', system-ui, sans-serif;
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-royal:   'Cinzel', Georgia, serif;
  --shadow-sm:    0 1px 2px rgba(17, 24, 39, 0.04);
  --shadow-md:    0 8px 30px rgba(17, 24, 39, 0.06);
  --transition:   0.2s ease;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── Typography helpers ───────────────────────────────────── */
.gradient-text {
  color: var(--text);
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 52ch;
  line-height: 1.7;
}

.section-header--center {
  text-align: center;
}
.section-header--center .section-desc {
  margin-inline: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: #1f2937;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--outline:hover {
  background: var(--bg-subtle);
  border-color: var(--text-muted);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--bg-subtle);
  color: var(--text);
}

.btn--instagram {
  background: var(--instagram);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
}
.btn--instagram:hover { opacity: 0.92; }

.btn--sm { padding: 0.5rem 0.9rem; font-size: 0.82rem; }

.icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Header ───────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.logo__brand {
  font-family: var(--font-royal);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.logo__text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1.15;
}

.logo__text em,
.logo__suffix {
  font-family: var(--font);
  font-style: normal;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .logo__text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }
}

@media (max-width: 480px) {
  .logo__brand { font-size: 1.15rem; }
  .logo__text em,
  .logo__suffix { font-size: 0.72rem; }
}

.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav a:hover { color: var(--text); }

@media (max-width: 768px) {
  .nav { display: none; }
  .header__cta span { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 8.5rem 0 5rem;
  background: var(--bg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  background: var(--accent-soft);
  border: 1px solid #ede4cf;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1.1rem;
  letter-spacing: -0.03em;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
  .hero__lead { margin-inline: auto; }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: 260px;
  padding: 10px;
  background: #fff;
  border-radius: 32px;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}

.phone-mockup__screen {
  background: var(--bg-subtle);
  border-radius: 24px;
  padding: 1rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Construction scene inside phone */
.build-site {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.build-site__banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1200;
  background: #f5c842;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
}

.build-site__banner > span:last-child {
  position: relative;
  z-index: 1;
}

.build-site__stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(0, 0, 0, 0.12) 6px,
    rgba(0, 0, 0, 0.12) 12px
  );
  animation: stripe-scroll 1.2s linear infinite;
}

@keyframes stripe-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(12px); }
}

.build-site__scene {
  position: relative;
  flex: 1;
  min-height: 200px;
  border-radius: 10px;
  background: #eef0f3;
  border: 1px solid var(--border);
  overflow: hidden;
}

.build-scaffold {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  opacity: 0.35;
}

.build-scaffold span {
  width: 3px;
  height: 72px;
  background: linear-gradient(180deg, #d4af37, #665522);
  border-radius: 2px;
}

.build-scaffold span:nth-child(2) { height: 58px; margin-top: 14px; }

.build-worker {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 150px;
  height: auto;
  transform: translateX(-50%);
  animation: worker-bob 2.4s ease-in-out infinite;
}

.build-worker__shadow {
  animation: shadow-pulse 0.9s ease-in-out infinite;
  transform-origin: center;
}

.build-worker__arm {
  transform-origin: 108px 113px;
  animation: hammer-swing 0.9s ease-in-out infinite;
}

.build-worker__hammer {
  transform-origin: 142px 118px;
  animation: hammer-hit 0.9s ease-in-out infinite;
}

@keyframes worker-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(3px); }
}

@keyframes hammer-swing {
  0%, 100% { transform: rotate(0deg); }
  40% { transform: rotate(-38deg); }
  55% { transform: rotate(8deg); }
}

@keyframes hammer-hit {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(14deg) translateY(2px); }
  55% { transform: rotate(-6deg); }
}

@keyframes shadow-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.35; }
  50% { transform: scaleX(0.82); opacity: 0.22; }
}

.build-blocks {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: flex-end;
}

.build-block {
  width: 28px;
  background: linear-gradient(135deg, #3a3020, #2a2418);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 3px;
  animation: block-stack 2.4s ease-in-out infinite;
}

.build-block--1 { height: 22px; animation-delay: 0s; }
.build-block--2 { height: 30px; animation-delay: 0.3s; }
.build-block--3 {
  height: 38px;
  animation-delay: 0.6s;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), #2a2418);
}

@keyframes block-stack {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.build-sparks {
  position: absolute;
  bottom: 52px;
  left: 58%;
  width: 30px;
  height: 30px;
  pointer-events: none;
}

.build-sparks span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f5c842;
  opacity: 0;
  animation: spark-fly 0.9s ease-out infinite;
}

.build-sparks span:nth-child(1) { animation-delay: 0.48s; --sx: -14px; --sy: -18px; }
.build-sparks span:nth-child(2) { animation-delay: 0.5s; --sx: 8px; --sy: -22px; }
.build-sparks span:nth-child(3) { animation-delay: 0.52s; --sx: 16px; --sy: -10px; }
.build-sparks span:nth-child(4) { animation-delay: 0.5s; --sx: -6px; --sy: -26px; }
.build-sparks span:nth-child(5) { animation-delay: 0.54s; --sx: 2px; --sy: -30px; }

@keyframes spark-fly {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  45% { opacity: 0; }
  50% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0.2); }
}

.build-site__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.build-site__progress-pct {
  color: var(--accent);
  font-weight: 700;
}

.build-site__progress-bar {
  height: 5px;
  background: var(--bg-elevated);
  border-radius: 100px;
  overflow: hidden;
  border: none;
}

.build-site__progress-fill {
  height: 100%;
  width: 72%;
  border-radius: 100px;
  background: var(--text);
  animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {
  0%, 100% { width: 68%; opacity: 0.9; }
  50% { width: 76%; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .build-site__stripe,
  .build-worker,
  .build-worker__arm,
  .build-worker__hammer,
  .build-worker__shadow,
  .build-block,
  .build-sparks span,
  .build-site__progress-fill {
    animation: none;
  }
}

.phone-mockup__coming {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.phone-mockup__status {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0 0.25rem;
}

.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.5s ease infinite;
}

.glow { display: none; }

/* ── About / Features ─────────────────────────────────────── */
.about {
  padding: 5rem 0;
  background: var(--bg-subtle);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .features { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}
.feature-card:hover {
  border-color: var(--border-strong);
}

.feature-card__icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
  color: var(--accent);
}
.feature-card__icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── Visit / Contact ──────────────────────────────────────── */
.visit {
  padding: 5rem 0;
  background: var(--bg);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .visit__grid { grid-template-columns: 1fr; }
}

.visit__details {
  display: grid;
  gap: 1rem;
}

.visit-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}

.visit-card:hover {
  border-color: var(--border-strong);
}

.visit-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
}

.visit-card__icon svg {
  width: 22px;
  height: 22px;
}

.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.visit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.visit-card__link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.visit-card__link:hover {
  text-decoration: underline;
}

.visit-card__btn {
  display: inline-flex;
  margin-top: 0.75rem;
}

.visit-hours {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.visit-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
}

.visit-hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.visit-hours li span:first-child {
  color: var(--text);
  font-weight: 500;
}

.visit-card--google {
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-subtle);
}

.visit-card__google-head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.visit-card__google-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.visit__map {
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery {
  padding: 5rem 0;
  background: var(--bg-subtle);
}

.instagram-frame {
  margin-top: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.instagram-frame::before {
  display: none;
}

.instagram-frame__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
}

.instagram-frame__profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.instagram-frame__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: var(--instagram);
}

.instagram-frame__profile strong {
  display: block;
  font-size: 0.95rem;
}
.instagram-frame__profile span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--border);
}

@media (min-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background: var(--bg-elevated);
  text-decoration: none;
}

.gallery__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.gallery__item:hover .gallery__thumb {
  transform: scale(1.03);
}

.gallery__embed-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-elevated);
}

.gallery__embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 658px;
  height: 880px;
  border: 0;
  transform: scale(0.52);
  transform-origin: top left;
  pointer-events: none;
}

@media (max-width: 600px) {
  .gallery__embed-wrap iframe {
    width: 540px;
    height: 720px;
    transform: scale(0.48);
  }
}

.gallery__badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.gallery__badge svg {
  width: 10px;
  height: 10px;
}

.gallery__item--cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.gallery__cta-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  color: var(--text);
}

.gallery__cta-inner svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.gallery__cta-inner strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.gallery__cta-inner span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__item--cta:hover .gallery__overlay { opacity: 0; }

.gallery__note {
  padding: 1.25rem 1.75rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.gallery__note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.gallery__note a:hover { text-decoration: underline; }

/* ── Notify ───────────────────────────────────────────────── */
.notify {
  padding: 4rem 0 5rem;
  background: var(--bg);
}

.notify__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.notify__card::before {
  display: none;
}

@media (max-width: 768px) {
  .notify__card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .notify__form { justify-content: center; }
}

.notify__form {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.notify__form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
}
.notify__form input::placeholder { color: var(--text-muted); }
.notify__form input:focus { border-color: var(--text); }

.notify__message {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent);
  min-height: 1.4em;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 1rem;
}

.footer__brand .logo__brand {
  font-size: 1.15rem;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links a {
  display: inline-flex;
  padding: 0.6rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--text); }
.footer__links svg { width: 22px; height: 22px; }

.footer__partner {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer__partner strong {
  color: var(--text);
  font-weight: 600;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
}
