:root {
  --ink: #251b19;
  --muted: #6f625e;
  --line: #e8ded8;
  --paper: #fffaf6;
  --soft: #f3e8e2;
  --rose: #b87d7a;
  --rose-dark: #7a403d;
  --champagne: #d6b98d;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(77, 50, 43, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

section {
  scroll-margin-top: 96px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 246, 0.88);
  border-bottom: 1px solid rgba(232, 222, 216, 0.78);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 150px;
  max-height: 74px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #4f423e;
  font-size: 1rem;
  font-weight: 600;
}

.nav a,
.header-action,
.button,
.footer-links a {
  text-decoration: none;
}

.header-action {
  border: 1px solid var(--rose-dark);
  color: var(--rose-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  min-height: calc(100vh - 84px);
  padding: clamp(34px, 5vw, 72px);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  line-height: 0.98;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 500;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.18;
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.hero-actions,
.filters,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 27, 25, 0.2);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 34px 0 0;
}

.proof-strip div,
.intro-grid article,
.team-grid article,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.proof-strip div {
  padding: 16px;
}

.proof-strip dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.proof-strip dd {
  margin: 0;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-media img {
  width: 100%;
  height: min(74vh, 720px);
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-band,
.treatments,
.experience,
.location,
.consult,
.faq {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

.section-band {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto 38px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
  margin-left: 0;
}

.section-heading p:last-child {
  color: var(--muted);
}

.intro-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid article,
.team-grid article {
  padding: 26px;
}

.intro-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--rose-dark);
  font-weight: 900;
}

.intro-grid p,
.team-grid p,
.experience-copy p,
.consult p,
.faq p {
  color: var(--muted);
}

.filters {
  margin: 24px 0 28px;
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 9px 15px;
}

.filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.protocol-heading {
  max-width: 760px;
  margin-top: 32px;
}

.protocol-heading h3 {
  margin-bottom: 22px;
}

.protocol-carousel {
  position: relative;
}

.protocol-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 31vw);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.protocol-track::-webkit-scrollbar {
  height: 9px;
}

.protocol-track::-webkit-scrollbar-thumb {
  background: rgba(122, 64, 61, 0.24);
  border-radius: 999px;
}

.carousel-button {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.94);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(77, 50, 43, 0.14);
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

.protocol-card {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  min-height: 100%;
  box-shadow: 0 12px 30px rgba(77, 50, 43, 0.06);
}

.protocol-card[hidden] {
  display: none;
}

.protocol-card.has-watermark::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  height: min(48%, 160px);
  background: url("assets/logo-eclair-oficial-clean.png") center center / min(52%, 190px) auto no-repeat;
  opacity: 0.1;
  filter: drop-shadow(0 1px 3px rgba(255, 250, 246, 0.28));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.protocol-card img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.protocol-card div {
  padding: 20px;
}

.protocol-card p {
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.protocol-card h3 {
  min-height: 58px;
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.protocol-card span {
  display: block;
  min-height: 76px;
  color: var(--muted);
  font-size: 0.94rem;
}

.protocol-card button {
  width: 100%;
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.reviews-summary {
  max-width: 520px;
}

.rating-block {
  display: grid;
  gap: 4px;
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(122, 64, 61, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.rating-block strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  line-height: 0.9;
  font-weight: 500;
}

.rating-block span,
.review-grid span {
  color: #d6a646;
  letter-spacing: 0;
}

.rating-block small {
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(77, 50, 43, 0.06);
}

.review-grid p {
  margin: 0;
  color: var(--muted);
}

.review-grid strong {
  color: var(--ink);
}

.experience {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  background: var(--ink);
  color: var(--white);
}

.experience-media img {
  width: 100%;
  height: min(68vh, 620px);
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.room-gallery img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  object-position: center 54%;
  border-radius: var(--radius);
  filter: saturate(0.94) contrast(0.98) brightness(1.02);
}

.experience-copy {
  max-width: 650px;
}

.experience-copy .eyebrow,
.experience-copy p,
.experience-copy li {
  color: #eadcd3;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 1px;
  background: var(--champagne);
}

.founders-showcase {
  display: grid;
  grid-template-columns: minmax(230px, 0.66fr) minmax(500px, 1.12fr) minmax(230px, 0.66fr);
  gap: 0;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(77, 50, 43, 0.08);
}

.founder-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: stretch;
  min-height: 430px;
  background: var(--ink);
}

.founder-photos img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98) brightness(1.03);
}

.team-photo-talita {
  object-position: center 30%;
}

.team-photo-ana {
  object-position: center 24%;
}

.founder-profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.92);
}

.founder-profile-left {
  text-align: left;
}

.founder-profile-right {
  text-align: left;
}

.founder-profile span {
  margin-bottom: 10px;
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-profile h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.founder-profile p {
  color: var(--muted);
  font-size: 1rem;
}

.founder-profile ul {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
  list-style: none;
}

.founder-profile li {
  position: relative;
  padding-left: 20px;
}

.founder-profile li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: var(--rose-dark);
}

.team-note {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(122, 64, 61, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.72);
  color: var(--muted);
}

.team-note strong {
  color: var(--ink);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background: var(--paper);
}

.location-copy {
  position: sticky;
  top: 112px;
  max-width: 620px;
}

.location-copy p {
  color: var(--muted);
}

.location-steps {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.location-steps div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.location-steps span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.location-steps strong {
  display: block;
  margin-bottom: 6px;
}

.location-steps p {
  margin: 0;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-media {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.72fr);
  gap: 16px;
}

.location-facade,
.location-entrance {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-facade img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.94) contrast(0.98) brightness(1.02);
}

.location-entrance img {
  width: 100%;
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(0.98) brightness(1.02);
}

.location-facade figcaption,
.location-entrance figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.location-map {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  min-height: 320px;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.consult {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.quick-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 36px clamp(20px, 5vw, 72px);
  background: #191210;
  color: var(--white);
}

.footer img {
  width: 178px;
  margin-bottom: 12px;
}

.footer p,
.footer address {
  margin: 0;
  color: #e1d3ca;
  font-style: normal;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .experience,
  .location,
  .consult,
  .section-heading,
  .reviews {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .intro-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .protocol-track {
    grid-auto-columns: minmax(310px, 54vw);
  }

  .founders-showcase {
    grid-template-columns: 1fr;
  }

  .founder-profile {
    min-height: auto;
  }

  .founder-photos {
    order: -1;
    min-height: 420px;
  }

  .founder-photos img {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 94px;
  }

  .header-action {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .hero,
  .section-band,
  .treatments,
  .experience,
  .location,
  .consult,
  .faq {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-media,
  .hero-media img,
  .experience-media img {
    min-height: 320px;
  }

  .room-gallery img {
    min-height: 0;
  }

  .proof-strip,
  .intro-grid,
  .review-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .location-copy {
    position: static;
  }

  .location-actions .button {
    width: 100%;
  }

  .location-media {
    grid-template-columns: 1fr;
  }

  .location-entrance img {
    aspect-ratio: 1.12 / 1;
  }

  .location-map iframe {
    height: 300px;
  }

  .founder-photos {
    min-height: 320px;
  }

  .founder-photos img {
    min-height: 320px;
  }

  .founder-profile {
    padding: 24px;
  }

  .protocol-track {
    grid-auto-columns: minmax(282px, 86vw);
  }

  .carousel-button {
    display: none;
  }

  .protocol-card span,
  .protocol-card h3 {
    min-height: auto;
  }

  .footer {
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
