/* Dots cafe — minimal single-page site */

:root {
  --bg: #0d100a;
  --bg-dark: #020202;
  --bg-dark: #;
  --strip: #EADFC9;
  --text: #cab272;
  --accent: #cab272;
}

*,
*::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;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Mono", "SF Mono", Consolas, monospace;
  font-weight: 300;
  line-height: 1.5;
}

/* Top accent strip */
.top-strip {
  background: var(--accent);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  padding: 2rem 0
}

.top-strip .announcement {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 9rem;
  text-align: center;
  width: 100%;
}

.page-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.logo-wrap {
  margin-bottom: 2rem;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logo {
  height: auto;
  width: 100%;
  max-width: 203px;
  color: var(--accent);
  display: inline-block;
}

.tagline {
  margin: 0 0 3.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.contact {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.contact .tagline a, a:visited {
  color: inherit;
  text-decoration: none;
}

.contact .tagline a:hover {
  text-decoration: underline;
}

.ig-link {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
  margin-top: 0.25rem;
}

.ig-link:hover {
  opacity: 0.85;
}

.ig-icon {
  display: block;
}

/* Footer — address + newsletter, pinned to viewport bottom */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  background: var(--bg-dark);
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
}

.site-footer .contact {
  margin-bottom: 1.25rem;
}

.newsletter-wrap {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.newsletter-label {
  display: block;
  font-family: "IBM Plex Mono", "SF Mono", Consolas, monospace;
  font-size: .75rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 20rem;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  min-width: 12rem;
  padding: 0.6rem 0.75rem;
  font-family: "IBM Plex Mono", "SF Mono", Consolas, monospace;
  font-size: 0.9rem;
  color: var(--text);
  background: color-mix(in srgb, var(--strip) 10%, transparent);
  border: none;
  border-radius: 4px;
  outline: none;
}

.newsletter-input::placeholder {
  color: var(--text);
  opacity: 0.6;
}

.newsletter-input:focus {
  opacity: 1;
}

.newsletter-submit {
  padding: 0.6rem 1.25rem;
  font-family: "IBM Plex Mono", "SF Mono", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--bg);
  background: var(--text);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-submit:hover {
  opacity: 0.95;
}

@media (min-width: 480px) {
  .top-strip .announcement {
    font-size: 0.75rem;
  }

  .tagline {
    font-size: .9rem;
    line-height: 1.7;
  }

  .contact {
    font-size: 12px;
  }
}
