* {
  box-sizing: border-box;
}

:root {
  --bg: #0b0a08;
  --text: #fffaf2;
  --muted: rgba(255, 250, 242, .72);
  --soft: rgba(255, 250, 242, .12);
  --line: rgba(255, 250, 242, .16);
  --gold: #e8c990;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(232, 201, 144, .18), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .07), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .045;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.nav {
  position: fixed;
  top: 0;
  z-index: 50;
  height: 66px;
  width: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 10, 8, .62);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 250, 242, .10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.03em;
}

.mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 250, 242, .76);
}

.nav-button {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, .10);
  border: 1px solid rgba(255, 250, 242, .14);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 20px 70px;
  overflow: hidden;
}

.photo-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(11,10,8,.75), rgba(11,10,8,.28), rgba(11,10,8,.86)),
    radial-gradient(circle at 24% 30%, rgba(232,201,144,.24), transparent 22%),
    linear-gradient(135deg, #18130e, #33281d 42%, #0b0a08);
  transform: scale(1.06);
}

.photo-bg::before,
.photo-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
}

.photo-bg::before {
  width: 520px;
  height: 520px;
  background: rgba(232, 201, 144, .18);
  left: -90px;
  top: 18%;
  animation: float 12s ease-in-out infinite;
}

.photo-bg::after {
  width: 360px;
  height: 360px;
  background: rgba(255, 250, 242, .10);
  right: -80px;
  bottom: 12%;
  animation: float 14s ease-in-out infinite reverse;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 55%, var(--bg)),
    radial-gradient(circle at center, transparent, rgba(0,0,0,.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1050px, 100%);
  text-align: center;
}

.eyebrow,
.small-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -.07em;
  line-height: .9;
}

h1 {
  font-size: clamp(58px, 11vw, 140px);
}

h2 {
  font-size: clamp(42px, 7vw, 88px);
}

h3 {
  font-size: clamp(32px, 5vw, 58px);
}

.hero-text {
  max-width: 690px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(21px, 3vw, 31px);
  line-height: 1.22;
  letter-spacing: -.035em;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.02em;
  transition: transform .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.primary {
  background: var(--text);
  color: var(--bg);
}

.secondary {
  background: rgba(255, 250, 242, .11);
  border: 1px solid rgba(255, 250, 242, .16);
}

.scroll-note {
  position: absolute;
  bottom: 28px;
  color: rgba(255, 250, 242, .44);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}

.message-section {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}

.message-card {
  padding: clamp(32px, 7vw, 78px);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,250,242,.16), rgba(255,250,242,.055)),
    rgba(255,255,255,.04);
  border: 1px solid var(--line);
  box-shadow: 0 40px 120px rgba(0,0,0,.42);
  backdrop-filter: blur(26px);
}

.message-card h2 {
  max-width: 850px;
}

.letter {
  margin-top: 44px;
  display: grid;
  gap: 22px;
  color: rgba(255, 250, 242, .82);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
  letter-spacing: -.02em;
}

.letter p {
  margin: 0;
}

.signature {
  color: var(--text);
  font-size: 28px;
  font-weight: 800;
}

.contact-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 110px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.contact-card,
.instagram-card {
  border-radius: 38px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  background: rgba(255,250,242,.075);
  box-shadow: 0 30px 90px rgba(0,0,0,.30);
}

.contact-card p,
.instagram-card p,
.closing p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.contact-card p a {
  color: var(--text);
  font-weight: 800;
}

.instagram-card {
  min-height: 360px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(232,201,144,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,250,242,.14), rgba(255,250,242,.05));
  transition: transform .25s ease, background .25s ease;
}

.instagram-card:hover {
  transform: translateY(-7px);
  background:
    radial-gradient(circle at top right, rgba(232,201,144,.30), transparent 34%),
    linear-gradient(135deg, rgba(255,250,242,.20), rgba(255,250,242,.065));
}

.instagram-card strong {
  color: var(--text);
  font-size: 18px;
}

.closing {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 40px;
  padding: 90px 24px;
  text-align: center;
}

.closing p {
  max-width: 620px;
  margin: 24px auto 0;
}

footer {
  padding: 36px 20px 58px;
  text-align: center;
  color: rgba(255,250,242,.44);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s ease, transform .85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -26px, 0) scale(1.06); }
}

@media (max-width: 850px) {
  .contact-section {
    grid-template-columns: 1fr;
  }

  .nav-links a:not(.nav-button) {
    display: none;
  }

  .brand span:last-child {
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 0 16px;
  }

  h1,
  h2,
  h3 {
    letter-spacing: -.055em;
  }

  .message-section {
    padding: 80px 0;
  }

  .contact-section {
    padding-bottom: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
