:root {
  --ink: #2a2323;
  --muted: rgba(42,35,35,0.65);
  --rose: #e8c3c3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: rgba(232,195,195,0.55);
  color: var(--ink);
  overflow-x: hidden;
}

/* ================= NAV ================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 24px 48px;
  z-index: 100;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand {
  font-family: 'Special Elite', monospace;
  font-size: 28px;
  opacity: 0.75;
}

/* TAGLINES */
.tagline {
  display: flex;
  gap: 10px;
  font-size: 13px;
  align-items: center;
}

.tag-item {
  position: relative;
}

.tag-item a,
.menu a {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.75;
  position: relative;
}

/* underline */
.tag-item a::after,
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s ease;
  opacity: 0.5;
}

.tag-item a:hover,
.menu a:hover {
  opacity: 1;
}

.tag-item a:hover::after,
.menu a:hover::after {
  transform: scaleX(1);
}

/* tooltip */
.info {
  position: absolute;
  top: 22px;
  left: 0;
  width: 240px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  opacity: 0;
  transform: translateY(6px);
  transition: 0.25s ease;
  pointer-events: none;
}

.tag-item:hover .info {
  opacity: 1;
  transform: translateY(0);
}

/* MENU */
.menu {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

/* ================= SCROLL SYSTEM ================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= LAYOUT ================= */

.page {
  padding-top: 120px;
  padding-bottom: 120px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrap {
  width: min(420px, 85vw);
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
}

.image-home {
  height: min(550px, 85vw);
  aspect-ratio: 5/4;
  border-radius: 16px;
  overflow: hidden;
}

.image-home img{
  width: 100%;
  height: 100%;
  opacity: 1.0;
  object-fit: cover;
}


.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 900px) {
  .tagline { display: none; }
  .navbar { padding: 18px 24px; }
}