:root {
  --bg: #f7f0eb;
  --bg-strong: #ecddd2;
  --surface: rgba(255, 251, 247, 0.84);
  --surface-strong: #e7d4c3;
  --text: #4a343b;
  --text-soft: #7a6267;
  --line: rgba(74, 52, 59, 0.12);
  --accent: #5a3d46;
  --accent-deep: #462f36;
  --button: #5a3d46;
  --button-text: #fff8f3;
  --shadow: 0 26px 70px rgba(90, 61, 70, 0.11);
  --radius: 30px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(171, 126, 140, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(229, 196, 203, 0.24), transparent 30%),
    radial-gradient(circle at bottom right, rgba(210, 183, 161, 0.14), transparent 24%),
    linear-gradient(180deg, #f4e3e6 0%, #fbf3ef 18%, var(--bg) 100%);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 8px);
}

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

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

.site-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(253, 248, 243, 0.78);
  border-bottom: 1px solid rgba(74, 52, 59, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  box-shadow: 0 12px 24px rgba(90, 61, 70, 0.12);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand__text {
  display: grid;
  gap: 0.12rem;
}

.brand__text strong,
.eyebrow,
h3,
.quote-card p {
  font-family: "Cormorant Garamond", serif;
}

main h2 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
}

.brand__text strong {
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand__text small {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-nav__item {
  position: relative;
}

.site-nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav__item--dropdown > a::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 50%;
  width: min(76vw, 780px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.75rem;
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.98);
  border: 1px solid rgba(31, 42, 68, 0.08);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav__dropdown a {
  padding: 0.48rem 0.55rem;
  border-radius: 10px;
  color: var(--text);
  white-space: normal;
  line-height: 1.2;
}

.site-nav__submenu-group {
  position: relative;
}

.site-nav__submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 700;
  background: rgba(234, 217, 205, 0.35);
}

.site-nav__submenu-trigger::after {
  display: none;
}

.site-nav__submenu {
  position: static;
  min-width: 0;
  display: grid;
  gap: 0.08rem;
  padding: 0.15rem 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
}

.site-nav__submenu a {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.site-nav__dropdown a:hover {
  background: rgba(234, 217, 205, 0.45);
}

.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-nav a:hover,
.text-link:hover {
  color: var(--accent-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-deep);
}

.button--dark {
  background: var(--button);
  color: var(--button-text);
}

.button--ghost {
  background: rgba(255, 251, 247, 0.34);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  padding: 1.5rem 4rem 2.25rem;
}

.hero__grid,
.statement__grid,
.showcase__grid,
.philosophy__grid,
.contact-cta__inner,
.signature__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__panel {
  --hero-frame-gap: 1rem;
  --hero-image-radius: 30px;
  position: relative;
  min-height: min(78svh, 760px);
  border-radius: 0;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  background: transparent;
}

.hero__grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  min-height: min(78svh, 760px);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  line-height: 0.98;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.95rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.lead,
.statement__copy p,
.section-heading p,
.editorial-card p,
.signature__content p,
.signature-card p,
.showcase__copy p,
.philosophy__content > p,
.contact-cta p,
.section-heading__aside {
  color: var(--text-soft);
  font-size: 1.03rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2.4rem 0 1.5rem;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding:
    1.1rem
    clamp(1.25rem, 5vw, 5rem)
    clamp(1.15rem, 3vw, 2.1rem);
  width: min(58rem, 100%);
  max-width: none;
  color: #1e1e1e;
}

.hero__content .lead,
.hero__note {
  color: rgba(63, 42, 48, 0.8);
}

.hero__subtitle {
  max-width: 41rem;
  margin-top: 1.55rem;
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: rgba(63, 42, 48, 0.92);
}

.hero__content .hero__subtitle {
  display: block;
}

.hero__content h1 {
  font-family: "Cormorant Garamond", serif;
  max-width: 15ch;
  font-size: clamp(2.75rem, 5.25vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: pretty;
}

.hero__brand-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem 0.45rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.58);
  border: 1px solid rgba(90, 61, 70, 0.1);
  box-shadow: 0 10px 25px rgba(90, 61, 70, 0.08);
}

.hero__brand-strip img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}

.hero__brand-strip span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-card,
.signature-card,
.quote-card,
.post-card,
.contact-cta__inner {
  background: var(--surface);
  border: 1px solid rgba(31, 42, 68, 0.08);
  box-shadow: var(--shadow);
}

.hero__note {
  max-width: 24rem;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: rgba(63, 42, 48, 0.94);
}

.hero__media {
  position: absolute;
  inset:
    0
    0
    0
    0;
  z-index: 0;
}

.hero__image-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 34px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero__image-card--large {
  height: 100%;
  min-height: 0;
}

.hero__image-card--large img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 78% 16%;
  border-radius: inherit;
  background: transparent;
}

