:root {
  --ink: #302724;
  --ink-soft: #665852;
  --cream: #fbf6ed;
  --cream-deep: #f2e6d6;
  --paper: #fffdf8;
  --terracotta: #a94f3d;
  --terracotta-dark: #7b352c;
  --amber: #d8994d;
  --olive: #74724f;
  --line: rgba(71, 48, 40, .15);
  --shadow: 0 18px 55px rgba(77, 47, 36, .13);
  --radius: 1.3rem;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 8.5rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(var(--container), calc(100% - 3rem)); margin-inline: auto; }
.skip-link { position: fixed; top: .5rem; left: .5rem; z-index: 1000; padding: .7rem 1rem; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 .8rem; color: var(--terracotta); font-size: .75rem; font-weight: 700; letter-spacing: .16em; line-height: 1.4; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: inherit; font-weight: 500; line-height: 1.18; }
h1 { margin-bottom: 1.4rem; font-size: clamp(2.65rem, 5.5vw, 5.6rem); letter-spacing: -.035em; }
h2 { margin-bottom: 1rem; font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.025em; }
h3 { font-size: 1.35rem; }
p { margin-top: 0; }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.section-heading { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 3rem; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 37rem; margin: 0 0 .5rem auto; color: var(--ink-soft); }

.site-header { position: relative; z-index: 100; background: #712d18; box-shadow: 0 5px 22px rgba(64, 29, 18, .18); }
.nav-bar { background: #712d18; color: white; }
.nav-inner { min-height: 5.25rem; display: grid; grid-template-columns: 200px minmax(0, 1fr) auto; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav-brand { width: 200px; height: 50px; display: flex; align-items: center; flex: 0 0 auto; }
.nav-brand img { width: 200px; height: 50px; object-fit: contain; image-rendering: auto; }
.main-nav { display: flex; align-items: stretch; justify-content: center; gap: clamp(1rem, 2vw, 2rem); align-self: stretch; }
.main-nav a { position: relative; display: flex; align-items: center; font-size: .86rem; font-weight: 600; letter-spacing: .025em; color: rgba(255,255,255,.8); transition: color .2s ease; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--amber); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover, .main-nav a.active { color: white; }
.main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: .42rem; }
.header-phone { margin-right: .25rem; color: white; font-size: .82rem; font-weight: 700; white-space: nowrap; }
.action-button { width: 2.35rem; height: 2.35rem; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(255,255,255,.08); color: white; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.action-button:hover { border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.17); transform: translateY(-2px); }
.action-button svg { width: 1.05rem; height: 1.05rem; }
.whatsapp-action { border-color: #4ba578; background: #208b5e; }
.whatsapp-action:hover { border-color: #65bf91; background: #176f4a; }
.whatsapp-action svg { width: 1.16rem; height: 1.16rem; fill: currentColor; stroke: none; }
.language-switcher { position: relative; height: 2.35rem; display: flex; align-items: center; align-self: center; margin: 0; }
.language-switcher summary { position: relative; width: 3.5rem; height: 2.35rem; display: flex; align-items: center; justify-content: center; margin: 0; padding: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); color: #fff; -webkit-text-fill-color: #fff; font-size: .75rem; font-weight: 700; line-height: 1; text-align: center; cursor: pointer; list-style: none; }
.language-switcher summary span { display: block; transform: translateX(-.2rem); }
.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher summary::after { content: ""; position: absolute; top: 50%; left: calc(50% + .42rem + 2px); width: .3rem; height: .3rem; margin-top: -.23rem; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }
.language-switcher[open] summary::after { margin-top: -.05rem; transform: rotate(225deg); }
.language-menu { position: absolute; top: calc(100% + .7rem); right: 0; min-width: 5rem; overflow: hidden; border-radius: .65rem; background: var(--paper); color: var(--ink); box-shadow: 0 15px 36px rgba(42, 24, 18, .25); }
.language-menu a { display: block; padding: .58rem .85rem; font-size: .76rem; font-weight: 700; }
.language-menu a:hover, .language-menu a.current { background: var(--cream-deep); color: var(--terracotta-dark); }
.menu-toggle { display: none; }
.icon-button { align-items: center; justify-content: center; border: 0; background: none; cursor: pointer; }

.hero { position: relative; min-height: min(740px, calc(100vh - 5.25rem)); display: grid; align-items: center; overflow: hidden; color: white; }
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image { background: url("assets/images/about-team.jpg") center 43% / cover no-repeat; transform: scale(1.015); }
.hero-overlay { background: linear-gradient(90deg, rgba(42,27,21,.9) 0%, rgba(51,31,23,.68) 48%, rgba(40,25,20,.15) 82%); }
.hero-content { position: relative; z-index: 1; padding-block: 6rem; }
.hero-content .eyebrow { color: #f0ba76; }
.hero-content h1 { max-width: 820px; text-wrap: balance; }
.hero-content > p:not(.eyebrow) { max-width: 700px; margin-bottom: 2rem; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.7vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { min-height: 3.35rem; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .78rem 1.35rem; border: 1px solid transparent; border-radius: 999px; font-size: .92rem; font-weight: 700; line-height: 1.2; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 1.25rem; height: 1.25rem; fill: currentColor; stroke: none; }
.button-primary { background: var(--terracotta); color: white; box-shadow: 0 10px 28px rgba(93,36,27,.28); }
.button-primary:hover { background: var(--terracotta-dark); box-shadow: 0 14px 34px rgba(93,36,27,.34); }
.button-ghost { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); color: white; backdrop-filter: blur(7px); }
.button-ghost:hover { background: white; color: var(--ink); }
.hero-scroll { position: absolute; right: 3rem; bottom: 2.2rem; z-index: 1; width: 2.5rem; height: 3.8rem; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; }
.hero-scroll span { position: absolute; top: .8rem; left: 50%; width: .35rem; height: .35rem; border-radius: 50%; background: white; transform: translateX(-50%); animation: scroll-dot 1.8s infinite; }
@keyframes scroll-dot { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 1.25rem); } }

.massages { background: var(--cream); }
.massage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.massage-card { min-width: 0; min-height: 18rem; display: grid; grid-template-columns: 40% 60%; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 8px 30px rgba(81,56,45,.06); transition: transform .3s ease, box-shadow .3s ease; }
.massage-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.massage-media { position: relative; min-width: 0; overflow: hidden; }
.massage-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.83) contrast(.96); transition: transform .5s ease, filter .3s ease; }
.massage-card:hover img { transform: scale(1.045); filter: saturate(1) contrast(1); }
.massage-number { position: absolute; top: 1rem; left: 1rem; width: 2.55rem; height: 2.55rem; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; background: var(--terracotta); color: white; font-size: .72rem; font-weight: 700; }
.card-body { min-width: 0; display: flex; flex-direction: column; padding: 1.6rem 1.5rem; }
.card-body h3 { margin-bottom: .75rem; font-size: 1.28rem; }
.card-body p { flex: 1; margin: 0; color: var(--ink-soft); font-size: .98rem; line-height: 1.68; }
.massage-price { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.massage-price span { color: #8d7d75; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.massage-price strong { color: var(--terracotta-dark); font-family: inherit; font-size: 1.2rem; font-weight: 500; white-space: nowrap; }

.about { background: var(--paper); }
.about-intro { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; min-height: 34rem; object-fit: cover; border-radius: 9rem 1.5rem 1.5rem 1.5rem; box-shadow: var(--shadow); filter: saturate(.78); }
.experience-badge { position: absolute; right: -2rem; bottom: 2rem; width: 8rem; height: 8rem; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 7px solid var(--paper); border-radius: 50%; background: var(--terracotta); color: white; line-height: 1.15; text-align: center; }
.experience-badge strong { font-family: inherit; font-size: 1.55rem; font-weight: 500; }
.experience-badge span { margin-top: .3rem; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.about-copy .lead { font-size: 1.08rem; color: #4e3e38; }
.about-copy > p { color: var(--ink-soft); }
blockquote { margin: 2rem 0 0; padding: 1.2rem 0 1.2rem 1.5rem; border-left: 3px solid var(--amber); color: var(--terracotta-dark); font-family: inherit; font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 500; line-height: 1.5; }
.procedure-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; margin-top: clamp(5rem, 10vw, 9rem); padding: clamp(2rem, 5vw, 4.5rem); border-radius: 2rem; background: var(--cream-deep); }
.procedure-copy h3 { margin-bottom: 1.5rem; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.procedure-copy p { color: var(--ink-soft); }
details { margin-top: 1.5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
summary { padding: 1rem 2rem 1rem 0; color: var(--terracotta-dark); font-weight: 700; cursor: pointer; }
details p { padding-top: .2rem; }
.reflexology-card { margin: 0; padding: 1.2rem; border-radius: 10rem 10rem 1.2rem 1.2rem; background: var(--paper); box-shadow: var(--shadow); }
.reflexology-card img { width: 100%; max-height: 31rem; object-fit: contain; border-radius: 8rem 8rem .6rem .6rem; }
.reflexology-card figcaption { padding: 1rem .5rem .3rem; color: var(--ink-soft); font-size: .78rem; text-align: center; text-transform: uppercase; letter-spacing: .1em; }

.rules { background: #3a2b25; color: white; }
.rules .eyebrow { color: #e7a75d; }
.rules-heading > p { color: rgba(255,255,255,.67); }
.rules-list { counter-reset: rules; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 3rem; margin: 0; padding: 0; list-style: none; }
.rules-list li { counter-increment: rules; position: relative; min-height: 9.5rem; padding: 1.6rem 0 1.6rem 4.25rem; border-top: 1px solid rgba(255,255,255,.14); }
.rules-list li::before { content: counter(rules, decimal-leading-zero); position: absolute; top: 1.55rem; left: 0; color: #e7a75d; font-family: inherit; font-size: 1.25rem; font-weight: 500; }
.rules-list h3 { margin-bottom: .45rem; font-size: 1.1rem; }
.rules-list p { margin: 0; color: rgba(255,255,255,.66); font-size: .9rem; line-height: 1.6; }
.rules-closing { margin: 2.5rem 0 0; color: #efb875; font-family: inherit; font-size: 1.5rem; font-weight: 500; text-align: center; }

.contacts { background: var(--cream); }
.contact-panel { display: grid; grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr); min-height: 36rem; overflow: hidden; border-radius: 2rem; background: var(--paper); box-shadow: var(--shadow); }
.contact-copy { padding: clamp(2.2rem, 5vw, 4.5rem); }
.contact-copy h2 { margin-bottom: 2rem; }
address { display: grid; gap: 1.3rem; margin-bottom: 2rem; font-style: normal; }
address a, address > div { display: grid; grid-template-columns: 2.5rem 1fr; gap: .8rem; align-items: start; line-height: 1.5; }
address a:hover span { color: var(--terracotta); }
address svg { width: 1.5rem; height: 1.5rem; margin-top: .25rem; color: var(--terracotta); }
address small { color: #8d7d75; }
.contact-whatsapp { align-self: start; }
.route-image { width: 100%; min-height: 36rem; height: 100%; object-fit: contain; object-position: center; background: #e8dccb; }

.site-footer { padding: 2.2rem 0; background: #712d18; color: rgba(255,255,255,.72); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-inner img { width: 200px; height: 50px; object-fit: contain; }
.footer-inner p { margin: 0; font-size: .85rem; }
.footer-inner a { color: white; font-size: .85rem; font-weight: 700; }
.footer-inner a span { margin-left: .35rem; color: var(--amber); }

.floating-whatsapp { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 80; width: 3.65rem; height: 3.65rem; display: grid; place-items: center; border: 3px solid white; border-radius: 50%; background: #208b5e; color: white; box-shadow: 0 10px 30px rgba(21,86,56,.35); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 1.75rem; height: 1.75rem; fill: currentColor; stroke: none; }

.search-dialog { width: min(680px, calc(100% - 2rem)); padding: 0; border: 0; border-radius: 1.3rem; background: var(--paper); color: var(--ink); box-shadow: 0 25px 90px rgba(28,19,16,.4); }
.search-dialog::backdrop { background: rgba(30,21,18,.62); backdrop-filter: blur(4px); }
.search-box { padding: clamp(1.4rem, 4vw, 2.4rem); }
.search-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.search-head h2 { margin: 0; font-size: 1.8rem; }
.search-close { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--cream-deep); font-size: 1.6rem; }
.search-box label { display: block; margin: 1.2rem 0 .5rem; color: var(--ink-soft); font-size: .8rem; }
.search-input-wrap { position: relative; }
.search-input-wrap svg { position: absolute; top: 50%; left: 1rem; width: 1.2rem; height: 1.2rem; color: var(--terracotta); transform: translateY(-50%); }
.search-input-wrap input { width: 100%; height: 3.5rem; padding: 0 1rem 0 3rem; border: 1px solid var(--line); border-radius: .8rem; outline: none; background: white; font-size: 1rem; }
.search-input-wrap input:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(169,79,61,.12); }
.search-results { display: grid; gap: .5rem; max-height: 19rem; margin-top: 1rem; overflow: auto; }
.search-result { display: block; padding: .85rem 1rem; border-radius: .75rem; background: var(--cream); transition: background .2s ease; }
.search-result:hover { background: var(--cream-deep); }
.search-result strong { display: block; color: var(--terracotta-dark); }
.search-result span { color: var(--ink-soft); font-size: .82rem; }
.search-empty { padding: 1rem; color: var(--ink-soft); text-align: center; }

:focus-visible { outline: 3px solid #e4a85e; outline-offset: 3px; }

@media (max-width: 1100px) {
  .nav-inner { position: relative; grid-template-columns: auto auto 1fr; min-height: 4.75rem; }
  .nav-brand, .nav-brand img { width: 176px; height: 44px; }
  .menu-toggle { width: 2.8rem; height: 2.8rem; display: flex; flex-direction: column; gap: .32rem; }
  .menu-toggle span { width: 1.35rem; height: 2px; background: white; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(.39rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-.39rem) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; right: -1rem; left: -1rem; display: grid; align-content: start; gap: 0; padding: 1rem; background: #712d18; box-shadow: 0 18px 30px rgba(30,20,16,.25); opacity: 0; pointer-events: none; transform: translateY(-.7rem); transition: opacity .2s ease, transform .2s ease; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { min-height: 3.3rem; padding: 0 .5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .main-nav a::after { display: none; }
  .header-actions { justify-self: end; }
  .about-intro { gap: 3.5rem; }
  .about-photo { min-height: 30rem; }
  .experience-badge { right: -1.2rem; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 7rem; }
  .container { width: min(100% - 2rem, var(--container)); }
  .header-phone { display: none; }
  .hero { min-height: 660px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(42,27,21,.92), rgba(51,31,23,.52)); }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .section-heading > p { margin-left: 0; }
  .massage-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-photo { min-height: 27rem; }
  .experience-badge { right: 1rem; }
  .procedure-story { grid-template-columns: 1fr; }
  .reflexology-card { max-width: 25rem; margin-inline: auto; }
  .rules-list { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .route-image { min-height: 25rem; }
}

@media (max-width: 560px) {
  .section { padding-block: 4.5rem; }
  .nav-inner { grid-template-columns: auto auto 1fr; gap: .35rem; }
  .nav-brand, .nav-brand img { width: 112px; height: 28px; }
  .menu-toggle { width: 2.2rem; height: 2.2rem; }
  .header-actions { gap: .25rem; }
  .action-button { width: 2.2rem; height: 2.2rem; }
  .language-switcher summary { width: 3.25rem; height: 2.2rem; }
  .hero { min-height: calc(100svh - 4.75rem); }
  .hero-content { padding-block: 4.5rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-scroll { display: none; }
  .massage-card { grid-template-columns: 1fr; min-height: 0; }
  .massage-media { height: 11.5rem; }
  .card-body { padding: 1.35rem 1.25rem; }
  .about-photo { min-height: 23rem; border-radius: 6rem 1.2rem 1.2rem; }
  .experience-badge { right: .7rem; bottom: .7rem; width: 6.6rem; height: 6.6rem; border-width: 5px; }
  .procedure-story { margin-inline: -.4rem; padding: 1.5rem; border-radius: 1.3rem; }
  .rules-list li { padding-left: 3.4rem; }
  .contact-panel { border-radius: 1.3rem; }
  .contact-copy { padding: 2rem 1.3rem; }
  address a, address > div { grid-template-columns: 2rem 1fr; }
  .route-image { min-height: 19rem; }
  .footer-inner { flex-wrap: wrap; }
  .footer-inner p { order: 3; width: 100%; }
  .floating-whatsapp { right: 1rem; bottom: 1rem; }
}

@media (max-width: 380px) {
  .nav-inner { gap: .2rem; }
  .nav-brand, .nav-brand img { width: 92px; height: 23px; }
  .menu-toggle, .action-button { width: 2rem; height: 2rem; }
  .language-switcher summary { width: 3.1rem; height: 2rem; }
}

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