:root {
  --ink: #171411;
  --muted: #6f685f;
  --green: #242e28;
  --green-2: #47594e;
  --cream: #eee5d6;
  --paper: #f7f1e7;
  --bone: #fbf7ef;
  --gold: #b7925d;
  --gold-soft: #dfc69e;
  --red: #702b24;
  --line: #d8cdbd;
  --danger: #9b3f35;
  --success: #326a50;
  --shadow: 0 28px 90px rgba(23, 20, 17, .14);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Manrope", system-ui, sans-serif; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--red); color: white; }

.top-ribbon { overflow: hidden; background: var(--red); color: #f7e9d3; height: 34px; display: flex; align-items: center; }
.ribbon-track { min-width: max-content; display: flex; align-items: center; gap: 24px; padding-left: 24px; font-size: 9px; font-weight: 800; letter-spacing: .22em; animation: ribbon 28s linear infinite; }
.ribbon-track i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-soft); }
@keyframes ribbon { to { transform: translateX(-50%); } }

.site-header { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 82px; padding: 12px clamp(18px, 5vw, 76px); background: rgba(247, 241, 231, .91); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(23,20,17,.13); }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { width: 48px; height: 48px; position: relative; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: "Cormorant Garamond", serif; }
.brand-mark::after { content: ""; position: absolute; inset: 5px; border: 1px solid var(--gold); border-radius: 50%; }
.brand-mark b, .brand-mark em { position: absolute; font-size: 21px; line-height: 1; font-style: normal; z-index: 1; }
.brand-mark b { transform: translate(-5px, -2px); }
.brand-mark em { transform: translate(6px, 5px); color: var(--red); }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-size: 15px; letter-spacing: .17em; line-height: 1.15; }
.brand-copy small { color: var(--muted); font-size: 10px; margin-top: 4px; }
nav { display: flex; align-items: center; gap: 28px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
nav > a:not(.nav-cta) { position: relative; }
nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--red); transition: right .2s ease; }
nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 18px; background: var(--ink); color: white; padding: 12px 17px; }
.nav-cta span { color: var(--gold-soft); font-size: 17px; }