.hero__overlay {
  position: absolute;
  inset:
    0
    0
    0
    0;
  z-index: 1;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(247, 235, 227, 0.74) 0%, rgba(247, 235, 227, 0.48) 28%, rgba(247, 235, 227, 0.14) 52%, rgba(247, 235, 227, 0) 68%);
}

.section {
  padding: 6rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(239, 225, 214, 0.5), rgba(247, 241, 235, 0));
}

#sobre-centro {
  padding-bottom: 2.5rem;
}

#tratamientos {
  padding-top: 2.5rem;
}

.testimonials {
  padding-bottom: 2.75rem;
}

.faq-section {
  padding-top: 2.75rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  max-width: none;
}

.statement__grid,
.showcase__grid,
.philosophy__grid,
.signature__grid,
.contact-cta__inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial__grid,
.signature__cards,
.testimonials__grid,
.journal__grid {
  display: grid;
  gap: 1.4rem;
}

.editorial__grid {
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
}

.editorial-card {
  padding: 1.8rem;
  border-radius: 28px;
  position: relative;
}

.editorial-card::before,
.signature-card::before,
.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(90, 61, 70, 0.4), rgba(90, 61, 70, 0));
}

.editorial-card--intro {
  background: linear-gradient(180deg, rgba(239, 225, 214, 0.96), rgba(255, 252, 248, 0.9));
}

.editorial-card__index {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-deep);
  letter-spacing: 0.18em;
  font-size: 0.84rem;
}

.signature__cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.signature__grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.signature__content {
  max-width: 760px;
}

.signature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 2rem;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.signature-card::after {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: 1.35rem;
  width: 3rem;
  height: 1px;
  background: rgba(90, 61, 70, 0.22);
}

.signature-card h3 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.05rem, 3vw, 3rem);
  line-height: 0.95;
}

.signature-card p {
  max-width: 23rem;
  margin-bottom: 2rem;
  font-size: 1.02rem;
  line-height: 1.5;
}

.signature-card--highlight {
  background: linear-gradient(180deg, rgba(93, 64, 73, 0.94), rgba(124, 90, 100, 0.92));
  color: #fff6f0;
}

.signature-card--highlight::after {
  background: rgba(255, 246, 240, 0.3);
}

.signature-card--highlight p,
.signature-card--highlight .text-link {
  color: rgba(255, 246, 240, 0.88);
}

.showcase--framed {
  background: linear-gradient(180deg, rgba(247, 241, 235, 0), rgba(239, 225, 214, 0.36));
}

.showcase__image img,
.philosophy__image img {
  min-height: 560px;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-weight: 700;
  color: var(--text);
}

.text-link::after {
  content: "↗";
  font-size: 0.95rem;
}

.philosophy__points {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.philosophy__points article {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.testimonials__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card {
  margin: 0;
  padding: 2rem;
  border-radius: 28px;
  position: relative;
}

.quote-card p {
  font-size: 1.85rem;
  line-height: 1.08;
  margin-bottom: 1.15rem;
}

.quote-card cite,
.post-card__meta,
.contact-cta__note {
  font-style: normal;
  color: var(--text-soft);
}

.testimonials__summary {
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}

.testimonials__link-row {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.journal__carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 1rem;
  align-items: stretch;
}

.journal-mini-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid rgba(31, 42, 68, 0.08);
  box-shadow: var(--shadow);
}

.journal-mini-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 0;
}

.journal-mini-card__body {
  min-width: 0;
  padding: 1rem 1rem 1.1rem;
}

.journal-mini-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.15;
}

.journal__more {
  align-self: center;
  justify-self: end;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(90, 61, 70, 0.14);
  background: rgba(255, 251, 247, 0.76);
  font-weight: 700;
  white-space: nowrap;
}

.contact-cta {
  padding-bottom: 7rem;
}

.contact-cta__inner {
  padding: 2rem;
  border-radius: 34px;
}

.contact-cta__actions {
  display: grid;
  gap: 1rem;
  justify-items: start;
}


