/* Dirty Little Store™ — closure page (brand tokens from live site) */

:root {
  --color-bg: #fffaf5;
  --color-text: #0c0c0c;
  --color-accent: #b50000;
  --color-dim: #ffeddc;
  --color-border: #e8e8e1;
  --color-footer-bg: #0c0c0c;
  --color-footer-text: #ffffff;
  --font-display: "Asul", serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --content-max: 36rem;
  --shadow-soft: 0 4px 24px rgba(12, 12, 12, 0.06);
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 3rem;
}

.closure-card {
  width: 100%;
  max-width: var(--content-max);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2.5rem 2rem 2.25rem;
  box-shadow: var(--shadow-soft);
}

.brand-logo {
  display: block;
  width: min(220px, 72vw);
  height: auto;
  margin: 0 auto 1.75rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  color: var(--color-accent);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border) 20%,
    var(--color-accent) 50%,
    var(--color-border) 80%,
    transparent
  );
}

.divider__mark {
  flex-shrink: 0;
  opacity: 0.9;
}

.closure-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  line-height: 1.35;
  margin: 0 0 1rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.closure-body {
  margin: 0;
  font-size: 1rem;
  text-align: center;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.closure-body + .closure-body {
  margin-top: 1.25rem;
}

.closure-contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.95rem;
  text-align: center;
}

.closure-contact a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.closure-contact a:hover {
  text-decoration-thickness: 2px;
}

.closure-contact a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.site-footer {
  margin-top: auto;
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer-logo {
  display: block;
  width: min(160px, 50vw);
  height: auto;
  margin: 0 auto 1rem;
  opacity: 0.95;
}

.footer-legal {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.88;
  line-height: 1.5;
}

@media (min-width: 600px) {
  .closure-card {
    padding: 3rem 2.5rem 2.75rem;
  }
}
