:root {
  --ink: #090909;
  --ink-soft: #111111;
  --paper: #f3efe9;
  --paper-muted: #c7c0b8;
  --wine: #a7192d;
  --wine-bright: #cf2841;
  --line: rgba(255, 255, 255, .12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--paper); font-family: var(--sans); font-weight: 300; line-height: 1.7; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky; top: 0; z-index: 20; height: 82px; padding: 0 clamp(24px, 5vw, 72px);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: rgba(9, 9, 9, .9); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--paper); text-decoration: none; font-family: var(--serif); font-size: 25px; letter-spacing: .12em; text-transform: uppercase; line-height: .85; }
.brand small { display: block; margin-top: 8px; color: var(--wine-bright); font-family: var(--sans); font-size: 8px; font-weight: 600; letter-spacing: .42em; }
.brand-mark { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid var(--wine); border-radius: 50% 50% 45% 45%; color: var(--wine-bright); font-size: 21px; font-style: italic; }
nav { display: flex; gap: clamp(22px, 3vw, 44px); }
nav a, .header-cta { font-size: 12px; font-weight: 500; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
nav a { color: var(--paper-muted); transition: color .2s ease; }
nav a:hover { color: var(--paper); }
.header-cta { border-bottom: 1px solid var(--wine-bright); padding: 7px 1px; }

.hero { min-height: calc(100vh - 82px); padding: clamp(70px, 10vw, 140px) clamp(24px, 7vw, 110px); display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); align-items: center; gap: clamp(50px, 8vw, 130px); position: relative; overflow: hidden; background: radial-gradient(circle at 86% 35%, rgba(145, 17, 37, .18), transparent 30%), linear-gradient(135deg, #0c0c0c, #060606); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to right, transparent, black); }
.hero-glow { position: absolute; width: 380px; height: 380px; right: 13%; top: 22%; border: 1px solid rgba(207, 40, 65, .16); border-radius: 50%; box-shadow: 0 0 130px rgba(167, 25, 45, .12), inset 0 0 80px rgba(167, 25, 45, .05); }
.hero-copy, .hero-brand { position: relative; z-index: 1; }
.eyebrow, .section-label { margin: 0 0 22px; color: var(--wine-bright); font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 500; line-height: .98; }
h1 { margin: 0; max-width: 800px; font-size: clamp(57px, 7.3vw, 112px); letter-spacing: -.035em; }
h1 em, h2 em { color: var(--wine-bright); font-weight: 400; }
.hero-title-line { display: block; }
.hero-title-line.is-letter-reveal { font-style: inherit; }
.hero-title-word { display: inline-block; white-space: nowrap; }
.hero-title-letter { display: inline-block; opacity: 0; filter: blur(6px); transform: translateY(18px); animation: letter-fade-in .55s cubic-bezier(.22, 1, .36, 1) forwards; animation-delay: calc(.2s + (var(--letter-index) * .065s)); }
.hero-title-space { display: inline-block; width: .24em; }
.lead { max-width: 650px; margin: 35px 0 0; color: var(--paper-muted); font-size: clamp(15px, 1.25vw, 18px); }
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 32px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 12px; min-height: 53px; padding: 0 28px; border: 0; cursor: pointer; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
.primary { background: var(--wine); color: #fff; transition: background .2s ease, transform .2s ease; }
.primary:hover { background: var(--wine-bright); transform: translateY(-2px); }
.text-link { color: var(--paper-muted); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.text-link span { margin-left: 7px; color: var(--wine-bright); }
.hero-brand { justify-self: center; text-align: center; }
.hero-brand { perspective: 1200px; }
.logo-frame {
  width: min(510px, 42vw);
  aspect-ratio: 1;
  padding: clamp(22px, 2.5vw, 38px);
  overflow: hidden;
  border: 2px solid rgba(207, 40, 65, .7);
  border-radius: 50%;
  background: #f8f7f5;
  box-shadow: 0 34px 90px rgba(0,0,0,.5), 0 0 35px rgba(167,25,45,.18), inset 0 0 0 7px rgba(167,25,45,.06);
  animation: logo-coin-spin 14s linear infinite;
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: visible;
  will-change: transform;
}
.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.04);
}
.hero-brand p { margin: 20px 0 0; color: var(--paper-muted); font-family: var(--serif); font-size: 18px; font-style: italic; letter-spacing: .06em; }

.section-pad { padding: clamp(85px, 11vw, 160px) clamp(24px, 7vw, 110px); }
.manifesto { background: var(--paper); color: var(--ink); }
.manifesto .section-label, .about .section-label { color: var(--wine); }
.manifesto-grid { display: grid; grid-template-columns: 1.08fr .72fr; gap: clamp(50px, 10vw, 160px); align-items: start; }
.manifesto h2, .section-heading h2, .about h2, .contact h2 { margin: 0; font-size: clamp(44px, 5vw, 76px); letter-spacing: -.025em; }
.manifesto-grid > div { padding-top: 10px; color: #514d48; font-size: 15px; }
.manifesto-grid > div p:first-child { margin-top: 0; }

.method { background: #0c0c0c; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 70px; }
.section-heading > p { max-width: 390px; margin: 0 0 5px; color: var(--paper-muted); font-size: 14px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.step { min-height: 280px; padding: 36px 26px 10px 0; border-right: 1px solid var(--line); }
.step + .step { padding-left: 26px; }
.step:last-child { border-right: 0; }
.step > span { color: var(--wine-bright); font-size: 10px; font-weight: 600; letter-spacing: .2em; }
.step h3 { margin: 70px 0 15px; font-size: 32px; }
.step p { margin: 0; color: var(--paper-muted); font-size: 13px; }

.promise { padding: 110px 24px; text-align: center; background: linear-gradient(rgba(58,0,10,.73), rgba(10,10,10,.96)), radial-gradient(circle at center, #6e0b1d, #0b0b0b 67%); border-block: 1px solid rgba(207,40,65,.25); }
.promise-inner { max-width: 950px; margin: 0 auto; }
.promise p { color: var(--wine-bright); font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; }
.promise blockquote { margin: 28px 0; font-size: clamp(43px, 5vw, 72px); }
.promise span { color: var(--paper-muted); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }

.pricing { background: var(--paper); color: var(--ink); }
.pricing .section-label { color: var(--wine); }
.pricing-heading > p { color: #645f59; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 20px; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 650px; padding: 43px 36px 34px; background: #e8e2db; border: 1px solid #d4ccc3; }
.plan-card.featured { background: var(--ink); color: var(--paper); border-color: var(--wine); transform: translateY(-14px); box-shadow: 0 25px 55px rgba(39, 17, 19, .16); }
.popular { position: absolute; top: 0; right: 0; padding: 9px 18px; background: var(--wine); color: #fff; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.plan-type { margin: 0 0 8px; color: var(--wine); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.plan-card h3 { margin: 0; font-size: 42px; }
.price { margin: 28px 0 20px; font-family: var(--serif); font-size: 62px; line-height: 1; }
.price span { color: var(--wine); font-size: 30px; }
.plan-intro { min-height: 80px; margin: 0; color: #5f5a54; font-size: 13px; }
.featured .plan-intro, .featured li { color: var(--paper-muted); }
.plan-card ul { flex: 1; margin: 28px 0; padding: 24px 0 0; border-top: 1px solid rgba(55,45,45,.15); list-style: none; }
.featured ul { border-color: var(--line); }
.plan-card li { position: relative; margin: 12px 0; padding-left: 20px; color: #49443f; font-size: 12px; }
.plan-card li::before { content: "·"; position: absolute; left: 2px; color: var(--wine); font-size: 20px; line-height: 1; }
.plan-card > a { display: block; padding: 16px; border: 1px solid #28231f; font-size: 10px; font-weight: 600; letter-spacing: .15em; text-align: center; text-decoration: none; text-transform: uppercase; transition: all .2s ease; }
.plan-card > a:hover, .featured > a { background: var(--wine); border-color: var(--wine); color: #fff; }

.about { background: #101010; }
.about-card { display: grid; grid-template-columns: .7fr 1.3fr; max-width: 1100px; margin: 0 auto; background: #151515; border: 1px solid var(--line); }
.about-monogram { min-height: 520px; display: grid; place-items: center; background: radial-gradient(circle, rgba(167,25,45,.3), transparent 45%), linear-gradient(135deg, #21070c, #090909); color: rgba(255,255,255,.82); font-family: var(--serif); font-size: 220px; font-style: italic; }
.about-copy { padding: clamp(45px, 7vw, 90px); align-self: center; }
.about-copy p:not(.section-label) { max-width: 600px; color: var(--paper-muted); font-size: 14px; }
.about-copy .signature { margin-top: 30px; color: var(--paper); font-family: var(--serif); font-size: 20px; font-style: italic; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); background: #080808; }
.contact-copy > p:not(.section-label) { max-width: 500px; color: var(--paper-muted); }
.whatsapp-line { display: inline-flex; align-items: center; gap: 17px; margin-top: 28px; text-decoration: none; }
.whatsapp-icon, .floating-wa { display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; }
.whatsapp-icon { width: 47px; height: 47px; box-shadow: 0 7px 22px rgba(37, 211, 102, .25); }
.whatsapp-icon svg { width: 27px; height: 27px; }
.whatsapp-line small { display: block; color: var(--paper-muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.contact form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 18px; padding: clamp(28px, 5vw, 55px); background: #111; border: 1px solid var(--line); }
.contact label { align-self: end; color: var(--paper-muted); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.contact label[for="plan"], .contact label[for="message"], .contact #plan, .contact #message, .contact button, .form-note { grid-column: 1 / -1; }
.contact input, .contact select, .contact textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid #343434; border-radius: 0; outline: none; background: transparent; color: var(--paper); font: 13px var(--sans); }
.contact textarea { resize: vertical; }
.contact input:focus, .contact select:focus, .contact textarea:focus { border-color: var(--wine-bright); }
.contact select option { background: #111; }
.contact button { margin-top: 15px; }
.form-note { margin: 0; color: #777; font-size: 10px; text-align: center; }

footer { padding: 62px clamp(24px, 7vw, 110px) 28px; border-top: 1px solid var(--line); text-align: center; }
.footer-brand { justify-content: center; }
footer > p { margin: 25px 0 50px; color: var(--paper-muted); font-family: var(--serif); font-size: 21px; font-style: italic; }
footer > div { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); color: #777; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.floating-wa { position: fixed; right: 25px; bottom: 25px; z-index: 15; width: 58px; height: 58px; text-decoration: none; box-shadow: 0 9px 28px rgba(37, 211, 102, .42); animation: whatsapp-float 2.4s ease-in-out infinite; }
.floating-wa::before, .floating-wa::after { content: ""; position: absolute; inset: 0; z-index: -1; border: 2px solid rgba(37, 211, 102, .55); border-radius: 50%; animation: whatsapp-ring 2.4s ease-out infinite; }
.floating-wa::after { animation-delay: 1.2s; }
.floating-wa svg { width: 34px; height: 34px; }
.floating-wa:hover { background: #20ba5a; }

@keyframes whatsapp-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  45% { transform: translateY(-7px) rotate(-4deg); }
  55% { transform: translateY(-7px) rotate(4deg); }
}
@keyframes whatsapp-ring {
  0% { opacity: .75; transform: scale(.9); }
  75%, 100% { opacity: 0; transform: scale(1.65); }
}

.reveal { animation: reveal .8s ease both; }
.hero-brand.reveal { animation-delay: .16s; }
@keyframes reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes letter-fade-in {
  from { opacity: 0; filter: blur(6px); transform: translateY(18px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
@keyframes logo-coin-spin {
  0%, 100% { transform: rotateY(-58deg); }
  50% { transform: rotateY(58deg); }
}

@media (max-width: 960px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-brand { width: min(520px, 100%); }
  .logo-frame { width: min(510px, 80vw); }
  .manifesto-grid, .contact { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .plans { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .plan-card, .plan-intro { min-height: auto; }
  .plan-card.featured { transform: none; }
  .about-card { grid-template-columns: 1fr; }
  .about-monogram { min-height: 280px; font-size: 140px; }
}

@media (max-width: 620px) {
  .site-header { height: 70px; padding-inline: 18px; }
  .header-cta { font-size: 9px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { min-height: auto; padding: 62px 22px 72px; gap: 42px; }
  .hero-copy { width: 100%; }
  .eyebrow { margin-bottom: 16px; font-size: 9px; letter-spacing: .2em; }
  h1 { width: 100%; font-size: clamp(43px, 12.4vw, 58px); line-height: 1; }
  .hero-title-accent { margin-top: 5px; font-size: .91em; }
  .lead { margin-top: 25px; font-size: 14px; line-height: 1.65; }
  .hero-actions { margin-top: 30px; }
  .hero-brand { width: 100%; }
  .logo-frame { width: min(300px, 78vw); margin-inline: auto; padding: 24px; }
  .hero-brand p { margin-top: 14px; font-size: 16px; }
  .hero-actions { width: 100%; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 25px; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step h3 { margin-top: 22px; }
  .promise { padding-block: 85px; }
  .plan-card { padding-inline: 28px; }
  .plan-card.mobile-price-reveal {
    opacity: 0;
    transform: translateX(-72px);
    transition: opacity 1.15s ease, transform 1.15s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--price-delay, 0ms);
  }
  .plan-card.mobile-price-reveal.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
  .contact form { grid-template-columns: 1fr; }
  .contact form > * { grid-column: 1 / -1; }
  footer > div { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .plan-card.mobile-price-reveal { opacity: 1; transform: none; }
}
