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

:root {
  --bg: #1a1210;
  --bg-soft: #241815;
  --surface: rgba(255, 240, 232, 0.05);
  --border: rgba(255, 210, 190, 0.12);
  --text: #fff5f0;
  --text-muted: #c9a99a;
  --rose: #e8849a;
  --rose-deep: #c85a78;
  --gold: #e8b86d;
  --gold-soft: rgba(232, 184, 109, 0.18);
  --rose-soft: rgba(232, 132, 154, 0.16);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(160deg, var(--bg) 0%, #120d0c 55%, #1f1412 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  max-height: 100dvh;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 5vw, 4rem);
  overflow: hidden;
}

.bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 20%, var(--rose-soft) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, var(--gold-soft) 0%, transparent 30%);
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.bg-glow--rose {
  top: -120px;
  left: -80px;
  background: rgba(232, 132, 154, 0.18);
}

.bg-glow--gold {
  bottom: -140px;
  right: -60px;
  background: rgba(232, 184, 109, 0.12);
}

.header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.logo__icon {
  width: 40px;
  height: 40px;
  color: var(--rose);
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.logo__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.header__contact {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.header__contact:hover {
  color: var(--rose);
}

.main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(0.75rem, 2vh, 1.25rem);
  min-height: 0;
}

.badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(232, 184, 109, 0.28);
  border-radius: 100px;
}

.title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 14ch;
}

.subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--rose);
}

.lead {
  max-width: 36rem;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.5vw, 1rem);
  list-style: none;
  width: min(100%, 760px);
  margin-top: clamp(0.25rem, 1vh, 0.75rem);
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: clamp(0.85rem, 2vw, 1.1rem) 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.service__icon {
  display: flex;
  width: 30px;
  height: 30px;
  color: var(--rose);
}

.service__icon svg {
  width: 100%;
  height: 100%;
}

.service__label {
  font-size: clamp(0.68rem, 1.4vw, 0.8rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-muted);
}

.contact-card {
  margin-top: clamp(0.25rem, 1vh, 0.5rem);
  padding: 1rem 1.35rem;
  background: linear-gradient(135deg, rgba(232, 132, 154, 0.12), rgba(232, 184, 109, 0.08));
  border: 1px solid rgba(232, 132, 154, 0.22);
  border-radius: 18px;
}

.contact-card__title {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.contact-card__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.contact-card__links a {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card__links a:hover {
  color: var(--rose);
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__domain {
  font-weight: 700;
  color: var(--text);
}

.footer__sep {
  opacity: 0.4;
}

@media (max-width: 760px) {
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header__contact {
    display: none;
  }
}

@media (max-width: 420px) {
  .page {
    padding: 1rem;
  }

  .services {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .service {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-height: 720px) {
  .main {
    gap: 0.65rem;
  }

  .contact-card {
    margin-top: 0;
    padding: 0.85rem 1rem;
  }
}
