/* privatechefalanya.com — holding page */

:root {
  --bg:     #F0EFEC;   /* matches the logo's own background */
  --ink:    #22231F;
  --muted:  #6F706A;
  --line:   #D6D5CF;
  --font:   "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page { width: 100%; max-width: 30rem; text-align: center; }

.logo {
  display: block;
  width: clamp(13rem, 52vw, 18rem);
  height: auto;
  margin: 0 auto;
}

.name {
  margin: 1.5rem 0 0;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -.01em;
}

.role {
  margin: .4rem 0 0;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.rule {
  width: 3rem;
  margin: 2rem auto;
  border: 0;
  border-top: 1px solid var(--line);
}

.notice {
  margin: 0;
  font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem);
  font-weight: 400;
}

.ig {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 2.25rem;
  padding: .8rem 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}
.ig svg { fill: currentColor; flex: none; }
.ig:hover, .ig:focus-visible { background: var(--ink); color: var(--bg); }

.foot {
  margin: 3rem 0 0;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .001ms !important; }
}
