/* MiDa's Art Gallery — Coming Soon
   Palette: white on black (brief) · Font: Raleway · Mobile-first */

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

:root {
  --bg: #FFF;
  --fg: #252525;
  --muted: #252525CC;
  --line: #25252580;
  --accent: #fff;
  --max: 1100px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Raleway', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; transition: opacity .25s ease, border-color .25s ease; }
a:hover { opacity: .65; }

img { display: block; max-width: 100%; height: auto; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--pad);
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  min-height: 100vh;
}

/* Logo */
.logo { display: flex; justify-content: flex-start; }
.logo img {
  width: clamp(140px, 22vw, 220px);
  opacity: .95;
}

/* Hero */
.hero {
  align-self: center;
  max-width: 640px;
}

.eyebrow {
  font-size: .8rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-weight: 200;
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.cta {
  display: inline-block;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: .02em;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--fg);
}
.cta:hover { opacity: 1; border-bottom-color: var(--muted); }

/* Contacts footer */
.contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.block .label {
  display: block;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}

.block p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.7;
}

.block a {
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.block a:hover { border-bottom-color: var(--muted); opacity: 1; }

/* Copyright */
.copy {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding-top: 1rem;
}

/* Tablet+ */
@media (min-width: 640px) {
  .contacts {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
