:root {
  --taupe: #a38c7e;
  --taupe-deep: #6d5b51;
  --taupe-soft: #c8b3a6;
  --blush: #f0dfd5;
  --blush-light: #faf4f0;
  --paper: #fffaf7;
  --white: #ffffff;
  --ink: #4b3d36;
  --line: rgba(109, 91, 81, 0.18);
  --shadow: 0 22px 50px rgba(75, 61, 54, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--taupe);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--paper);
  overflow: hidden;
  animation: page-arrive .9s 1.05s cubic-bezier(.22, 1, .36, 1) both;
}

a { color: inherit; }

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fill { fill: currentColor; stroke: none; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--taupe-deep);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.page-intro {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--blush);
  pointer-events: none;
  animation: intro-exit .7s 1s cubic-bezier(.65, 0, .35, 1) forwards;
}

.page-intro img {
  display: block;
  width: min(88vw, 400px);
  height: auto;
  animation: intro-mark .8s cubic-bezier(.22, 1, .36, 1) both;
}

.page-intro p {
  margin: 0;
  color: var(--taupe-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: intro-copy .7s .2s ease both;
}

.page-intro p span { margin-right: 7px; font-family: Georgia, serif; }

@keyframes intro-mark {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes intro-copy {
  from { opacity: 0; letter-spacing: .3em; }
  to { opacity: 1; letter-spacing: .2em; }
}

@keyframes intro-exit {
  to { opacity: 0; visibility: hidden; transform: translateY(-2%); }
}

@keyframes page-arrive {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: max(24px, env(safe-area-inset-top)) 20px 34px;
  background: var(--blush);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 120px;
  height: 34px;
  right: -18px;
  top: 43%;
  border: 1px solid rgba(109, 91, 81, .42);
  border-radius: 100px;
}

.hero-inner { width: 100%; text-align: left; }

.brand-logo-frame {
  display: grid;
  width: 100%;
  min-height: 220px;
  margin: 0 0 20px;
  place-items: center;
}

.brand-logo {
  display: block;
  width: min(100%, 380px);
  height: auto;
  margin: 0 auto;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--taupe-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-kicker span { margin-right: 8px; font-family: Georgia, serif; font-size: 1rem; letter-spacing: 0; }

h1, h2, h3, p { overflow-wrap: anywhere; }

h1, h2 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Baskerville, Georgia, serif;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

h1 { max-width: 420px; font-size: clamp(3rem, 14vw, 4.2rem); }
h2 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
h1 em, h2 em { font-weight: 400; }

.title-star {
  display: inline-block;
  margin-left: .22em;
  color: var(--taupe);
  font-family: Georgia, serif;
  font-size: .3em;
  font-style: normal;
  line-height: 1;
  vertical-align: top;
  transform: translateY(.36em);
}

.eyebrow-star {
  display: inline-block;
  margin-right: .52em;
  color: var(--taupe);
  font-family: Georgia, serif;
  font-size: .78em;
  line-height: 1;
  vertical-align: middle;
}

.eyebrow-slashes {
  display: inline-block;
  margin-left: .48em;
  color: var(--taupe);
  font-family: Georgia, serif;
  font-size: .9em;
  font-weight: 400;
  letter-spacing: -.08em;
  opacity: .72;
}

.hero-copy {
  max-width: 390px;
  margin: 24px 0 26px;
  color: rgba(75, 61, 54, .78);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions { display: grid; gap: 10px; }
.secondary-actions { display: grid; grid-template-columns: minmax(0, 1fr) 56px; gap: 10px; }

.button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:active { transform: scale(.98); }
.button-primary { background: var(--taupe-deep); color: var(--white); box-shadow: 0 12px 28px rgba(75, 61, 54, .2); }
.button-copy { display: grid; min-width: 0; flex: 1; gap: 2px; text-align: left; }
.button-copy strong { font-size: .92rem; }
.button-copy small { font-size: .7rem; font-weight: 500; opacity: .76; }
.button-arrow { flex: none; margin-left: auto; }
.button-secondary { border-color: rgba(109, 91, 81, .35); background: rgba(255, 255, 255, .2); }
.button-icon { padding: 0; border-color: rgba(109, 91, 81, .35); background: rgba(255, 255, 255, .2); }
.button-light { margin-top: 26px; background: var(--blush); color: var(--taupe-deep); }

.availability {
  display: grid;
  gap: 5px;
  margin-top: 20px;
  color: rgba(75, 61, 54, .72);
  font-size: .75rem;
  font-weight: 600;
}

.availability span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--taupe-deep); box-shadow: 0 0 0 4px rgba(109, 91, 81, .1); }

.marquee { overflow: hidden; padding: 14px 0; background: var(--taupe); color: var(--blush-light); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 26px; animation: marquee 22s linear infinite; }
.marquee span { font-size: .74rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.marquee b { color: var(--blush); font-size: .65rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 72px 20px; }
.section-heading { margin: 0 0 32px; }
.section-heading > p:last-child { margin: 18px 0 0; color: rgba(75, 61, 54, .7); }

.services { background: var(--paper); }
.service-list { border-top: 1px solid var(--line); }
.service-card { border-bottom: 1px solid var(--line); }
.service-card summary { display: grid; min-height: 84px; grid-template-columns: 32px minmax(0, 1fr) 26px; align-items: center; gap: 9px; cursor: pointer; list-style: none; }
.service-card summary::-webkit-details-marker { display: none; }
.service-number { color: var(--taupe); font-family: Didot, Georgia, serif; font-size: .84rem; }
.service-name { font-family: Didot, "Bodoni 72", Georgia, serif; font-size: 1.42rem; font-weight: 600; letter-spacing: -.018em; line-height: 1.08; }
.service-toggle { position: relative; width: 24px; height: 24px; border: 1px solid rgba(109, 91, 81, .3); border-radius: 50%; }
.service-toggle::before, .service-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 1px; background: var(--taupe-deep); transform: translate(-50%, -50%); transition: transform .25s ease; }
.service-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.service-card[open] .service-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.service-content { padding: 0 0 24px 41px; }
.service-content p { margin: 0 0 18px; color: rgba(75, 61, 54, .72); font-size: .94rem; }
.service-content .service-whatsapp {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(109, 91, 81, .2);
  border-radius: 14px;
  color: var(--taupe-deep);
  background: var(--blush-light);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}
.service-whatsapp > span:first-child { display: grid; min-width: 0; gap: 3px; }
.service-whatsapp small { font-size: .68rem; font-weight: 600; opacity: .7; }

.about { background: var(--blush); }
.about-card { display: block; }
.about-card h2 { margin-bottom: 12px; }
.credentials { margin: 0 0 28px; color: var(--taupe-deep); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.about-card > p:not(.eyebrow):not(.credentials) { color: rgba(75, 61, 54, .78); }
.signature { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(109, 91, 81, .24); color: var(--taupe-deep); font-family: Didot, "Bodoni 72", Georgia, serif; font-size: 1.45rem; line-height: 1.15; }
.signature em { display: block; font-weight: 400; }

.process { background: var(--paper); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--blush); color: var(--taupe-deep); font-family: Didot, Georgia, serif; }
.process-list h3 { margin: 2px 0 5px; font-family: Didot, "Bodoni 72", Georgia, serif; font-size: 1.23rem; font-weight: 600; letter-spacing: -.01em; line-height: 1.15; }
.process-list p { margin: 0; color: rgba(75, 61, 54, .68); font-size: .94rem; }

.contact { padding-top: 14px; background: var(--paper); }
.contact-card { margin: 0; padding: 38px 24px; border-radius: var(--radius); background: var(--taupe-deep); color: var(--white); box-shadow: var(--shadow); }
.contact-card .eyebrow { color: var(--blush); }
.contact-card .eyebrow-star,
.contact-card .eyebrow-slashes { color: var(--blush); }
.contact-card h2 { font-size: clamp(2.5rem, 12vw, 3.4rem); }
.contact-card > p:not(.eyebrow) { color: rgba(255, 255, 255, .76); }
.contact-links { display: grid; gap: 7px; margin-top: 24px; font-size: .82rem; }
.contact-links a { width: fit-content; max-width: 100%; color: rgba(255, 255, 255, .8); text-underline-offset: 4px; overflow-wrap: anywhere; }

footer { padding: 36px 20px 108px; text-align: center; color: rgba(75, 61, 54, .65); font-size: .73rem; }
footer p { margin: 3px 0; }
.legal-note { margin: 14px auto !important; }
.copyright { margin-top: 14px; color: var(--taupe-deep); font-weight: 700; }

.floating-whatsapp { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 20; display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; background: var(--taupe-deep); color: var(--white); box-shadow: 0 12px 30px rgba(75, 61, 54, .25); }
.floating-whatsapp svg { width: 24px; height: 24px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 481px) {
  main { box-shadow: 0 0 60px rgba(75, 61, 54, .26); }
}

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