:root {
  --bg: #0a0608;
  --ink: #ffe8ef;
  --muted: rgba(255, 232, 239, 0.62);
  --line: rgba(255, 180, 198, 0.16);
  --cherry: #ff4d7a;
  --blush: #ff8fb3;
  --wine: #4a0d24;
  --rose: #c41e5a;
  --skin: #f6cfc0;
  --smoke: #1a0b12;
  --radius: 4px;
  --font: "Karla", ui-sans-serif, system-ui, sans-serif;
  --display: "Bodoni Moda", ui-serif, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

.wash {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(70vw 50vh at 0% 0%, rgba(196, 30, 90, 0.28), transparent 55%),
    radial-gradient(60vw 45vh at 100% 15%, rgba(255, 77, 122, 0.12), transparent 50%),
    radial-gradient(50vw 40vh at 70% 100%, rgba(74, 13, 36, 0.55), transparent 55%),
    linear-gradient(180deg, #12070c 0%, var(--bg) 40%, #070305 100%);
}
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.055;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
main, .top, .foot { position: relative; z-index: 1; }

.top {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.4rem;
  backdrop-filter: blur(16px);
  background: rgba(10, 6, 8, 0.72);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  text-align: center;
  line-height: 1.05;
}
.logoMark {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff5f8 10%, var(--blush) 70%, var(--cherry) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logoSub {
  margin-top: 0.15rem;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--skin);
}
.navSide {
  font-size: 0.92rem;
  color: var(--muted);
  justify-self: start;
}
.navSide:hover { color: var(--blush); }
.navSide.navCta {
  justify-self: end;
  color: #1a0610 !important;
  background: linear-gradient(135deg, var(--blush), var(--cherry));
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(255, 77, 122, 0.25);
  text-align: center;
}

.hero { min-height: calc(100vh - 60px); }
.heroPlane {
  position: relative;
  min-height: calc(100vh - 60px);
  overflow: hidden;
}
.heroPlane > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.08) contrast(1.05);
  animation: breathe 12s ease-in-out infinite alternate;
}
.heroScrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 6, 8, 0.94) 0%, rgba(10, 6, 8, 0.78) 38%, rgba(74, 13, 36, 0.35) 68%, rgba(10, 6, 8, 0.45) 100%),
    linear-gradient(180deg, transparent 0%, rgba(10, 6, 8, 0.55) 100%);
}
.heroCopy {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(100vh - 60px);
  padding: clamp(2.5rem, 9vh, 5.5rem) clamp(1.2rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--blush);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 11vw, 7rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-style: italic;
  background: linear-gradient(180deg, #fff5f8 10%, var(--blush) 55%, var(--cherry) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise 0.8s ease both;
}
.subBrand {
  margin: 0.55rem 0 0;
  font-family: var(--display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--skin);
  animation: rise 0.8s 0.08s ease both;
}
.lede {
  margin: 1.15rem 0 0;
  max-width: 28rem;
  color: rgba(255, 232, 239, 0.84);
  font-size: 1.12rem;
  animation: rise 0.8s 0.14s ease both;
}
.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
  animation: rise 0.8s 0.2s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--blush), var(--rose));
  color: #1a0610;
  box-shadow: 0 10px 30px rgba(255, 77, 122, 0.28);
}
.btn.ghost {
  border-color: rgba(255, 180, 198, 0.35);
  color: var(--ink);
  background: rgba(255, 77, 122, 0.06);
}
.btn.ghost:hover { border-color: var(--blush); }

.strip {
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.2rem, 4vw, 3rem);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(196, 30, 90, 0.16), transparent 40%, rgba(255, 77, 122, 0.08));
}
.stripInner {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.stripTag, .kicker {
  margin: 0 0 0.65rem;
  color: var(--cherry);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.strip h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.strip p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36rem;
}

.features {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem clamp(1.2rem, 4vw, 3rem) 2rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
.feat {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}
.feat.flip { grid-template-columns: 1.15fr 0.85fr; }
.feat.flip .featText { order: 2; }
.feat.flip .featShot { order: 1; }
.featText h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.featText p:last-child {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 26rem;
  font-size: 1.05rem;
}

.wrapShot {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 143, 179, 0.22);
  background: var(--smoke);
  box-shadow:
    0 0 0 1px rgba(255, 77, 122, 0.08) inset,
    0 28px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(196, 30, 90, 0.12);
  transform: rotate(-0.4deg);
}
.feat.flip .wrapShot { transform: rotate(0.5deg); }
.wrapShot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 143, 179, 0.12), transparent 40%, rgba(196, 30, 90, 0.18));
  mix-blend-mode: soft-light;
}
.wrapShot img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.feat:hover .wrapShot img { transform: scale(1.03); }

.gallery {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem clamp(1.2rem, 4vw, 3rem) 3rem;
}
.sectionHead {
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.sectionHead h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-style: italic;
}
.muted { color: var(--muted); margin: 0.45rem 0 0; }

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.gItem {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 143, 179, 0.18);
  aspect-ratio: 16 / 10;
  background: var(--smoke);
}
.gItem:nth-child(3n) { transform: translateY(8px); }
.gItem:nth-child(5n) { transform: translateY(-6px); }
.gItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.05);
}
.gItem:hover img {
  transform: scale(1.07);
  filter: saturate(1.2) brightness(1.05);
}
.gItem span {
  position: absolute;
  left: 10px;
  bottom: 9px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--skin);
  text-shadow: 0 2px 10px #000;
}

.closer {
  text-align: center;
  padding: 4rem 1.2rem 5rem;
}
.closerLine {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  color: var(--ink);
}
.closerSub {
  margin: 0.4rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--cherry);
}

.foot {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.foot a:hover { color: var(--blush); }
.dot { opacity: 0.45; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes breathe {
  from { transform: scale(1.02); }
  to { transform: scale(1.07); }
}

@media (max-width: 860px) {
  .feat, .feat.flip { grid-template-columns: 1fr; }
  .feat.flip .featText, .feat.flip .featShot { order: unset; }
  .wrapShot, .feat.flip .wrapShot { transform: none; }
  .heroPlane, .heroCopy { min-height: 78vh; }
  .heroScrim {
    background: linear-gradient(180deg, rgba(10,6,8,0.35) 0%, rgba(10,6,8,0.88) 55%, rgba(10,6,8,0.96) 100%);
  }
  .navSide:not(.navCta) { opacity: 0; pointer-events: none; }
  .gItem:nth-child(3n), .gItem:nth-child(5n) { transform: none; }
  .stripInner { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .brand, .subBrand, .lede, .ctaRow, .heroPlane > img, .wrapShot img, .gItem img {
    animation: none !important;
    transition: none !important;
  }
}
