/* MMMJAM Enterprises — navy / black / white */

:root {
  --navy: #0b1f3a;
  --navy-deep: #061428;
  --navy-mid: #16325a;
  --black: #05070a;
  --white: #f7f8fa;
  --white-muted: #c5ccd6;
  --line: rgba(247, 248, 250, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space: clamp(1rem, 4vw, 2.5rem);
  --max: 68rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

a:hover {
  color: var(--white);
}

/* Atmosphere */

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(22, 50, 90, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(11, 31, 58, 0.7), transparent 50%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--black) 45%, var(--navy-deep) 100%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
  pointer-events: none;
}

/* Layout */

.wrap {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

/* Header */

.site-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--white);
}

.brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  color: var(--white-muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
}

/* Hero */

.hero {
  padding: clamp(4rem, 14vh, 7.5rem) 0 clamp(3.5rem, 10vh, 5.5rem);
  min-height: min(88vh, 42rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

.hero-brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--white-muted);
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--white-muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn-primary {
  background: var(--white);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: var(--white-muted);
  color: var(--navy-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--white-muted);
  color: var(--white);
}

/* Sections */

.section {
  padding: clamp(3rem, 8vh, 5rem) 0;
  border-top: 1px solid var(--line);
}

.section-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.section p {
  margin: 0;
  max-width: 36rem;
  color: var(--white-muted);
}

.suite-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 28rem;
}

.suite-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(11, 31, 58, 0.55);
  font-size: 0.95rem;
}

.suite-list strong {
  font-weight: 600;
  color: var(--white);
}

.suite-list span {
  color: var(--white-muted);
}

/* Page (interior) */

.page-hero {
  padding: clamp(3rem, 10vh, 5rem) 0 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0;
  max-width: 36rem;
  color: var(--white-muted);
}

.prose {
  padding-bottom: clamp(3rem, 8vh, 5rem);
  max-width: 40rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2rem 0 0.65rem;
}

.prose p,
.prose li {
  color: var(--white-muted);
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.prose a {
  color: var(--white);
}

.contact-block {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-block dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin: 0 0 0.35rem;
}

.contact-block dd {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-family: var(--font-display);
}

.contact-block dd:last-child {
  margin-bottom: 0;
}

.contact-block a {
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--white-muted);
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: var(--white-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

/* Motion */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(0.85rem);
    animation: rise 0.85s var(--ease) forwards;
  }

  .reveal-delay-1 {
    animation-delay: 0.12s;
  }

  .reveal-delay-2 {
    animation-delay: 0.24s;
  }

  .reveal-delay-3 {
    animation-delay: 0.36s;
  }

  @keyframes rise {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .btn {
    will-change: transform;
  }
}

@media (max-width: 520px) {
  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }
}
