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

/* ── VARIABLES ─────────────────────────────────────── */
:root {
  --ink:    #081F5C;
  --cream:  #f6f4ef;
  --muted:  #6b7a99;
  --border: rgba(8,31,92,0.12);
}

/* ── BASE ──────────────────────────────────────────── */
html, body {
  height: 100%;
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── LAYOUT ────────────────────────────────────────── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ───────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-logo:hover .logo-mark {
  background: var(--ink);
  color: var(--cream);
}

.logo-name {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-links li {
  animation: fadeDown 0.6s ease both;
}
.nav-links li:nth-child(1) { animation-delay: 0.15s; }
.nav-links li:nth-child(2) { animation-delay: 0.26s; }
.nav-links li:nth-child(3) { animation-delay: 0.37s; }

.nav-links a {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--ink);
  transition: width 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 56px 0;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* LEFT — text */
.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease both 0.2s;
}

.hero-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 7.5vw, 30px);
  line-height: 0.93;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-transform: uppercase;
}

.hero-name .line {
  display: block;
  overflow: hidden;
}

.hero-name .line span {
  display: block;
  animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-name .line:nth-child(1) span { animation-delay: 0.25s; }
.hero-name .line:nth-child(2) span { animation-delay: 0.38s; }

.hero-divider {
  width: 44px;
  height: 1px;
  background: var(--ink);
  opacity: 0.22;
  margin: 30px 0;
  animation: fadeUp 0.8s ease both 0.55s;
}

.hero-desc {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink);
  opacity: 0.6;
  max-width: 340px;
  animation: fadeUp 0.8s ease both 0.65s;
}

.hero-cta {
  margin-top: 44px;
  animation: fadeUp 0.8s ease both 0.78s;
}

.hero-cta a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  text-decoration: none;
  padding: 15px 36px;
  border: 1px solid var(--ink);
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color 0.38s ease;
}

.hero-cta a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateX(-102%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta a:hover { color: var(--ink); }
.hero-cta a:hover::before { transform: translateX(0); }
.hero-cta a span { position: relative; z-index: 1; }

/* RIGHT — image */
.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-left: 32px;
  animation: fadeIn 1.1s ease both 0.4s;
}

.image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  opacity: 0.14;
  pointer-events: none;
  z-index: 2;
}

.image-frame::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 55%;
  height: 55%;
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  opacity: 0.14;
  pointer-events: none;
  z-index: 2;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  background: rgba(8,31,92,0.04);
  border: 1px dashed rgba(8,31,92,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.placeholder-img svg { opacity: 0.18; }

.placeholder-img p {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.3;
}

/* ── COMING SOON ───────────────────────────────────── */
.coming-soon {
  padding: 44px 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  animation: fadeUp 0.8s ease both 1s;
}

.cs-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.cs-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.cs-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.4;
  animation: blink 1.8s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.22s; }
.dot:nth-child(3) { animation-delay: 0.44s; }

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50%       { opacity: 0.9;  transform: scale(1.35); }
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .logo-name { display: none; }
  .nav-links { gap: 22px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 0;
    gap: 48px;
  }

  .hero-image {
    justify-content: center;
    padding-left: 0;
    order: -1;
  }

  .image-frame { max-width: 260px; }
  .coming-soon { padding: 36px 24px; }
}
