:root {
  --salmon-50: #fff8f5;
  --salmon-100: #fcece7;
  --salmon-200: #f8d7cf;
  --salmon-300: #f1b7ac;
  --salmon-400: #e99186;
  --salmon-500: #de6f69;
  --salmon-600: #c95755;
  --salmon-700: #a74344;
  --rose-dark: #462f34;
  --ink: #312a2c;
  --muted: #6e6265;
  --cream: #fffdfb;
  --white: #ffffff;
  --line: rgba(167, 67, 68, .15);
  --green: #20c863;
  --shadow-sm: 0 10px 30px rgba(92, 48, 55, .08);
  --shadow-md: 0 22px 55px rgba(92, 48, 55, .13);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --container: min(1160px, calc(100% - 40px));
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 251, .75);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 253, 251, .94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(69, 45, 50, .07);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand {
  color: var(--salmon-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { position: relative; font-weight: 650; font-size: .95rem; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--salmon-500);
  transition: right .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta { margin-left: 8px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 22px;
  border: 1px solid var(--salmon-500);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--salmon-500), var(--salmon-600));
  color: var(--white);
  font-weight: 750;
  line-height: 1.2;
  box-shadow: 0 12px 25px rgba(201, 87, 85, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(201, 87, 85, .27); }
.button:focus-visible, .menu-button:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid rgba(222, 111, 105, .35); outline-offset: 4px; }
.button svg { width: 21px; height: 21px; fill: currentColor; }
.button-small { min-height: 46px; padding: 11px 18px; border-radius: 14px; font-size: .9rem; }
.button-outline { background: rgba(255, 255, 255, .65); color: var(--salmon-600); box-shadow: none; }
.button-outline:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.button-light { color: var(--salmon-600); background: var(--white); border-color: var(--white); box-shadow: 0 16px 35px rgba(89, 45, 51, .17); }

