:root {
  --ink: #1a1216;
  --muted: #7a6670;
  --pink: #ff4d8d;
  --pink-deep: #e83374;
  --canvas: #fbf7f8;
  --surface: #ffffff;
  --line: rgba(26, 18, 22, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(26, 18, 22, 0.08);
  --shade: linear-gradient(
    115deg,
    rgba(18, 10, 14, 0.78) 0%,
    rgba(18, 10, 14, 0.42) 45%,
    rgba(18, 10, 14, 0.12) 100%
  );
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(255, 77, 141, 0.1), transparent 60%),
    radial-gradient(700px 380px at 100% 12%, rgba(26, 18, 22, 0.04), transparent 55%),
    var(--canvas);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Floating soft header */
.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 14px clamp(12px, 3vw, 28px);
  pointer-events: none;
}
.top-inner {
  pointer-events: auto;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 30px rgba(26, 18, 22, 0.08);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}
.top.on-hero .top-inner {
  background: rgba(18, 10, 14, 0.28);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.top.on-hero .logo,
.top.on-hero nav a { color: #fff; }
.top.on-hero .logo span { color: #ffb0ce; }
.top.scrolled .top-inner {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(26, 18, 22, 0.1);
}
.top.on-hero.scrolled .logo,
.top.on-hero.scrolled nav a { color: var(--ink); }
.top.on-hero.scrolled .logo span { color: var(--pink); }

.logo {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.logo span { color: var(--pink); }

.top nav {
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--muted);
}
.top nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.top nav a:not(.nav-cta):hover {
  background: rgba(26, 18, 22, 0.06);
  color: var(--ink);
}
.top.on-hero nav a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.nav-cta {
  background: var(--pink) !important;
  color: #fff !important;
  padding: 11px 18px !important;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 18%;
  animation: heroZoom 24s ease-out forwards;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: var(--shade);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(110px, 18vh, 180px) clamp(20px, 5vw, 64px) clamp(56px, 10vh, 88px);
  max-width: 780px;
  color: #fff;
  animation: rise 0.9s ease both;
}
.brand-hero {
  margin: 0 0 14px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3.8rem, 12vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
.brand-hero span { color: #ff9ec4; }
.hero h1 {
  margin: 0 0 14px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 16ch;
  opacity: 0.96;
}
.lead {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  font-weight: 600;
  line-height: 1.45;
  opacity: 0.9;
  max-width: 24ch;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 750;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 77, 141, 0.32);
}
.btn.primary:hover { background: var(--pink-deep); }
.btn.primary.soft { box-shadow: none; }
.btn.light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.section {
  padding: clamp(64px, 10vh, 104px) clamp(18px, 4vw, 56px);
  max-width: 1180px;
  margin: 0 auto;
}
.section-head { margin-bottom: 28px; max-width: 36rem; }
.section-head.row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  max-width: none;
}
.section h2, .notify h2, .cta-band h2 {
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}
.sub { margin: 0; color: var(--muted); font-weight: 600; line-height: 1.55; }
.text-link {
  font-weight: 750;
  color: var(--pink);
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 77, 141, 0.08);
}
.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
}

/* Soft mosaic */
.moment-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: min(68vh, 600px);
}
.moment {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: rise 0.85s ease both;
}
.moment-lg { grid-row: 1 / -1; min-height: 100%; }
.moment:nth-child(2) { animation-delay: 0.06s; }
.moment:nth-child(3) { animation-delay: 0.12s; }
.moment img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.moment:hover img { transform: scale(1.04); }
.moment figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 24px 22px;
  color: #fff;
  background: linear-gradient(transparent, rgba(14, 8, 12, 0.78));
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.moment strong {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -0.02em;
}
.moment span {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.92;
  max-width: 22ch;
  line-height: 1.4;
}

/* Store card */
.store-wrap { max-width: 1180px; }
.store-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  background: linear-gradient(135deg, #1a1216 0%, #2a1a22 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.store-band .sub { color: rgba(255, 255, 255, 0.68); }
.store-band h2 { color: #fff; }
.store-copy .btn { margin-top: 22px; }
.store-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 320px;
  background: #120c10;
}
.store-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.look-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.look-rail figure { margin: 0; }
.look-rail img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .45s ease;
}
.look-rail figure:hover img { transform: scale(1.02); }
.look-rail figcaption {
  margin-top: 12px;
  padding-left: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(26, 18, 22, 0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.blog-card span {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.blog-card h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.notify-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.notify-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.notify-form input {
  flex: 1 1 200px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  font-weight: 600;
  background: #fff;
}
.notify-msg {
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 700;
  color: var(--pink-deep);
}
.notify-msg.err { color: #b42318; }

.cta-wrap { padding-top: 24px; }
.cta-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.cta-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14, 8, 12, 0.82), rgba(14, 8, 12, 0.28));
}
.cta-band-copy {
  position: relative;
  z-index: 1;
  padding: 48px clamp(24px, 4vw, 48px);
  color: #fff;
  max-width: 26rem;
}
.brand-line {
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.cta-band h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}
.demo-note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.8;
}

/* Real footer */
.site-footer {
  margin-top: 24px;
  padding: clamp(40px, 7vh, 64px) clamp(18px, 4vw, 56px) 28px;
  background: #161014;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.5rem;
}
.footer-brand p {
  margin: 0;
  max-width: 28ch;
  line-height: 1.55;
  font-weight: 550;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col a {
  font-weight: 600;
  opacity: 0.78;
  transition: opacity .2s ease, color .2s ease;
}
.footer-col a:hover {
  opacity: 1;
  color: #ff9ec4;
}
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-bottom p { margin: 0; }
.footer-note { opacity: 0.55; }

/* Blog pages */
.blog-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 20px 64px;
}
.blog-wrap .cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 0 28px;
}
.blog-wrap .meta {
  color: var(--pink);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-wrap h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  line-height: 1.15;
}
.blog-wrap p {
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 550;
  color: #3a2e33;
}
.blog-list {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 20px 64px;
}
.blog-list h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 8px;
}
.blog-list .intro { color: var(--muted); margin: 0 0 36px; font-weight: 600; }

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .top nav a:not(.nav-cta) { display: none; }
  .top-inner { padding: 8px 8px 8px 16px; }
  .moment-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }
  .moment-lg { grid-row: auto; min-height: 340px; }
  .moment { min-height: 260px; }
  .blog-grid,
  .look-rail { grid-template-columns: 1fr; }
  .store-band { grid-template-columns: 1fr; }
  .store-visual,
  .store-visual img { min-height: 240px; }
  .notify-panel { grid-template-columns: 1fr; }
  .section-head.row { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 701px) and (max-width: 900px) {
  .look-rail { grid-template-columns: 1fr 1fr; }
  .look-rail figure:last-child { grid-column: 1 / -1; }
  .look-rail figure:last-child img { aspect-ratio: 16/9; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img, .hero-copy, .moment { animation: none; }
  .moment:hover img, .look-rail figure:hover img { transform: none; }
}