.hero { min-height: 760px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); }
.hero-copy { padding: clamp(68px, 9vw, 138px) clamp(24px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.hero-kicker { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.hero-kicker > span { font-family: "Cormorant Garamond", serif; color: var(--red); font-size: 43px; line-height: .82; }
.hero-kicker p { margin: 0; padding-left: 18px; border-left: 1px solid var(--gold); color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 800; line-height: 1.7; }
h1, h2, h3 { margin-top: 0; line-height: 1.02; }
h1, h2 { font-family: "Cormorant Garamond", serif; }
h1 { margin: 0 0 28px; font-size: clamp(56px, 7.5vw, 104px); font-weight: 600; letter-spacing: -.045em; }
h1 em, h2 em { font-weight: 500; color: var(--red); }
h2 { margin: 10px 0 18px; font-size: clamp(44px, 5.6vw, 76px); font-weight: 600; letter-spacing: -.035em; }
h3 { margin-bottom: 9px; }
.hero-lead { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); }
.hero-actions, .step-actions { display: flex; gap: 11px; flex-wrap: wrap; margin-top: 31px; }
.button { border: 0; border-radius: 0; min-height: 50px; padding: 13px 19px; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; display: inline-flex; align-items: center; justify-content: center; gap: 22px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--red); color: white; box-shadow: 8px 8px 0 rgba(112,43,36,.13); }
.button.primary:hover { box-shadow: 11px 11px 0 rgba(112,43,36,.13); }
.button.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.button.whatsapp { background: #245a45; color: white; }
.button.full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 47px; padding-top: 21px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.trust-row span { display: flex; align-items: center; gap: 9px; }
.trust-row b { color: var(--red); font-family: "Cormorant Garamond", serif; font-size: 16px; }

.hero-art { min-height: 680px; position: relative; padding: clamp(26px, 5vw, 70px); background: var(--ink); overflow: hidden; display: grid; place-items: center; }
.hero-art::before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 48px 48px; }
.hero-art::after { content: ""; position: absolute; width: 470px; height: 470px; border-radius: 50%; border: 1px solid rgba(183,146,93,.22); box-shadow: 0 0 0 70px rgba(183,146,93,.035), 0 0 0 140px rgba(183,146,93,.02); }
.art-frame { width: min(500px, 100%); aspect-ratio: .78; position: relative; border: 1px solid rgba(223,198,158,.42); display: flex; align-items: center; justify-content: center; z-index: 1; background: linear-gradient(150deg, rgba(255,255,255,.04), transparent 50%); }
.art-frame::before, .art-frame::after { content: ""; position: absolute; width: 38px; height: 38px; }
.art-frame::before { top: -1px; left: -1px; border-top: 4px solid var(--gold); border-left: 4px solid var(--gold); }
.art-frame::after { right: -1px; bottom: -1px; border-right: 4px solid var(--red); border-bottom: 4px solid var(--red); }
.art-code { position: absolute; top: 18px; left: 20px; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .2em; }
.therapy-seal { width: 290px; height: 290px; position: relative; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(223,198,158,.7); }
.therapy-seal::before, .therapy-seal::after { content: ""; position: absolute; border-radius: 50%; }
.therapy-seal::before { inset: 19px; border: 1px dashed rgba(223,198,158,.35); }
.therapy-seal::after { inset: 58px; background: var(--red); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 20px 50px rgba(0,0,0,.3); }
.seal-orbit { position: absolute; inset: 0; display: grid; place-items: start center; padding-top: 7px; color: var(--gold-soft); font-size: 9px; font-weight: 800; letter-spacing: .27em; }
.seal-core { position: relative; z-index: 2; color: #f9ead3; text-align: center; display: flex; flex-direction: column; align-items: center; }
.seal-core strong { font-family: "Cormorant Garamond", serif; font-size: 84px; font-weight: 500; line-height: .8; }
.seal-core small { font-size: 7px; letter-spacing: .22em; }
.art-strokes { position: absolute; inset: auto 0 70px; display: flex; align-items: flex-end; justify-content: center; gap: 8px; opacity: .32; }
.art-strokes i { display: block; width: 2px; background: var(--gold-soft); }
.art-strokes i:nth-child(1) { height: 35px; }.art-strokes i:nth-child(2) { height: 52px; }.art-strokes i:nth-child(3) { height: 72px; }.art-strokes i:nth-child(4) { height: 52px; }.art-strokes i:nth-child(5) { height: 35px; }
.art-caption { position: absolute; left: 22px; right: 22px; bottom: 20px; display: flex; justify-content: space-between; align-items: end; gap: 18px; color: white; }
.art-caption span { color: rgba(255,255,255,.45); font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.art-caption b { max-width: 185px; font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 500; line-height: 1; text-align: right; }
.floating-note { position: absolute; z-index: 2; right: clamp(16px, 3vw, 44px); bottom: clamp(18px, 4vw, 50px); background: var(--gold-soft); color: var(--ink); padding: 10px 14px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.floating-note span { color: var(--red); margin-right: 7px; }

.manifesto-strip { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 35px; padding: 29px clamp(20px, 7vw, 110px); background: var(--gold-soft); border-bottom: 1px solid var(--ink); }
.manifesto-strip p { max-width: 820px; margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(21px, 2.4vw, 32px); line-height: 1.12; }
.manifesto-strip span { font-size: 8px; font-weight: 800; letter-spacing: .22em; writing-mode: vertical-rl; }

.section { padding: 110px clamp(20px, 7vw, 110px); }
.section-heading { max-width: 850px; margin-bottom: 44px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 70px; }
.split-heading p { margin: 0 0 18px; max-width: 520px; color: var(--muted); }
.eyebrow { display: inline-block; color: var(--red); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; }

.services-section { background: #ebe0cf; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.service-card { position: relative; padding: 28px; background: transparent; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: flex; flex-direction: column; min-height: 420px; transition: background .22s ease, color .22s ease, transform .22s ease; }
.service-card::after { content: "↗"; position: absolute; top: 25px; right: 25px; font-size: 18px; opacity: .35; }
.service-card:hover { background: var(--bone); transform: translateY(-5px); box-shadow: var(--shadow); z-index: 2; }
.service-card.featured { background: var(--red); color: white; }
.service-card.featured:hover { background: #5f211c; }
.service-card .tag { display: inline-flex; align-self: flex-start; padding-bottom: 8px; border-bottom: 1px solid currentColor; color: var(--red); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.service-card.featured .tag { color: var(--gold-soft); }
.service-card h3 { margin: 30px 0 11px; font-family: "Cormorant Garamond", serif; font-size: 35px; font-weight: 600; }
.service-card p { color: var(--muted); font-size: 13px; }
.service-card.featured p { color: rgba(255,255,255,.65); }
.service-details { list-style: none; padding: 0; margin: 15px 0 25px; font-size: 12px; }
.service-details li { padding: 5px 0; border-bottom: 1px solid rgba(23,20,17,.08); }
.service-card.featured .service-details li { border-color: rgba(255,255,255,.12); }
.service-details li::before { content: "—"; margin-right: 9px; color: var(--gold); font-weight: 800; }
.service-price { margin-top: auto; display: flex; align-items: end; justify-content: space-between; gap: 12px; padding-top: 20px; border-top: 1px solid currentColor; }
.service-price strong { font-family: "Cormorant Garamond", serif; font-size: 38px; font-weight: 600; }
.service-price small { color: var(--muted); display: block; font-size: 10px; }
.service-card.featured .service-price small { color: rgba(255,255,255,.6); }
.service-book { padding: 10px 13px; border: 1px solid currentColor; border-radius: 0; background: transparent; color: inherit; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.service-book:hover { background: var(--ink); color: white; border-color: var(--ink); }
.service-card.featured .service-book:hover { background: var(--gold-soft); color: var(--ink); border-color: var(--gold-soft); }

.process-section { background: var(--ink); color: white; display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.process-title { position: sticky; top: 120px; align-self: start; }
.process-title .eyebrow { color: var(--gold-soft); }
.process-title h2 em { color: var(--gold-soft); }
.steps-grid { border-top: 1px solid rgba(255,255,255,.25); }
.steps-grid article { display: grid; grid-template-columns: 95px 1fr; gap: 22px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.steps-grid article > span { font-family: "Cormorant Garamond", serif; color: var(--gold-soft); font-size: 38px; }
.steps-grid h3 { margin: 0 0 7px; font-family: "Cormorant Garamond", serif; font-size: 29px; font-weight: 500; }
.steps-grid p { color: rgba(255,255,255,.55); margin: 0; font-size: 13px; }

.booking-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 7vw, 100px); align-items: start; background: var(--bone); }
.booking-intro { position: sticky; top: 120px; }
.booking-intro > p { max-width: 440px; color: var(--muted); }
.booking-aside { margin-top: 35px; width: min(280px, 100%); padding: 19px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.booking-aside > span { display: block; color: var(--red); font-size: 8px; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.booking-aside strong { display: block; margin-top: 4px; font-family: "Cormorant Garamond", serif; font-size: 46px; line-height: 1; }
.booking-aside p { margin: 8px 0 0; color: var(--muted); font-size: 11px; }
.booking-card { background: var(--paper); border: 1px solid var(--ink); border-radius: 0; box-shadow: 14px 14px 0 var(--gold-soft); padding: clamp(24px, 4vw, 46px); }
.booking-card-top { display: flex; justify-content: space-between; gap: 20px; margin: calc(clamp(24px, 4vw, 46px) * -1) calc(clamp(24px, 4vw, 46px) * -1) 35px; padding: 12px 16px; background: var(--ink); color: white; font-size: 8px; letter-spacing: .15em; }
.booking-card-top b { color: #89c8a7; font-weight: 700; }
.form-step { display: none; }
.form-step.active { display: block; }
.step-head { margin-bottom: 27px; }
.step-head span { color: var(--red); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.step-head h3 { margin: 7px 0 0; font-family: "Cormorant Garamond", serif; font-size: 34px; font-weight: 600; }
label { display: block; margin-bottom: 18px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
label small { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
input, select, textarea { width: 100%; margin-top: 8px; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; padding: 13px 2px; color: var(--ink); background: transparent; outline: none; text-transform: none; letter-spacing: 0; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 2px 0 var(--red); }
.form-grid.two { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.price-summary, .final-summary { background: var(--cream); border-left: 4px solid var(--red); padding: 17px 19px; margin: 10px 0 22px; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; font-size: 12px; }
.summary-row.total { border-top: 1px solid #c7b79d; margin-top: 8px; padding-top: 14px; font-weight: 800; }
.check-row { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 12px; }
.check-row input { width: auto; margin-top: 5px; }
.check-row a { text-decoration: underline; color: var(--red); }
.form-message { min-height: 24px; margin-bottom: 0; color: var(--danger); font-size: 12px; }
.booking-success { text-align: center; }
.success-icon { width: 70px; height: 70px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 32px; font-weight: 800; }
.success-card { text-align: left; background: var(--cream); border-left: 4px solid var(--success); padding: 18px; margin: 20px 0; }
.booking-success .button { margin-top: 10px; }

.safety { background: var(--red); color: white; display: grid; grid-template-columns: auto .75fr 1.25fr; gap: 42px; align-items: center; }
.safety-number { font-family: "Cormorant Garamond", serif; color: rgba(255,255,255,.25); font-size: 112px; line-height: .8; }
.safety .eyebrow { color: var(--gold-soft); }
.safety h2 { font-size: clamp(38px, 4.2vw, 60px); margin-bottom: 0; }
.safety h2 em { color: var(--gold-soft); }
.safety p { color: rgba(255,255,255,.68); font-size: 14px; margin: 0; }

footer { padding: 48px clamp(20px, 7vw, 110px) 78px; display: grid; grid-template-columns: 1fr auto; gap: 24px; background: #0f0d0b; color: white; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand .brand-mark { border-color: rgba(255,255,255,.6); }
.footer-brand strong { letter-spacing: .17em; font-size: 14px; }
.footer-brand p, footer small { color: rgba(255,255,255,.45); margin: 4px 0 0; font-size: 10px; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
footer small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-bar { display: none; }
.error-box { padding: 14px; background: #fff0ed; color: var(--danger); font-size: 13px; }
.loading-card { min-height: 240px; display: grid; place-items: center; border: 1px dashed var(--line); color: var(--muted); }

/* Admin compatibility */
.admin-wrap h1, .login-card h1 { font-family: "Cormorant Garamond", serif; }
.admin-wrap .button { border-radius: 0; }
.admin-wrap input, .admin-wrap select, .admin-wrap textarea { background: white; padding-left: 10px; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 45px; padding-right: 45px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading { gap: 35px; }
}

@media (max-width: 860px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 75px 28px; }
  .hero-art { min-height: 610px; }
  .split-heading, .process-section, .booking-section { grid-template-columns: 1fr; }
  .process-title, .booking-intro { position: static; }
  .process-section { gap: 35px; }
  .safety { grid-template-columns: auto 1fr; }
  .safety p { grid-column: 2; }
}

@media (max-width: 620px) {
  body { padding-bottom: 66px; }
  .top-ribbon { height: 29px; }
  .site-header { min-height: 69px; padding: 9px 14px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 12px; }
  .nav-cta { padding: 10px 12px; font-size: 9px; }
  .hero { min-height: auto; }
  .hero-copy { padding: 58px 19px 65px; }
  h1 { font-size: 54px; }
  h2 { font-size: 46px; }
  .hero-lead { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .hero-art { min-height: 500px; padding: 28px 18px; }
  .art-frame { max-height: 440px; }
  .therapy-seal { width: 240px; height: 240px; }
  .seal-core strong { font-size: 69px; }
  .manifesto-strip { grid-template-columns: 1fr; gap: 10px; }
  .manifesto-strip span { writing-mode: initial; }
  .section { padding: 78px 18px; }
  .split-heading { display: block; }
  .split-heading p { margin-top: 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .steps-grid article { grid-template-columns: 64px 1fr; }
  .booking-card { padding: 24px 17px; box-shadow: 7px 7px 0 var(--gold-soft); }
  .booking-card-top { margin: -24px -17px 30px; }
  .form-grid.two { grid-template-columns: 1fr; gap: 0; }
  .step-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .step-actions .button { width: 100%; }
  .safety { grid-template-columns: 1fr; gap: 20px; }
  .safety-number { font-size: 76px; }
  .safety p { grid-column: auto; }
  footer { grid-template-columns: 1fr; padding-bottom: 35px; }
  footer small { grid-column: auto; }
  .mobile-bar { position: fixed; z-index: 40; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); border-top: 1px solid var(--ink); box-shadow: 0 -8px 30px rgba(0,0,0,.09); }
  .mobile-bar a { text-align: center; padding: 15px 8px; font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-bar a:first-child { background: var(--red); color: white; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}