.contact-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-panel,
.contact-form {
  padding: 2rem;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid rgba(31, 42, 68, 0.08);
  box-shadow: var(--shadow);
}

.contact-panel__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.9rem;
}

.contact-panel__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.contact-panel__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-panel__list strong {
  font-weight: 700;
}

.contact-panel__list span {
  color: var(--text-soft);
  text-align: right;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 42, 68, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
}

.field textarea {
  resize: vertical;
  min-height: 9rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(183, 141, 121, 0.15);
}

.contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.faq-section .service-faq {
  display: grid;
  gap: 1rem;
}

.service-faq--accordion .service-faq__item {
  padding: 0;
  overflow: hidden;
}

.service-faq--accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

.service-faq--accordion summary::-webkit-details-marker {
  display: none;
}

.service-faq--accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
}

.service-faq--accordion .service-faq__item[open] summary::after {
  content: "−";
}

.service-faq--accordion .service-faq__item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
}

.service-faq--accordion .service-faq__item h3 {
  margin: 0;
  font-size: 1.45rem;
}

.site-footer {
  padding: 1.4rem 0 2.6rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.7fr) minmax(280px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 251, 247, 0.84);
  border: 1px solid rgba(90, 61, 70, 0.1);
  box-shadow: var(--shadow);
}

.site-footer__grid p {
  margin: 0;
  color: var(--text-soft);
}

