﻿:root {
  --cream: #f5f0e6;
  --cream-deep: #e4ebe9;
  --ink: #14161c;
  --ink-soft: #4a4f55;
  --gold: #c4a05a;
  --gold-hover: #ad8948;
  --teal: #3f6d74;
  --white: #fffcf7;
  --line: rgba(20, 22, 28, 0.12);
  --shadow: 0 24px 60px rgba(20, 22, 28, 0.18);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

h1,
h2,
h3,
.logo-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 0.2em 0 0.35em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 0.45em;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.35em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

code {
  font-size: 0.9em;
  background: var(--cream-deep);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 252, 247, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 252, 247, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.logo-name {
  font-size: clamp(1.05rem, 2.4vw, 1.32rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--ink);
}

.btn-nav {
  background: var(--ink);
  color: var(--cream);
  padding: 0.65rem 1.05rem;
  font-size: 0.82rem;
}

.site-nav a.btn-nav {
  color: var(--cream);
}

.site-nav a.btn-nav:hover {
  color: var(--white);
  background: #0c0e12;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(20, 22, 28, 0) 0%,
    rgba(20, 22, 28, 0.06) 48%,
    rgba(20, 22, 28, 0.28) 78%,
    rgba(20, 22, 28, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  padding: 0 0 5.25rem;
}

.hero .eyebrow {
  color: #e6c57a;
  font-weight: 600;
  text-shadow:
    0 1px 2px rgba(7, 8, 11, 0.85),
    0 2px 14px rgba(7, 8, 11, 0.55);
}

.hero h1 {
  text-shadow: 0 2px 20px rgba(28, 25, 20, 0.45);
}

.hero .lede {
  color: rgba(255, 252, 247, 0.92);
  max-width: 36rem;
  font-size: 1.08rem;
  font-weight: 300;
  text-shadow: 0 1px 14px rgba(28, 25, 20, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.feature {
  position: relative;
  background: #07080b;
  color: var(--cream);
  overflow: hidden;
  min-height: min(82vh, 780px);
  display: flex;
  align-items: center;
  padding: 5rem 0 5.5rem;
}

.feature-planet {
  position: absolute;
  right: -18%;
  top: 4%;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  background: url("images/jupiter-planet.png") center / cover no-repeat;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.78;
  filter: contrast(1.02) saturate(0.95) brightness(0.72);
  -webkit-mask-image: radial-gradient(circle at 48% 50%, #000 50%, transparent 73%);
  mask-image: radial-gradient(circle at 48% 50%, #000 50%, transparent 73%);
}

.feature-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #07080b 46%,
    rgba(7, 8, 11, 0.82) 64%,
    rgba(7, 8, 11, 0.4) 80%,
    rgba(7, 8, 11, 0.12) 92%,
    transparent 100%
  );
  pointer-events: none;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-photo {
  margin: 0;
  padding: 0;
  background: #07080b;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.feature-photo img {
  display: block;
  width: calc(100% + 2px);
  max-width: none;
  height: auto;
  margin: 0 -1px 0 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: #07080b;
  vertical-align: top;
}

.feature-copy {
  max-width: 34rem;
  padding-right: 1rem;
}

.feature-copy h2,
.feature-copy p {
  color: var(--cream);
}

.feature-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  margin: 0 0 0.7em;
}

.feature-copy > p {
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 28rem;
}

.feature-marks {
  display: flex;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
}

.feature-marks span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0 50%, 39% 35%);
}

.feature-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 2.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 160, 90, 0.38);
}

.feature-facts article {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-right: 0.6rem;
  border-right: 1px solid rgba(196, 160, 90, 0.22);
}

.feature-facts article:last-child {
  border-right: 0;
}

.feature-facts svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.35;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.feature-facts span {
  color: var(--cream);
  font-size: 0.82rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.social-proof {
  background: #07080b;
  color: var(--cream);
  padding: 3.15rem 0 3.4rem;
  border-top: 1px solid rgba(196, 160, 90, 0.22);
}

.social-proof-inner {
  text-align: center;
  max-width: 52rem;
}

.social-proof .eyebrow {
  margin-bottom: 0.85rem;
}

.social-proof h2 {
  color: var(--cream);
  font-size: clamp(1.55rem, 3.1vw, 2.35rem);
  margin: 0 auto 0.65em;
  max-width: 22ch;
}

.social-proof-lede {
  color: rgba(245, 240, 230, 0.72);
  font-weight: 300;
  font-size: 1.02rem;
  margin: 0 auto 1.85rem;
  max-width: 32rem;
}

.social-proof-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto 1.75rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgba(196, 160, 90, 0.28);
  max-width: 40rem;
}

.social-proof-stats article {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0.75rem;
  border-right: 1px solid rgba(196, 160, 90, 0.22);
}

.social-proof-stats article:last-child {
  border-right: 0;
}

.social-proof-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.1;
}

.social-proof-stats span {
  color: rgba(245, 240, 230, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-proof-cta {
  min-height: 2.75rem;
}

.social-proof-cta:hover {
  color: #e0c07a;
}

.gallery-page {
  padding: 3rem 0 5rem;
  background: var(--cream);
}

.gallery-intro {
  margin-bottom: 2.25rem;
}

.gallery-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.gallery-intro .hero-actions {
  margin-top: 1.25rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  display: grid;
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--cream-deep);
  transition: transform 0.45s ease;
}

.gallery-item img.fit-lower {
  object-position: center 88%;
}

.gallery-item img.fit-upper {
  object-position: center 22%;
}

.gallery-item img.fit-mid-upper {
  object-position: center 38%;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.site-footer {
  background: #07080b;
  color: rgba(245, 240, 230, 0.72);
  padding: 2.5rem 0 2.15rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(196, 160, 90, 0.28);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-brand p {
  margin: 0;
  color: rgba(245, 240, 230, 0.7);
}

.footer-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold) !important;
  font-size: 1.2rem;
  margin-bottom: 0.2rem !important;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.footer-instagram svg {
  width: 1.15rem;
  height: 1.15rem;
}

.footer-instagram:hover {
  color: #e0c07a;
}

.footer-copy {
  text-align: center;
  margin: 1.9rem 0 0;
  padding-top: 0.15rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 230, 0.42);
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 20, 0.92);
  display: grid;
  place-items: center;
  z-index: 80;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 0.75rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 252, 247, 0.4);
  color: var(--white);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 4.25rem;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.4rem;
    border-bottom: 1px solid var(--line);
    gap: 0.9rem;
  }

  .site-nav.open {
    display: flex;
  }

  .feature-grid,
  .feature-facts {
    grid-template-columns: 1fr;
  }

  .feature-facts article {
    border-right: 0;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(196, 160, 90, 0.22);
  }

  .feature-planet {
    right: -40%;
    top: auto;
    bottom: -22%;
    width: min(90vw, 520px);
    opacity: 0.55;
  }

  .feature-veil {
    background: linear-gradient(180deg, #07080b 48%, rgba(7, 8, 11, 0.72) 100%);
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .social-proof {
    padding: 2.6rem 0 2.85rem;
  }

  .social-proof h2 {
    max-width: none;
  }

  .social-proof-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 22rem;
  }

  .social-proof-stats article {
    border-right: 1px solid rgba(196, 160, 90, 0.22);
    padding: 0.85rem 0.7rem;
  }

  .social-proof-stats article:nth-child(2n) {
    border-right: 0;
  }

  .social-proof-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(196, 160, 90, 0.22);
  }

  .social-proof-cta {
    font-size: 0.95rem;
    padding: 0.35rem 0;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
