:root {
  --bg: #f7f4ef;
  --bg-deep: #ebe4da;
  --ink: #14110f;
  --muted: rgba(20, 17, 15, 0.58);
  --accent: #a8485c;
  --accent-soft: rgba(168, 72, 92, 0.14);
  --line: rgba(20, 17, 15, 0.09);
  --cream: #f3ebe3;
  --stone: #d9cfc3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

/* Full-bleed atmospheric plane */
.plane {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.plane-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(95vw 75vh at 8% -8%, rgba(196, 152, 162, 0.38), transparent 58%),
    radial-gradient(80vw 60vh at 92% 6%, rgba(220, 200, 180, 0.5), transparent 55%),
    radial-gradient(55vw 45vh at 55% 105%, rgba(237, 232, 224, 0.95), transparent 62%),
    linear-gradient(168deg, #f7f4ef 0%, #ede8e0 46%, #e6ddd2 100%);
  animation: drift 20s ease-in-out infinite alternate;
}
.plane-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
@keyframes drift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-1.2%, 1.1%, 0); }
}

.topbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.brand-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: block;
  flex-shrink: 0;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.top-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.top-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}
.top-links .btn-text { color: var(--ink); }

.lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 252, 250, 0.72);
}
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.35rem 0.65rem;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
}
.lang-btn.is-active {
  background: var(--ink);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.large { padding: 0.95rem 1.4rem; font-size: 1rem; }
.btn:hover { filter: brightness(1.04); }
.btn.ghost:hover { background: rgba(20, 17, 15, 0.03); }

/* Hero: one composition — brand + line + CTA + visual plane */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(100vh - 4.75rem);
  padding: 5vh 1.25rem 3.5rem;
  display: grid;
  align-items: center;
  gap: 2.5rem;
}
.hero-copy {
  max-width: 34rem;
}
.brand-mark {
  margin: 0 0 0.65rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3rem, 10vw, 5.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: var(--ink);
  opacity: 0;
  transform: translateY(20px);
  animation: rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 60ms forwards;
}
.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.85rem, 5.2vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 160ms forwards;
}
.support {
  margin: 1.1rem 0 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms forwards;
}
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.7rem;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 360ms forwards;
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* Abstract editorial visual — product mood without stock photos */
.hero-visual {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  animation: rise 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 280ms forwards;
}
.look {
  position: absolute;
  border-radius: 1.35rem;
  overflow: hidden;
}
.look-a {
  inset: 8% 18% 22% 8%;
  background:
    linear-gradient(145deg, rgba(168, 72, 92, 0.22), transparent 55%),
    linear-gradient(200deg, #e8ddd2 0%, #c9b7a8 48%, #a88f7e 100%);
  box-shadow: 0 28px 60px rgba(20, 17, 15, 0.12);
  animation: floatA 9s ease-in-out infinite alternate;
}
.look-b {
  inset: 38% 6% 6% 32%;
  background:
    linear-gradient(160deg, rgba(255, 252, 250, 0.55), transparent 50%),
    linear-gradient(25deg, #f0e7dc, #d7c4b4 55%, #b8978a);
  border: 1px solid rgba(255, 252, 250, 0.35);
  box-shadow: 0 22px 48px rgba(20, 17, 15, 0.1);
  animation: floatB 11s ease-in-out infinite alternate;
}
.look-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20, 17, 15, 0.55);
}
.look-orbit {
  position: absolute;
  inset: 12% 10% 18% 14%;
  border: 1px solid rgba(20, 17, 15, 0.08);
  border-radius: 50% 42% 48% 55%;
  animation: orbitSpin 28s linear infinite;
  pointer-events: none;
}
@keyframes floatA {
  from { transform: translate3d(0, 0, 0) rotate(-1.5deg); }
  to { transform: translate3d(0, -10px, 0) rotate(1deg); }
}
@keyframes floatB {
  from { transform: translate3d(0, 0, 0) rotate(2deg); }
  to { transform: translate3d(4px, 8px, 0) rotate(-1deg); }
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.how, .promise {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}
.how h2, .promise h2 {
  margin: 0 0 1.5rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.steps li {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  max-width: 34ch;
}
.steps .n {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.steps h3 {
  margin: 0 0 0.35rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
}
.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.promise p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.steps .reveal:nth-child(2) { transition-delay: 80ms; }
.steps .reveal:nth-child(3) { transition-delay: 160ms; }

.foot a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.foot a:hover { text-decoration: underline; }

/* Legal / privacy */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 1rem;
}
.legal-doc h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  margin: 0.35rem 0 0.75rem;
  line-height: 1.15;
}
.legal-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.legal-meta {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.legal-intro {
  margin: 0 0 2rem;
  line-height: 1.6;
  color: var(--ink);
}
.legal-section {
  margin-bottom: 1.75rem;
}
.legal-section h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
}
.legal-section p {
  margin: 0 0 0.75rem;
  line-height: 1.62;
  color: var(--muted);
}
.legal-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  line-height: 1.55;
  color: var(--muted);
}
.legal-list li {
  margin-bottom: 0.55rem;
}
.legal-list strong {
  color: var(--ink);
  font-weight: 600;
}

.foot {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}
.foot .brand {
  font-size: 1rem;
  color: var(--ink);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding-top: 4vh;
  }
  .hero-visual {
    width: min(100%, 460px);
    margin-inline: 0 0 auto;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .steps li {
    border-top: 0;
    padding-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 1.25rem;
  }
  .steps li:first-child {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .top-links a:not(.btn):not(.btn-text) { display: none; }
  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }
  .hero-visual {
    width: min(100%, 320px);
    margin-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plane-wash,
  .look-a,
  .look-b,
  .look-orbit,
  .brand-mark,
  .hero h1,
  .support,
  .cta,
  .hero-visual {
    animation: none !important;
  }
  .brand-mark,
  .hero h1,
  .support,
  .cta,
  .hero-visual,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