.site-footer__eyebrow,
.site-footer__label {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-footer__brand,
.site-footer__contact {
  display: grid;
  gap: 0.85rem;
}

.site-footer__brand h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.site-footer__links a,
.site-footer__contact a {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 600;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  text-decoration: underline;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0 1.5rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.site-footer__legal a {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__legal a:hover {
  text-decoration: underline;
}

.legal-page {
  max-width: 920px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.legal-page h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.legal-page h2 {
  margin: 2.2rem 0 0.75rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.legal-page h3 {
  margin: 1.4rem 0 0.45rem;
  font-size: 1.12rem;
  color: var(--ink);
}

.legal-page p,
.legal-page li {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-page a {
  color: var(--accent-strong);
  font-weight: 700;
}

.legal-page ul {
  display: grid;
  gap: 0.35rem;
  padding-left: 1.2rem;
}

.site-footer__map-wrap {
  min-width: 0;
}

.site-footer__map {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.service-hero {
  padding: 4rem 0 3rem;
}

.service-hero__grid,
.service-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.service-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-hero__meta li,
.service-faq__item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(31, 42, 68, 0.08);
  box-shadow: var(--shadow);
}

.service-hero__meta span {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.service-hero__media {
  display: grid;
  min-height: 560px;
  padding: 0;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(244, 223, 208, 0.78), transparent 44%),
    linear-gradient(180deg, rgba(247, 238, 231, 0.98), rgba(239, 221, 207, 0.92));
  border: 1px solid rgba(90, 61, 70, 0.08);
  box-shadow: var(--shadow);
}

.service-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 66% 42%;
  border-radius: inherit;
  box-shadow: none;
}

.service-recommendations__list {
  display: grid;
  gap: 1rem;
}

.service-recommendation {
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(31, 42, 68, 0.08);
  box-shadow: var(--shadow);
}

.service-recommendation p {
  margin: 0;
  color: var(--text);
}

.service-recommendation .text-link {
  font-weight: 700;
}

.service-benefits__grid,
.service-process__grid,
.service-faq__list {
  display: grid;
  gap: 1.4rem;
}

.service-table__group {
  padding: 1.8rem;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(31, 42, 68, 0.08);
  box-shadow: var(--shadow);
}

.service-table__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-table__group li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 8rem;
}

.service-table__group li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-table__group strong {
  white-space: nowrap;
}

.service-benefits__grid,
.service-process__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-price {
  margin: 1rem 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
}

.service-faq__item h3 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

@media (max-width: 1080px) {
  .site-header__inner,
  .site-nav {
    flex-wrap: wrap;
  }  .site-nav__dropdown {
    position: static;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    margin-top: 0.75rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }  .site-nav__submenu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
  }

  .hero__grid,
  .service-hero__grid,
  .service-overview__grid,
  .contact-section__grid,
  .statement__grid,
  .showcase__grid,
  .philosophy__grid,
  .signature__grid,
  .contact-cta__inner,
  .service-hero__meta,
  .editorial__grid,
  .signature__cards,
  .service-benefits__grid,
  .service-process__grid,
  .testimonials__grid,
  .journal__grid {
    grid-template-columns: 1fr;
  }

  .journal__carousel {
    grid-template-columns: 1fr;
  }

  .signature-card {
    min-height: auto;
  }

  .journal__more {
    justify-self: start;
  }

  .hero__media {
    position: absolute;
    inset: 0;
  }

  .hero__image-card,
  .hero__image-card--large {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero__image-card--large,
  .hero__image-card--large img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero {
    padding: 0.85rem 1.2rem 2rem;
  }

  .hero__panel {
    --hero-frame-gap: 0.75rem;
    --hero-image-radius: 24px;
  }

  .hero__panel,
  .hero__grid,
  .hero__image-card--large,
  .hero__image-card--large img {
    min-height: 62vh;
  }

  .hero__content {
    padding:
      1rem
      1.2rem
      1.2rem;
    width: 100%;
    max-width: 100%;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(252, 243, 235, 0.62) 0%, rgba(252, 243, 235, 0.36) 32%, rgba(252, 243, 235, 0.12) 58%, rgba(252, 243, 235, 0) 100%);
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .section {
    padding: 4.5rem 0;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .journal-mini-card {
    aspect-ratio: auto;
    grid-template-rows: 160px auto;
  }

  .editorial-card,
  .signature-card,
  .quote-card,
  .post-card__body,
  .contact-cta__inner,
  .contact-panel,
  .contact-form {
    padding: 1.4rem;
  }

  .quote-card p,
  .post-card h3 {
    font-size: 1.55rem;
  }
}

@media (max-width: 680px) {
  .site-nav__dropdown {
    grid-template-columns: 1fr;
  }
}
/* Final dropdown hardening: keep service navigation compact and away from hero copy. */
.site-nav__item--dropdown {
  position: static;
}

.site-nav__dropdown {
  position: fixed;
  top: 5.4rem;
  left: 50%;
  width: min(92vw, 820px);
  max-height: min(58vh, 430px);
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate(-50%, 8px);
}

.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown:focus-within .site-nav__dropdown {
  transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
  .site-nav__dropdown {
    position: fixed;
    top: 7.4rem;
    left: 50%;
    width: min(92vw, 720px);
    max-height: min(54vh, 360px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown,
  .site-nav__item--dropdown:focus-within .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 680px) {
  .site-nav__dropdown {
    top: 8.8rem;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1080px) {
  .site-nav__dropdown {
    top: 15.25rem;
    max-height: min(44vh, 300px);
  }
}

@media (max-width: 680px) {
  .site-nav__dropdown {
    top: 16.5rem;
    max-height: min(42vh, 280px);
  }
}
.service-hero h1 {
  max-width: 12ch;
  font-size: 4.35rem;
  line-height: 0.98;
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  .service-hero h1 {
    max-width: 14ch;
    font-size: 3rem;
    line-height: 1.02;
  }
}

@media (max-width: 680px) {
  .service-hero h1 {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 1.05;
  }
}
@media (max-width: 1080px) {
  .site-nav__dropdown {
    display: none;
  }
}
@media (max-width: 1080px) {
  .service-hero h1 {
    max-width: 22ch;
    font-size: 2.45rem;
    line-height: 1.05;
  }
}

@media (max-width: 680px) {
  .service-hero h1 {
    max-width: 100%;
    font-size: 2.15rem;
    line-height: 1.08;
  }
}
@media (min-width: 1081px) {
  .service-hero h1 {
    max-width: 15ch;
    font-size: 4rem;
  }
}

/* Simple blog section */
.blog-hero__inner {
  max-width: 820px;
}

.blog-hero h1 {
  max-width: 12ch;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(74, 52, 59, 0.08);
  box-shadow: 0 18px 45px rgba(69, 43, 51, 0.08);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.35rem;
}

.blog-card h2 {
  margin: 0.35rem 0 0.7rem;
  font-size: 1.45rem;
  line-height: 1.12;
}

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

@media (max-width: 1080px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero h1 {
    max-width: 18ch;
    font-size: 2.55rem;
  }
}


/* Compact blog page polish */
.blog-hero.section {
  padding: 5rem 0 3rem;
}

.blog-listing.section {
  padding-top: 4rem;
}

.blog-hero h1 {
  max-width: 16ch;
  font-size: 3.45rem;
  line-height: 1.04;
}

.blog-hero .lead {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .blog-hero.section {
    padding: 4rem 0 2.5rem;
  }

  .blog-hero h1 {
    max-width: 18ch;
    font-size: 2.35rem;
  }
}


/* Local SEO article pages */
.blog-card {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(69, 43, 51, 0.12);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-breadcrumb a,
.article-breadcrumb span {
  color: var(--muted);
  text-decoration: none;
}

.article-breadcrumb span::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(74, 52, 59, 0.45);
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  gap: 3rem;
  align-items: center;
}

.article-hero h1 {
  max-width: 16ch;
  font-size: 3.35rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.article-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.article-hero__image {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 26px 70px rgba(69, 43, 51, 0.12);
}

.article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content__grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 720px);
  gap: 3rem;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 7rem;
  padding: 1.45rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(74, 52, 59, 0.08);
}

.article-aside h2 {
  margin-top: 0.4rem;
  font-size: 1.72rem;
}

.article-body h2 {
  font-size: 2.05rem;
  margin: 0 0 1rem;
}

.article-body section + section {
  margin-top: 3rem;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.82;
}

.article-body a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

@media (max-width: 1080px) {
  .article-hero__grid,
  .article-content__grid {
    grid-template-columns: 1fr;
  }

  .article-hero h1 {
    max-width: 20ch;
    font-size: 2.35rem;
  }

  .article-aside {
    position: static;
  }
}

/* Mobile footer layout fix */
@media (max-width: 1080px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .site-footer__brand,
  .site-footer__contact,
  .site-footer__map-wrap {
    min-width: 0;
  }

  .site-footer__map {
    display: block;
    width: 100%;
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 0.8rem 0 1.8rem;
  }

  .site-footer__grid {
    padding: 1.35rem;
    border-radius: 24px;
    overflow: hidden;
  }

  .site-footer__eyebrow,
  .site-footer__label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    line-height: 1.45;
  }

  .site-footer__brand h2 {
    font-size: clamp(2rem, 9vw, 2.45rem);
    line-height: 1.02;
    max-width: 12ch;
  }

  .site-footer__brand,
  .site-footer__contact {
    gap: 0.75rem;
  }

  .site-footer__links {
    display: grid;
    gap: 0.65rem;
    justify-items: start;
  }

  .site-footer__contact p,
  .site-footer__brand p {
    line-height: 1.65;
  }

  .site-footer__map {
    height: 240px;
    min-height: 240px;
    border-radius: 18px;
  }
}

/* Facial internal links */
.facial-link-list {
  display: grid;
  gap: 0.9rem;
}

.facial-link-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(90, 61, 70, 0.14);
}

.facial-link-row:last-child {
  border-bottom: 1px solid rgba(90, 61, 70, 0.14);
}

.facial-link-row span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
}

.facial-link-row p {
  margin: 0;
  max-width: 820px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.facial-link-row p a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

@media (max-width: 760px) {
  .facial-link-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

/* Service internal links */
.service-link-list {
  display: grid;
  gap: 0.9rem;
}

.service-link-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(90, 61, 70, 0.14);
}

.service-link-row:last-child {
  border-bottom: 1px solid rgba(90, 61, 70, 0.14);
}

.service-link-row span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
}

.service-link-row p {
  margin: 0;
  max-width: 820px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.service-link-row p a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

@media (max-width: 760px) {
  .service-link-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  top: clamp(1rem, 4vw, 2.4rem);
  left: 50%;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: min(calc(100% - 2rem), 680px);
  padding: 1.15rem;
  background: rgba(255, 252, 248, 0.97);
  border: 1px solid rgba(90, 61, 70, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(44, 31, 35, 0.18);
  color: var(--ink);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%);
}

.cookie-consent--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-0.6rem);
}

.cookie-consent__content {
  display: grid;
  gap: 0.25rem;
}

.cookie-consent__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 0.6rem;
}

.cookie-consent__button {
  min-height: 42px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(90, 61, 70, 0.28);
  border-radius: 6px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  box-shadow: none;
  appearance: none;
}

.cookie-consent__button--primary {
  background: #5a2f3b;
  border-color: #5a2f3b;
  color: #ffffff;
}

.cookie-consent__button--secondary {
  background: #ffffff;
  color: #3c2a30;
}

.cookie-consent__button:focus-visible {
  outline: 3px solid rgba(157, 105, 120, 0.35);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .cookie-consent {
    top: 0.75rem;
    width: min(calc(100% - 1rem), 680px);
    padding: 1rem;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent__button {
    width: 100%;
  }
}
