@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=DM+Sans:wght@300;400;500;600&display=swap");

:root {
  --background: #fbf6ed;
  --surface: #fffaf2;
  --surface-strong: #f4e8d6;
  --text: #321b16;
  --muted: #75564d;
  --primary: #dc7d08;
  --primary-dark: #7c1517;
  --border: rgba(124, 21, 23, 0.14);
  --shadow: 0 24px 80px rgba(84, 44, 25, 0.13);
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--body);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(251, 246, 237, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: padding 260ms ease, border-color 260ms ease, background 260ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(251, 246, 237, 0.94);
  border-color: var(--border);
}

.brand img {
  width: 82px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--primary-dark);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--primary);
  color: #fff8ec;
  font-size: 14px;
}

.button {
  padding: 0 24px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--primary);
  color: #fff8ec;
}

.button.ghost {
  border: 1px solid var(--border);
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary-dark);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 155px clamp(20px, 7vw, 110px) 70px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 44%;
  z-index: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--background) 0%, rgba(251, 246, 237, 0.82) 18%, rgba(251, 246, 237, 0.08) 55%),
    linear-gradient(0deg, var(--background) 0%, rgba(251, 246, 237, 0) 30%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.small-label {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  color: var(--primary-dark);
  font-size: clamp(54px, 8.2vw, 112px);
}

h2 {
  color: var(--primary-dark);
  font-size: clamp(42px, 5.4vw, 74px);
}

h3 {
  color: var(--text);
  font-size: 30px;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #9b4e28;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.healing-tabs {
  max-width: 760px;
  margin-top: 56px;
}

.healing-tabs-label {
  margin: 0 0 16px;
  color: rgba(117, 86, 77, 0.68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.healing-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.healing-option {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  color: var(--text);
  font: inherit;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  box-shadow: 0 12px 34px rgba(84, 44, 25, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.healing-option:hover {
  transform: translateY(-2px);
}

.healing-option.is-active {
  background: var(--primary);
  color: #fff8ec;
  box-shadow: 0 18px 42px rgba(220, 125, 8, 0.28);
}

.healing-option svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.healing-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: #9b4e28;
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-note {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: 54px;
  z-index: 1;
  max-width: 360px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-note p {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-family: var(--heading);
  font-size: 32px;
  line-height: 1;
}

.hero-note span {
  color: var(--muted);
  line-height: 1.5;
}

.section-note {
  max-width: 360px;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 18px 50px rgba(84, 44, 25, 0.08);
}

.section-note p {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-family: var(--heading);
  font-size: 32px;
  line-height: 1;
}

.section-note span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(84px, 11vw, 145px) clamp(20px, 7vw, 110px);
}

.section-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: start;
}

.rich-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.intro .rich-text {
  padding-top: 48px;
}

.rich-text p {
  margin: 0 0 22px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading p:not(.small-label) {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.services {
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-grid--compact {
  margin-top: 26px;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(84, 44, 25, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card img.service-image-retiros {
  object-position: center 68%;
}

.service-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.service-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 28px;
  align-items: center;
  align-self: flex-end;
  gap: 10px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.service-link span {
  margin: 0;
  color: inherit;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 180ms ease;
}

.service-link:hover span {
  transform: translateX(4px);
}

.warm {
  background: var(--surface-strong);
}

.image-frame {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.timeline li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(124, 21, 23, 0.12);
}

.timeline span {
  color: var(--primary);
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.about .tags {
  margin-top: 64px;
}

.tags span {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 14px;
}

.about-portrait {
  overflow: hidden;
  max-width: 360px;
  margin: 26px 0 0;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(84, 44, 25, 0.08);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.testimonials {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.72), rgba(251, 246, 237, 0)),
    var(--background);
}

.testimonial-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  position: relative;
  display: flex;
  grid-column: span 3;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(84, 44, 25, 0.08);
}

.testimonial-card--wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.testimonial-card--compact {
  grid-column: span 2;
  min-height: 360px;
}

.testimonial-card::after {
  position: absolute;
  top: 26px;
  right: 30px;
  color: rgba(220, 125, 8, 0.13);
  content: "”";
  font-family: var(--heading);
  font-size: 86px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 24px 0 38px;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 22px);
  font-style: italic;
  line-height: 1.55;
}

.testimonial-card--wide p {
  max-width: 980px;
  font-size: clamp(17px, 1.45vw, 20px);
}

.testimonial-card--compact p {
  font-size: clamp(16px, 1.32vw, 18px);
}

.testimonial-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 24px 0 38px;
}

.testimonial-card .testimonial-copy p {
  margin: 0 0 16px;
  font-size: clamp(17px, 1.35vw, 19px);
}

.testimonial-card .testimonial-copy p:last-child {
  margin-bottom: 0;
}

.testimonial-meta strong,
.testimonial-meta span {
  display: block;
}

.testimonial-meta strong {
  color: var(--text);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 500;
}

.testimonial-meta span {
  margin-top: 4px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  color: var(--text);
}

.contact-copy {
  max-width: 720px;
}

.contact-card h2 {
  max-width: 620px;
  color: var(--text);
}

.contact-card h2 em {
  display: block;
  font-style: italic;
  font-weight: 500;
}

.contact-card .small-label {
  color: var(--primary);
}

.contact-card p:not(.small-label) {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 28px;
  margin-top: 46px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
}

.contact-detail > span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(220, 125, 8, 0.1);
  color: var(--primary);
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-detail small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
}

.contact-detail a,
.contact-card .contact-detail p {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
}

.contact-form-panel {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.58);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(251, 246, 237, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 18px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input:not([type="checkbox"]),
.contact-form select {
  min-height: 64px;
  padding: 0 22px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 18px 22px;
}

.contact-form input:not([type="checkbox"])::placeholder,
.contact-form textarea::placeholder {
  color: rgba(117, 86, 77, 0.56);
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(220, 125, 8, 0.42);
  background: var(--surface);
}

.contact-form .form-privacy {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-form .form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary);
  flex: 0 0 18px;
}

.contact-form .form-privacy span {
  display: inline;
}

.form-full,
.form-submit {
  width: 100%;
}

.form-submit {
  display: inline-flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff8ec;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.form-submit:hover {
  transform: translateY(-2px);
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 34px clamp(20px, 7vw, 110px);
  color: var(--muted);
}

.footer img {
  width: 72px;
  height: auto;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-center {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.footer-center > p:first-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-right a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  white-space: nowrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.footer-legal a {
  color: inherit;
}

.footer-legal a:hover,
.footer-right a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .site-header,
  .button,
  .header-cta,
  .service-card {
    transition: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    gap: 12px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header.is-open .nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 8px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav a {
    min-height: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-media {
    inset: 42% 0 0;
    opacity: 0.58;
  }

  .hero-media::after {
    background: linear-gradient(0deg, var(--background) 0%, rgba(251, 246, 237, 0.4) 70%);
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 56px;
  }

  .healing-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .healing-option {
    justify-content: center;
    padding: 0 16px;
    font-size: 16px;
  }

  .section-grid,
  .split,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .healing-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .footer {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 28px 20px;
  }

  .footer img {
    width: 58px;
  }

  .footer-center {
    gap: 5px;
  }

  .footer-center > p:first-child,
  .footer-right a {
    font-size: 12px;
  }

  .footer-legal {
    font-size: 10px;
    gap: 0.2rem;
  }
}