:root {
  --blush: #fff5f7;
  --paper: #ffeef2;
  --ink: #1a1216;
  --muted: #6f5c64;
  --rose: #e11d48;
  --rose-deep: #be123c;
  --mint: #5eead4;
  --line: rgba(26, 18, 22, 0.1);
  --display: "Bricolage Grotesque", sans-serif;
  --sans: "Onest", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(225, 29, 72, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 30%, rgba(94, 234, 212, 0.16), transparent 50%),
    linear-gradient(180deg, var(--blush), #fff 45%, var(--paper));
  line-height: 1.65;
  overflow-x: hidden;
}

.float {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  animation: drift 14s ease-in-out infinite alternate;
}

.f1 {
  width: 280px;
  height: 280px;
  background: rgba(225, 29, 72, 0.35);
  top: 12%;
  right: 8%;
}

.f2 {
  width: 220px;
  height: 220px;
  background: rgba(94, 234, 212, 0.35);
  bottom: 18%;
  left: 6%;
  animation-duration: 18s;
}

.f3 {
  width: 160px;
  height: 160px;
  background: rgba(225, 29, 72, 0.2);
  top: 55%;
  right: 30%;
  animation-duration: 22s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-28px, 36px) scale(1.1); }
}

.header,
main,
.footer { position: relative; z-index: 1; }

a { color: var(--rose-deep); }

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.2rem, 4vw, 3.2rem);
  position: sticky;
  top: 0;
  background: rgba(255, 245, 247, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 40;
}

.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
}

.logo span { color: var(--rose); }

.header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.15rem;
}

.header nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.header nav a:hover { color: var(--rose); }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.menu-btn i {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(3rem, 8vh, 5.5rem) clamp(1.2rem, 4vw, 3.2rem) 3rem;
}

.brand-hero {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--rose);
  max-width: 12ch;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.lede {
  color: var(--muted);
  max-width: 40ch;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-3px); }

.btn.rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.28);
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-stage {
  position: relative;
  min-height: 400px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, #1a1216, #3f1524 55%, #1a1216);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26, 18, 22, 0.18);
}

.orbit {
  position: absolute;
  inset: 18% 18%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.orb {
  position: absolute;
  border-radius: 50%;
  display: block;
}

.o1 {
  width: 54px;
  height: 54px;
  background: var(--rose);
  top: -27px;
  left: calc(50% - 27px);
  box-shadow: 0 0 30px rgba(225, 29, 72, 0.6);
}

.o2 {
  width: 28px;
  height: 28px;
  background: var(--mint);
  bottom: 10%;
  right: -14px;
}

.o3 {
  width: 16px;
  height: 16px;
  background: #fff;
  top: 40%;
  left: -8px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.waveform {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 22%;
  height: 70px;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
}

.waveform b {
  flex: 1;
  display: block;
  border-radius: 99px 99px 4px 4px;
  background: linear-gradient(180deg, var(--mint), var(--rose));
  animation: wave 1.2s ease-in-out infinite;
  transform-origin: bottom;
}

.waveform b:nth-child(1) { height: 30%; animation-delay: 0s; }
.waveform b:nth-child(2) { height: 55%; animation-delay: 0.05s; }
.waveform b:nth-child(3) { height: 40%; animation-delay: 0.1s; }
.waveform b:nth-child(4) { height: 75%; animation-delay: 0.15s; }
.waveform b:nth-child(5) { height: 50%; animation-delay: 0.2s; }
.waveform b:nth-child(6) { height: 90%; animation-delay: 0.25s; }
.waveform b:nth-child(7) { height: 60%; animation-delay: 0.3s; }
.waveform b:nth-child(8) { height: 80%; animation-delay: 0.35s; }
.waveform b:nth-child(9) { height: 45%; animation-delay: 0.4s; }
.waveform b:nth-child(10) { height: 70%; animation-delay: 0.45s; }
.waveform b:nth-child(11) { height: 35%; animation-delay: 0.5s; }
.waveform b:nth-child(12) { height: 55%; animation-delay: 0.55s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.55); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

.stage-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker {
  border-block: 1px solid var(--line);
  background: rgba(225, 29, 72, 0.06);
  overflow: hidden;
  padding: 0.95rem 0;
}

.ticker-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: slide 28s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.ticker-track span::before {
  content: "♥";
  color: var(--rose);
  margin-right: 0.7rem;
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section {
  padding: clamp(3.8rem, 9vh, 6rem) clamp(1.2rem, 4vw, 3.2rem);
}

.kicker {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose);
}

h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 1.2rem;
  max-width: 16ch;
}

.studio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem 2.5rem;
}