.menu-button { display: none; width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-button svg { width: 26px; height: 26px; }
.close-icon { display: none; }
.menu-button[aria-expanded="true"] .menu-icon { display: none; }
.menu-button[aria-expanded="true"] .close-icon { display: block; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  padding-top: calc(var(--header-height) + 40px);
  background:
    radial-gradient(circle at 14% 18%, rgba(248, 215, 207, .65), transparent 23%),
    linear-gradient(180deg, #fffdfb 0%, #fff9f6 100%);
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: -8%;
  right: 36%;
  bottom: -120px;
  height: 320px;
  z-index: -2;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(110deg, rgba(252, 236, 231, .65), rgba(241, 183, 172, .25));
  transform: rotate(-5deg);
}
.hero-decoration { position: absolute; z-index: -1; border-radius: 44% 56% 62% 38% / 45% 42% 58% 55%; filter: blur(.1px); }
.hero-decoration-one { width: 560px; height: 600px; right: -130px; top: 90px; background: rgba(241, 183, 172, .42); transform: rotate(-12deg); }
.hero-decoration-two { width: 430px; height: 430px; right: 230px; top: 240px; background: rgba(252, 236, 231, .78); transform: rotate(18deg); }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 54px; }
.hero-content { position: relative; z-index: 3; max-width: 610px; padding: 34px 0 70px; }
.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--salmon-100);
  color: var(--salmon-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .about-content h2, .faq-intro h2, .contact-copy h2 {
  margin: 0;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.hero h1 { max-width: 650px; font-size: clamp(3rem, 5.35vw, 5.05rem); }
.hero h1 span { color: var(--salmon-600); }
.hero-copy { max-width: 580px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.16rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.location-line { display: flex; align-items: center; gap: 9px; margin: 26px 0 0; color: var(--muted); font-size: .95rem; font-weight: 650; }
.location-line svg { width: 20px; height: 20px; fill: var(--salmon-500); }

.hero-visual { position: relative; align-self: end; min-height: 650px; }
.hero-visual img { position: absolute; z-index: 3; right: -30px; bottom: 0; width: min(100%, 620px); height: auto; filter: drop-shadow(0 28px 35px rgba(62, 34, 39, .16)); }
.portrait-backdrop { position: absolute; right: -20px; bottom: 0; width: 590px; height: 590px; border-radius: 46% 54% 20% 20% / 53% 46% 20% 20%; background: linear-gradient(145deg, var(--salmon-100), var(--salmon-300)); transform: rotate(-5deg); }
.portrait-ring { position: absolute; right: 44px; bottom: 125px; width: 450px; height: 450px; border: 1px solid rgba(201, 87, 85, .25); border-radius: 50%; }
.trust-card { position: absolute; z-index: 5; display: grid; min-width: 180px; padding: 15px 18px; border: 1px solid rgba(255, 255, 255, .8); border-radius: 17px; background: rgba(255, 255, 255, .78); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.trust-card strong { color: var(--rose-dark); font-size: .9rem; }
.trust-card span { color: var(--muted); font-size: .78rem; }
.trust-card-top { right: -10px; top: 120px; }
.trust-card-bottom { left: -24px; bottom: 90px; }

.section-heading { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .about-content h2, .faq-intro h2 { font-size: clamp(2.25rem, 4vw, 3.65rem); }
.section-heading p:not(.eyebrow), .faq-intro > p:last-child { max-width: 650px; margin: 18px auto 0; color: var(--muted); }
.section-heading.compact { margin-bottom: 42px; }

.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -70px; bottom: -70px; border-radius: 50%; background: var(--salmon-100); transition: transform .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(222, 111, 105, .35); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scale(1.25); }
.icon-shell { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 28px; border-radius: 18px; color: var(--white); background: linear-gradient(135deg, var(--salmon-400), var(--salmon-600)); box-shadow: 0 12px 24px rgba(201, 87, 85, .18); }
.icon-shell svg { width: 30px; height: 30px; fill: currentColor; }
.service-card h3 { position: relative; z-index: 1; margin: 0 0 10px; font-size: 1.2rem; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); }

.process { background: linear-gradient(180deg, var(--salmon-50), var(--salmon-100)); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.process-grid::before { content: ""; position: absolute; top: 52px; left: 11%; right: 11%; border-top: 2px dashed rgba(201, 87, 85, .25); }
.process-card { position: relative; z-index: 1; padding: 28px 22px 26px; border: 1px solid rgba(167, 67, 68, .12); border-radius: var(--radius-sm); background: rgba(255, 255, 255, .8); text-align: center; box-shadow: 0 12px 30px rgba(92, 48, 55, .07); }
.step-number { position: absolute; top: 14px; left: 14px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--white); background: var(--salmon-500); font-size: .85rem; font-weight: 850; }
.process-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; color: var(--white); background: linear-gradient(145deg, var(--salmon-300), var(--salmon-500)); }
.process-icon svg { width: 34px; height: 34px; fill: currentColor; }
.process-card h3 { min-height: 52px; margin: 0; font-size: 1.08rem; line-height: 1.3; }
.process-card p { margin: 12px 0 0; color: var(--muted); font-size: .92rem; }

.about { position: relative; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 78px; }
.about-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 560px;
  padding: 20px 28px 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--salmon-100), var(--salmon-200));
  box-shadow: var(--shadow-md);
}
.about-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 540px;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 30px rgba(70, 47, 52, .12));
}
.about-shape { position: absolute; inset: 12% -20% auto 15%; height: 360px; border-radius: 45% 55% 60% 40%; background: rgba(255, 255, 255, .55); transform: rotate(-10deg); }
.about-content > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 1.05rem; }
.text-link { display: inline-flex; gap: 8px; margin-top: 28px; color: var(--salmon-700); font-weight: 800; }
.value-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 54px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(120deg, #fff 0%, var(--salmon-50) 100%); box-shadow: var(--shadow-sm); }
.value-strip article { display: flex; align-items: center; gap: 16px; padding: 8px 26px; }
.value-strip article + article { border-left: 1px solid var(--line); }
.value-strip article > span { display: grid; place-items: center; flex: 0 0 54px; height: 54px; border-radius: 50%; color: var(--salmon-600); background: var(--salmon-100); }
.value-strip svg { width: 27px; height: 27px; fill: none; stroke: currentColor; }
.value-strip strong { display: block; color: var(--rose-dark); line-height: 1.3; }
.value-strip p { margin: 5px 0 0; color: var(--muted); font-size: .85rem; line-height: 1.4; }

.faq { background: var(--salmon-50); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 78px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { max-width: 480px; }
.accordion details { border-bottom: 1px solid rgba(167, 67, 68, .16); }
.accordion summary { position: relative; padding: 22px 50px 22px 0; cursor: pointer; list-style: none; color: var(--rose-dark); font-weight: 780; font-size: 1.05rem; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; top: 50%; right: 4px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: var(--salmon-600); background: var(--salmon-100); transform: translateY(-50%); transition: transform .2s ease; }
.accordion details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion details p { margin: -4px 40px 22px 0; color: var(--muted); }

.contact { padding-top: 72px; background: var(--cream); }
.contact-card { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding: 44px 46px; border-radius: var(--radius-md); color: var(--white); background: linear-gradient(125deg, var(--salmon-600), var(--salmon-500)); box-shadow: 0 28px 55px rgba(167, 67, 68, .25); overflow: hidden; }
.contact-card::after { content: ""; position: absolute; right: -80px; bottom: -100px; width: 280px; height: 280px; border-radius: 50%; border: 45px solid rgba(255, 255, 255, .08); }
.contact-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 84px; height: 84px; border: 2px solid rgba(255, 255, 255, .45); border-radius: 50%; }
.contact-icon svg { width: 44px; height: 44px; fill: currentColor; }
.contact-copy { position: relative; z-index: 1; max-width: 600px; }
.eyebrow-light { margin-bottom: 14px; color: var(--white); background: rgba(255, 255, 255, .14); }
.contact-copy h2 { color: var(--white); font-size: clamp(2rem, 3.2vw, 3rem); }
.contact-copy p:last-child { margin: 14px 0 0; color: rgba(255, 255, 255, .88); }
.contact-card .button { position: relative; z-index: 1; white-space: nowrap; }

.site-footer { padding: 64px 0 28px; background: #fffaf7; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); align-items: center; gap: 30px; }
.footer-brand { display: inline-block; margin-bottom: 6px; }
.footer-grid > div:first-child p { max-width: 210px; margin: 0; color: var(--muted); font-size: .9rem; }
.footer-item { display: flex; align-items: center; gap: 12px; }
.footer-item > svg { width: 27px; height: 27px; fill: var(--salmon-500); }
.footer-item span, .footer-item strong { display: block; }
.footer-item span { color: var(--muted); font-size: .77rem; }
.footer-item strong { color: var(--rose-dark); font-size: .92rem; line-height: 1.3; }
a.footer-item:hover strong { color: var(--salmon-600); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--salmon-700); font-weight: 700; }

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 18px 10px 12px;
  border: 3px solid rgba(255, 255, 255, .95);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(18, 125, 64, .35);
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease;
}
.floating-whatsapp::before { content: ""; position: absolute; inset: -7px; z-index: -1; border-radius: inherit; border: 1px solid rgba(32, 200, 99, .35); animation: whatsappPulse 2.4s ease-out infinite; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 38px rgba(18, 125, 64, .42); }
.floating-whatsapp svg { width: 31px; height: 31px; fill: currentColor; }
@keyframes whatsappPulse { 0% { transform: scale(.94); opacity: .8; } 75%, 100% { transform: scale(1.25); opacity: 0; } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1060px) {
  :root { --container: min(100% - 32px, 960px); }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: grid; place-items: center; margin-left: auto; }
  .mobile-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; gap: 4px; padding: 20px; border-bottom: 1px solid var(--line); background: rgba(255, 253, 251, .98); box-shadow: var(--shadow-md); transform: translateY(-140%); visibility: hidden; transition: transform .28s ease, visibility .28s ease; }
  .mobile-nav.is-open { transform: translateY(0); visibility: visible; }
  .mobile-nav > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .mobile-nav .button { margin-top: 10px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-visual img { right: -90px; width: 590px; max-width: none; }
  .portrait-backdrop { right: -80px; }
  .trust-card { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .about-grid, .faq-grid { gap: 48px; }
  .value-strip article { padding-inline: 16px; }
  .contact-card { grid-template-columns: auto 1fr; }
  .contact-card .button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 28px); }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding-bottom: 20px; }
  .hero h1 { font-size: clamp(2.75rem, 11vw, 4.5rem); }
  .hero-visual { min-height: 590px; margin-top: -10px; }
  .hero-visual img { right: 50%; width: min(680px, 118vw); transform: translateX(54%); }
  .portrait-backdrop { left: 50%; right: auto; width: min(590px, 95vw); transform: translateX(-48%) rotate(-5deg); }
  .portrait-ring { right: 50%; transform: translateX(57%); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 520px; max-width: 650px; width: 100%; margin-inline: auto; }
  .about-visual img { height: 500px; }
  .about-content { max-width: 700px; }
  .value-strip { grid-template-columns: 1fr; padding: 12px 24px; }
  .value-strip article { padding: 18px 0; }
  .value-strip article + article { border-left: 0; border-top: 1px solid var(--line); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .contact-card { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 42px 28px; }
  .contact-copy { max-width: 650px; }
  .contact-card .button { grid-column: auto; justify-self: center; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 28px); --header-height: 72px; }
  .section { padding: 70px 0; }
  .brand { font-size: 1.52rem; }
  .hero::before { display: none; }
  .hero-decoration-one { width: 390px; height: 450px; right: -180px; top: 330px; }
  .hero-decoration-two { width: 300px; height: 310px; right: 50px; top: 490px; }
  .hero-content { padding-top: 24px; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 3.65rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .location-line { align-items: flex-start; }
  .hero-visual { min-height: 480px; }
  .hero-visual img { width: 560px; right: 48%; transform: translateX(54%); }
  .portrait-backdrop { width: 440px; height: 440px; }
  .portrait-ring { width: 340px; height: 340px; bottom: 80px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .about-content h2, .faq-intro h2 { font-size: 2.35rem; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 26px; }
  .process-card h3 { min-height: 0; }
  .about-visual { min-height: 430px; padding: 16px 18px 0; }
  .about-visual img { width: auto; height: 414px; max-width: 100%; }
  .contact { padding-top: 48px; }
  .contact-card { border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 62px; height: 62px; min-height: 0; padding: 0; justify-content: center; }
  .floating-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .floating-whatsapp svg { width: 34px; height: 34px; }
}
