:root {
  --bg: #111213;
  --text: #f3f1ee;
  --muted: #b3b3af;
  --line: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.5;
}

.card {
  width: min(100%, 600px);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin: 0 0 1.1rem;
  max-width: 116px;
  width: 100%;
  height: auto;
  background: #111213;
}

.brand-name {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text);
  text-align: center;
}

.tagline {
  margin: 0.5rem 0 0.35rem;
  color: #a8a4a0;
  font-size: clamp(0.52rem, 1.25vw, 0.66rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
  font-family: "Cormorant Garamond", Georgia, serif;
  max-width: 28rem;
  font-weight: 600;
}

.tagline-break {
  display: inline;
}

.subtitle,
.location {
  font-size: clamp(0.42rem, 1.8vw, 0.72rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #a0a0a0;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
  font-weight: 600;
  white-space: nowrap;
}

.maker-mark {
  margin: 0.1rem 0 0;
  color: rgba(243, 241, 238, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.footer {
  width: min(100%, 420px);
  margin-top: 0.75rem;
  padding: 0.9rem 1.1rem 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
}

.intro {
  font-style: italic;
  font-size: 0.88rem;
  color: #d8d8d8;
  letter-spacing: 0.02em;
  margin: 0.85rem 0;
  white-space: nowrap;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.email-link {
  font-size: 1.1rem;
  color: #f5f5f5;
  text-decoration: none;
  letter-spacing: 0.03em;
  font-family: "Cormorant Garamond", Georgia, serif;
  margin-top: 0;
  line-height: 1.2;
}

.appointments {
  font-size: 0.85rem;
  color: #8c8c8c;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.status {
  font-style: italic;
  color: #bcbcbc;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-top: 1.2rem;
  text-transform: none;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.footer a:hover,
.footer a:focus-visible {
  color: #f0efe9;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  body {
    padding: 22px 18px;
    min-height: 100vh;
  }

  .brand {
    letter-spacing: 0.16em;
  }

  .brand-name {
    letter-spacing: 0.08em;
    line-height: 0.88;
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .tagline {
    width: 100%;
    max-width: 100%;
    font-size: clamp(0.55rem, 2.4vw, 0.72rem);
    letter-spacing: 0.04em;
    white-space: normal;
    line-height: 1.15;
  }

  .tagline-break {
    display: block;
    margin-top: 0.15rem;
  }

  .maker-mark {
    max-width: 16rem;
    white-space: normal;
    letter-spacing: 0.06em;
    line-height: 1.25;
    font-size: 0.56rem;
  }

  .footer {
    width: min(100%, 100%);
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .intro {
    white-space: normal;
    font-size: 0.72rem;
    line-height: 1.2;
    max-width: 15.5rem;
  }

  .appointments {
    max-width: 15.5rem;
    white-space: normal;
    line-height: 1.2;
    font-size: 0.72rem;
  }

  .email-link {
    font-size: 1rem;
  }

  .status {
    max-width: 14rem;
    white-space: normal;
    line-height: 1.2;
    font-size: 0.7rem;
  }

  .service-item {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 18px 14px;
    min-height: 100vh;
  }

}