.studio-right {
  display: grid;
  gap: 1rem;
}

.studio-right p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.stats div {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
}

.stats strong {
  display: block;
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.45rem;
  letter-spacing: -0.04em;
}

.stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.craft-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.2rem;
  padding: 1.8rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.craft-card.alt {
  background: linear-gradient(120deg, rgba(225, 29, 72, 0.06), rgba(94, 234, 212, 0.08));
}

.craft-card > span {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: -0.04em;
}

.craft-card h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
}

.craft-card > div > p {
  color: var(--muted);
  max-width: 70ch;
  margin: 0 0 0.9rem;
}

.craft-card ul {
  margin: 0;
  padding-left: 1.1rem;
  columns: 2;
  gap: 1.5rem;
}

.craft-card li { margin-bottom: 0.35rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.process-grid article {
  background: #1a1216;
  color: #ffeef2;
  border-radius: 22px;
  padding: 1.35rem;
  min-height: 100%;
}

.process-grid h3 {
  font-family: var(--display);
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  color: var(--mint);
  letter-spacing: -0.02em;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 238, 242, 0.72);
  font-size: 0.95rem;
}

.belief-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.belief-row blockquote {
  margin: 0;
  padding: 1.5rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.reels article {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.reels article:last-child { border-bottom: 1px solid var(--line); }

.reels h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0 0 0.55rem;
  letter-spacing: -0.03em;
  color: var(--rose-deep);
}

.reels p {
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
}

.partner-grid,
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.partner-grid article,
.notes-grid article {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
}

.partner-grid h3,
.notes-grid h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.partner-grid p,
.notes-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq details {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 0.55rem;
  padding: 0.15rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.2rem;
  padding: 0.9rem 0;
  list-style: none;
  letter-spacing: -0.02em;
}

.faq summary::-webkit-details-marker { display: none; }

.faq p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 70ch;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at top right, rgba(225, 29, 72, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.8);
}

.contact-shell address {
  font-style: normal;
  margin: 1.4rem 0 0.8rem;
  line-height: 1.8;
}

.mail { font-weight: 700; }

.contact-shell form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-shell label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-shell .full { grid-column: 1 / -1; }

.contact-shell input,
.contact-shell select,
.contact-shell textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.85rem;
  font: inherit;
  color: var(--ink);
}

.contact-shell button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 0.95rem 1.35rem;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--rose-deep);
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2.4rem clamp(1.2rem, 4vw, 3.2rem) 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer strong {
  font-family: var(--display);
  color: var(--ink);
  letter-spacing: -0.03em;
}

.footer p:last-child { grid-column: 1 / -1; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .float,
  .orbit,
  .waveform b,
  .ticker-track {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .studio,
  .stats,
  .process-grid,
  .belief-row,
  .partner-grid,
  .notes-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .brand-hero { grid-column: 1; }

  .craft-card {
    grid-template-columns: 1fr;
  }

  .craft-card ul { columns: 1; }

  .menu-btn { display: block; }

  .header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 1.2rem 1.3rem;
    background: rgba(255, 245, 247, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .header nav.open { display: flex; }
}

@media (max-width: 640px) {
  .contact-shell form { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
}
