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

:root {
  --black: #080807;
  --ink: #171512;
  --ink-soft: #24211d;
  --cream: #fbf7ef;
  --beige: #efe4d3;
  --sand: #d8c3a3;
  --gold: #c7a45a;
  --gold-light: #ead39c;
  --paper: #fffdf8;
  --text: #29251f;
  --muted: #756f66;
  --line: rgba(41, 37, 31, 0.13);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(24, 20, 14, 0.12);
  --radius: 2px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

button, input, textarea { font: inherit; }

button { color: inherit; }

::selection {
  background: var(--gold);
  color: var(--black);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--black);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }

.announcement {
  background: var(--gold);
  color: var(--black);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
  padding: 9px 20px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(8, 8, 7, .96);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 260px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1020 / 410;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav > a:not(.button-link) {
  position: relative;
  padding: 10px 0;
}

.main-nav > a:not(.button-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 11px 17px;
  transition: background .2s ease, color .2s ease;
}

.nav-cta:hover { background: var(--gold); color: var(--black); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--white-line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark { color: #8e6c2f; }

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .98;
}

h1 { font-size: clamp(3.5rem, 7vw, 7.2rem); }
h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
h3 { font-size: clamp(1.7rem, 2.6vw, 2.35rem); }

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.lead.on-dark { color: rgba(255,255,255,.68); }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  padding: 13px 22px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); background: var(--gold-light); }

.button.outline { background: transparent; color: var(--gold-light); }
.button.outline:hover { background: var(--gold); color: var(--black); }
.button.dark { background: var(--black); border-color: var(--black); color: #fff; }
.button.dark:hover { background: var(--ink-soft); }
.button svg { width: 17px; height: 17px; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  background: var(--black);
  color: #fff;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px max(46px, calc((100vw - 1180px) / 2));
  padding-right: clamp(38px, 6vw, 100px);
}

.hero h1 { max-width: 750px; margin-bottom: 26px; }
.hero h1 em { display: block; color: var(--gold-light); font-weight: 500; }
.hero .lead { max-width: 590px; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
  color: rgba(255,255,255,.76);
  font-size: .82rem;
}

.stars { color: var(--gold-light); letter-spacing: .12em; }

.hero-media { position: relative; min-height: 720px; overflow: hidden; }

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, rgba(8,8,7,.12) 28%, rgba(8,8,7,.08) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  filter: saturate(.82) contrast(1.03);
}

.hero-seal {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 54px);
  bottom: 34px;
  width: 132px;
  height: 132px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(234,211,156,.6);
  border-radius: 50%;
  color: var(--gold-light);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .66rem;
  background: rgba(8,8,7,.68);
  backdrop-filter: blur(10px);
}

.hero-seal strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: .9;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 134px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 32px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child { border-right: 0; }

.trust-item strong {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
}

.trust-item span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section { padding: clamp(84px, 10vw, 140px) 0; }
.section.compact { padding: clamp(64px, 8vw, 100px) 0; }
.section.black { background: var(--black); color: #fff; }
.section.paper { background: var(--paper); }
.section.beige { background: var(--beige); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading p { margin-bottom: 4px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--black);
  color: #fff;
  transform: translateY(-4px);
}

.service-number {
  color: #9b7a3b;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 44px 0 28px;
  border: 1px solid var(--gold);
  color: #8e6c2f;
}

.service-icon svg { width: 24px; height: 24px; stroke-width: 1.4; }
.service-card:hover .service-icon { color: var(--gold-light); }

.service-card h3 { margin-bottom: 18px; }
.service-card p { color: var(--muted); font-size: .93rem; }
.service-card:hover p { color: rgba(255,255,255,.66); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #8e6c2f;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-card:hover .text-link { color: var(--gold-light); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.feature-media {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: #d8d1c5;
}

.feature-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 76% center;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.68);
}

.feature-copy h2 { margin-bottom: 28px; }
.feature-copy p { color: var(--muted); }

.signature {
  margin: 30px 0 0;
  color: #8e6c2f;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-style: italic;
}

.transformations-section { background: var(--paper); overflow: hidden; }

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

.transformation-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f7f0e5;
  box-shadow: 0 18px 55px rgba(24, 20, 14, .07);
}

.transformation-card-wide {
  grid-column: 1 / -1;
  width: calc(50% - 12px);
  justify-self: center;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  padding: 10px 10px 0;
}

.transformation-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #d9d0c4;
}

.transformation-photo:first-child { border-radius: 19px 2px 2px 2px; }
.transformation-photo:last-child { border-radius: 2px 19px 2px 2px; }

.transformation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.transformation-card:hover .transformation-photo img { transform: scale(1.025); }

.transformation-photo > span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(8, 8, 7, .78);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.transformation-photo:last-child > span {
  background: var(--gold-light);
  color: var(--black);
}

.transformation-card figcaption {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px 27px;
}

.transformation-card figcaption > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(142, 108, 47, .35);
  border-radius: 50%;
  color: #8e6c2f;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.transformation-card figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.transformation-card figcaption small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .04em;
}

.transformations-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
}

.transformations-cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.transformations-cta .button-row { flex: 0 0 auto; margin-top: 0; }

.reviews-wrap { overflow: hidden; }

.review-summary {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 44px;
}

.review-score {
  font-family: var(--serif);
  font-size: 6.5rem;
  line-height: .75;
}

.review-meta { color: rgba(255,255,255,.65); }
.review-meta .stars { display: block; margin-bottom: 4px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--white-line);
  background: rgba(255,255,255,.035);
}

.review-card blockquote {
  margin: 20px 0 32px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.18;
}

.review-author {
  margin-top: auto;
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.review-source { color: rgba(255,255,255,.48); font-size: .72rem; }

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}

.schedule-list { border-top: 1px solid var(--line); }

.schedule-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .91rem;
}

.schedule-row.today { color: #7d5b21; font-weight: 700; }
.schedule-row.today .day::after { content: " · Hoje"; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.schedule-note { margin-top: 16px; color: var(--muted); font-size: .82rem; }
.open-status { margin-top: 26px; font-weight: 700; }

.address-card {
  padding: clamp(34px, 5vw, 60px);
  background: var(--black);
  color: #fff;
}

.address-card h3 { font-size: 3rem; margin-bottom: 24px; }
.address-card p { color: rgba(255,255,255,.68); }
.address-line { padding: 22px 0; border-top: 1px solid var(--white-line); }
.address-line:last-of-type { border-bottom: 1px solid var(--white-line); }
.address-label { display: block; color: var(--gold-light); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

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

.article-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .25s ease, box-shadow .25s ease;
}

.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.article-meta { color: #8e6c2f; font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.article-card h3 { margin: 32px 0 20px; }
.article-card p { color: var(--muted); font-size: .9rem; }
.article-card .text-link { margin-top: auto; }

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 25px 54px 25px 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.2;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 23px;
  right: 4px;
  color: #8e6c2f;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; padding: 0 50px 24px 0; color: var(--muted); }

.cta-band {
  position: relative;
  padding: clamp(80px, 10vw, 135px) 0;
  background: var(--black);
  color: #fff;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -180px;
  top: -230px;
  border: 1px solid rgba(199,164,90,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(199,164,90,.045), 0 0 0 148px rgba(199,164,90,.025);
}

.cta-inner { position: relative; z-index: 2; max-width: 800px; }
.cta-inner h2 { margin-bottom: 24px; }

.subhero {
  position: relative;
  padding: clamp(92px, 12vw, 170px) 0 clamp(78px, 10vw, 130px);
  background: var(--black);
  color: #fff;
  overflow: hidden;
}

.subhero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -270px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(199,164,90,.2);
  border-radius: 50%;
}

.subhero .container { position: relative; z-index: 2; }
.subhero h1 { max-width: 950px; margin-bottom: 26px; font-size: clamp(3.7rem, 7vw, 6.8rem); }
.subhero .lead { max-width: 720px; }

.breadcrumbs {
  margin-bottom: 34px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.breadcrumbs a { color: var(--gold-light); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.intro-grid h2 { position: sticky; top: 140px; }
.rich-text p { color: var(--muted); }
.rich-text h3 { margin-top: 52px; }
.rich-text ul { margin: 24px 0; padding: 0; list-style: none; }
.rich-text li { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid var(--line); }
.rich-text li::before { content: "◆"; position: absolute; left: 1px; top: 15px; color: #9b7a3b; font-size: .6rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.process-card .number { color: #8e6c2f; font-size: .7rem; font-weight: 700; letter-spacing: .16em; }
.process-card h3 { margin: 58px 0 18px; font-size: 2rem; }
.process-card p { color: var(--muted); font-size: .9rem; }

.service-visual {
  max-width: 1180px;
  margin: 0 auto;
  border: 14px solid var(--paper);
  box-shadow: var(--shadow);
}

.service-visual img { width: 100%; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tag { border: 1px solid var(--line); padding: 8px 12px; color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: .06em; }

.article-header {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(85px, 11vw, 145px) 0 70px;
}

.article-header h1 { margin-bottom: 26px; font-size: clamp(3.2rem, 6vw, 6rem); }
.article-kicker { color: #8e6c2f; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.article-deck { color: var(--muted); font-size: 1.16rem; max-width: 760px; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 74px;
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.article-body { min-width: 0; }
.article-body p, .article-body li { color: #4d4841; }
.article-body a { color: #7b5a22; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body a:hover { color: var(--black); }
.article-header .breadcrumbs { color: var(--muted); }
.article-header .breadcrumbs a { color: #7b5a22; }
.article-body h2 { margin: 72px 0 24px; font-size: clamp(2.3rem, 4vw, 3.5rem); }
.article-body h3 { margin: 44px 0 18px; font-size: 2rem; }
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin-bottom: 10px; }
.article-body .callout { margin: 46px 0; padding: 30px; border-left: 3px solid var(--gold); background: var(--beige); }
.article-body .callout p:last-child { margin-bottom: 0; }

.article-aside { position: sticky; top: 130px; align-self: start; padding: 24px; background: var(--black); color: #fff; }
.article-aside p { color: rgba(255,255,255,.65); font-size: .84rem; }
.article-aside .button { width: 100%; margin-top: 12px; }

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

.all-service {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: background .2s ease, color .2s ease;
}

.all-service:hover { background: var(--black); color: #fff; }
.all-service .service-icon { margin: 0; }
.all-service h3 { margin: 0; font-size: 1.7rem; }
.all-service p { margin: 5px 0 0; color: var(--muted); font-size: .82rem; }
.all-service:hover p { color: rgba(255,255,255,.6); }
.all-service > span { color: #8e6c2f; }

.site-footer {
  padding: 74px 0 26px;
  background: var(--black);
  color: #fff;
  border-top: 1px solid var(--white-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: min(320px, 100%);
  height: auto !important;
  aspect-ratio: 1020 / 410;
  object-fit: contain;
}
.footer-brand p { max-width: 380px; margin: 24px 0 0; color: rgba(255,255,255,.55); font-size: .88rem; }
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 22px;
  padding: 11px 18px;
  border: 1px solid rgba(237,217,168,.55);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.instagram-link:hover { background: var(--gold-light); color: var(--black); }
.instagram-link svg { width: 18px; height: 18px; flex: 0 0 auto; }
.footer-column h2 { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--gold-light); }
.footer-column a, .footer-column p { display: block; margin: 0 0 10px; color: rgba(255,255,255,.62); font-size: .84rem; }
.footer-column a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--white-line);
  color: rgba(255,255,255,.4);
  font-size: .72rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  transition: transform .2s ease;
}

.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 28px; height: 28px; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 17px; }
  .main-nav .nav-cta { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(350px, .75fr); }
  .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: auto; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / span 2; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 680px); }
  .announcement { font-size: .62rem; letter-spacing: .11em; }
  .header-inner { min-height: 74px; }
  .brand { width: 205px; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: calc(74px + 31px);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 42px 24px;
    background: var(--black);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a { width: 100%; padding: 18px 0 !important; border-bottom: 1px solid var(--white-line); font-size: .92rem; }
  .main-nav .nav-cta { display: block; margin-top: 24px; text-align: center; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 630px; padding: 78px 24px; }
  .hero-media { min-height: 500px; }
  .hero-media::after { background: linear-gradient(180deg, var(--black), transparent 25%); }
  .hero-seal { width: 112px; height: 112px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .feature-split, .schedule-grid, .intro-grid { grid-template-columns: 1fr; }
  .feature-media { min-height: 520px; }
  .transformations-grid { grid-template-columns: 1fr; }
  .transformation-card-wide { grid-column: auto; width: 100%; }
  .transformations-cta { align-items: flex-start; flex-direction: column; padding-inline: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .intro-grid h2 { position: static; }
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-aside { position: static; }
  .all-services { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  :root { --container: calc(100% - 28px); }
  h1 { font-size: clamp(3.15rem, 17vw, 4.7rem); }
  h2 { font-size: clamp(2.65rem, 13vw, 3.7rem); }
  .announcement { padding-inline: 12px; }
  .brand { width: 182px; }
  .hero-copy { min-height: 590px; padding: 62px 18px; }
  .hero-media { min-height: 420px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .trust-item { min-height: 112px; padding: 18px; }
  .trust-item strong { font-size: 1.85rem; }
  .service-card { padding: 28px; }
  .feature-media { min-height: 400px; }
  .result-card, .result-card:first-child { min-height: 350px; }
  .result-card figcaption { font-size: .64rem; }
  .review-score { font-size: 5.5rem; }
  .review-card { padding: 24px; }
  .review-card blockquote { font-size: 1.5rem; }
  .address-card { padding: 30px 24px; }
  .article-card { min-height: 300px; padding: 26px; }
  .subhero h1 { font-size: clamp(3.2rem, 16vw, 4.6rem); }
  .all-service { grid-template-columns: 46px 1fr; }
  .all-service > span { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; }
}

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

/* Direção visual: luxo leve, curvas amplas e fotografia real */
:root {
  --cream: #f8f3ea;
  --beige: #eee2d2;
  --paper: #fffdf9;
  --gold: #c8a461;
  --gold-light: #edd9a8;
  --line: rgba(52, 43, 32, .1);
  --shadow: 0 24px 70px rgba(44, 34, 22, .1);
  --radius: 34px;
}

body { background: var(--cream); }

.announcement {
  background: var(--gold-light);
  letter-spacing: .13em;
  padding-block: 8px;
}

.site-header {
  border-bottom: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.11);
}

.header-inner { min-height: 82px; }

.nav-cta,
.button {
  border-radius: 999px;
}

.button { padding-inline: 26px; }

.menu-toggle { border-radius: 50%; }

h1, h2, h3 { letter-spacing: -.035em; }
h2 { font-size: clamp(2.7rem, 4.6vw, 4.8rem); }

.hero {
  width: min(1520px, calc(100% - 28px));
  min-height: 710px;
  margin: 14px auto 0;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  background: var(--cream);
  color: var(--black);
  border-radius: 46px;
  box-shadow: 0 30px 90px rgba(49, 37, 21, .08);
}

.hero-copy {
  padding-top: 82px;
  padding-bottom: 82px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 6.6vw, 6.8rem);
}

.hero h1 em { color: #987331; }
.hero .lead.on-dark { color: var(--muted); }
.hero .button.outline { border-color: var(--black); color: var(--black); }
.hero .button.outline:hover { background: var(--black); color: #fff; }
.hero-rating { color: var(--muted); }
.hero-rating strong { color: var(--black); }
.hero-rating .stars { color: #987331; }

.hero-media {
  min-height: 650px;
  margin: 28px 28px 28px 0;
  border-radius: 320px 320px 38px 38px;
  box-shadow: 0 26px 60px rgba(38, 27, 15, .17);
}

.hero-media::after {
  inset: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: inherit;
  pointer-events: none;
}

.hero-media img { object-position: 77% center; }

.hero-seal {
  right: 20px;
  bottom: 18px;
  width: 124px;
  height: 124px;
  border: 0;
  background: rgba(8,8,7,.88);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.trust-strip {
  position: relative;
  z-index: 5;
  width: var(--container);
  margin: -38px auto 42px;
  border: 0;
  background: transparent;
}

.trust-grid {
  overflow: hidden;
  padding: 10px;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 122px;
  position: relative;
  border: 0 !important;
  padding-inline: 28px;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  bottom: 26px;
  width: 1px;
  background: var(--line);
}

.section { padding: clamp(82px, 9vw, 128px) 0; }
.section.paper { background: transparent; }
.section.beige { background: var(--beige); }

.section.black {
  width: min(1520px, calc(100% - 28px));
  margin: 18px auto;
  border-radius: 56px;
  overflow: hidden;
}

.section-heading { gap: clamp(36px, 7vw, 94px); }

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

.service-card {
  min-height: 590px;
  overflow: hidden;
  padding: 14px 28px 32px;
  border: 1px solid rgba(72, 58, 39, .07);
  border-radius: 38px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(44, 34, 22, .065);
}

.service-card:hover {
  background: var(--paper);
  color: var(--text);
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(44, 34, 22, .13);
}

.service-number {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 28px;
  min-width: 42px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(8,8,7,.88);
  color: var(--gold-light);
  text-align: center;
  backdrop-filter: blur(8px);
}

.service-card-visual {
  width: 100%;
  height: 250px;
  display: block;
  overflow: hidden;
  border-radius: 190px 190px 28px 28px;
  background: var(--beige);
}

.service-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:nth-child(1) .service-card-visual img { object-position: 78% center; }
.service-card:nth-child(2) .service-card-visual img { object-position: 86% center; }
.service-card:nth-child(3) .service-card-visual img { object-position: 84% center; }
.service-card:nth-child(4) .service-card-visual img { object-position: 89% center; }
.service-card:nth-child(5) .service-card-visual img { object-position: 72% center; }
.service-card:nth-child(6) .service-card-visual img { object-position: 82% center; }
.service-card:hover .service-card-visual img { transform: scale(1.035); }

.service-icon {
  z-index: 2;
  width: 56px;
  height: 56px;
  margin: -27px 0 19px 12px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: #8e6c2f;
  box-shadow: 0 8px 22px rgba(44, 34, 22, .12);
}

.service-card:hover .service-icon { color: #8e6c2f; }
.service-card h3 { margin-bottom: 14px; }
.service-card p,
.service-card:hover p { color: var(--muted); }
.service-card .text-link,
.service-card:hover .text-link { color: #7e5e27; }

.feature-split {
  gap: clamp(42px, 7vw, 92px);
  padding: 26px;
  border-radius: 52px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(44, 34, 22, .08);
}

.feature-media {
  min-height: 580px;
  border-radius: 240px 42px 42px 42px;
}

.feature-media img { object-position: 81% center; }
.feature-media::after { border-radius: 222px 30px 30px 30px; }
.feature-copy { padding: 38px 36px 38px 0; }

.result-grid { gap: 20px; }

.result-card {
  border-radius: 34px 120px 34px 34px;
}

.result-card:first-child { border-radius: 160px 40px 40px 40px; }
.result-card:last-child { border-radius: 40px 40px 150px 40px; }
.result-card figcaption { border-radius: 22px; }

.review-card {
  border-radius: 32px;
}

.reviews-wrap {
  background: var(--beige) !important;
  color: var(--text) !important;
}

.reviews-wrap .review-card {
  border: 0;
  background: var(--paper);
  box-shadow: 0 16px 46px rgba(44, 34, 22, .07);
}

.reviews-wrap .review-meta,
.reviews-wrap .review-source { color: var(--muted); }
.reviews-wrap .review-author { color: #7e5e27; }
.reviews-wrap .stars { color: #a47a32; }
.reviews-wrap .button.outline { border-color: var(--black); color: var(--black); }
.reviews-wrap .button.outline:hover { background: var(--black); color: #fff; }

.schedule-grid > div:first-child {
  padding: clamp(30px, 5vw, 54px);
  border-radius: 42px;
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(44, 34, 22, .07);
}

.schedule-list { border: 0; }

.schedule-row {
  margin-bottom: 7px;
  padding: 12px 16px;
  border: 0;
  border-radius: 16px;
  background: var(--cream);
}

.schedule-row.today { background: var(--gold-light); color: var(--black); }

.address-card {
  border-radius: 44px 160px 44px 44px;
  box-shadow: 0 28px 70px rgba(24, 20, 14, .18);
}

.article-card {
  border: 0;
  border-radius: 36px;
  box-shadow: 0 15px 44px rgba(44, 34, 22, .055);
}

.article-card:nth-child(3n + 1) { border-radius: 80px 36px 36px 36px; }
.article-card:nth-child(3n + 3) { border-radius: 36px 36px 80px 36px; }

.faq-list { border: 0; }

.faq-list details {
  margin-bottom: 12px;
  padding-inline: 28px;
  border: 0;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 10px 32px rgba(44, 34, 22, .045);
}

.faq-list details[open] { box-shadow: 0 16px 38px rgba(44, 34, 22, .08); }

.cta-band {
  width: min(1520px, calc(100% - 28px));
  margin: 18px auto;
  border-radius: 56px;
}

.subhero {
  width: min(1520px, calc(100% - 28px));
  margin: 14px auto 0;
  border-radius: 48px;
}

.subhero::after { opacity: .7; }

.process-grid { gap: 22px; }

.process-card {
  border: 0;
  border-radius: 36px;
  box-shadow: 0 14px 42px rgba(44, 34, 22, .06);
}

.process-card:nth-child(1) { border-radius: 80px 36px 36px 36px; }
.process-card:nth-child(3) { border-radius: 36px 36px 80px 36px; }

.service-visual {
  overflow: hidden;
  border: 0;
  border-radius: 56px 150px 56px 56px;
}

.tag { border-radius: 999px; background: var(--paper); }

.article-aside { border-radius: 34px 90px 34px 34px; }

.all-services { gap: 20px; }

.all-service {
  border: 0;
  border-radius: 30px;
  box-shadow: 0 13px 38px rgba(44, 34, 22, .055);
}

.all-service:nth-child(4n + 1) { border-radius: 64px 30px 30px 30px; }
.all-service:nth-child(4n) { border-radius: 30px 30px 64px 30px; }
.all-service:hover { transform: translateY(-4px); }
.all-service .service-icon { margin: 0; box-shadow: none; background: var(--beige); }

.site-footer { border-radius: 58px 58px 0 0; }

.whatsapp-float {
  width: 62px;
  height: 62px;
  border: 4px solid rgba(255,255,255,.9);
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 560px; }
  .review-card { min-height: 250px; }
}

@media (max-width: 820px) {
  .main-nav { top: calc(74px + 30px); }
  .hero {
    width: calc(100% - 18px);
    grid-template-columns: 1fr;
    border-radius: 34px;
  }
  .hero-copy { min-height: 570px; padding: 68px 25px 45px; }
  .hero h1 { font-size: clamp(3.3rem, 14vw, 5.2rem); }
  .hero-media {
    min-height: 470px;
    margin: 0 18px 18px;
    border-radius: 220px 220px 28px 28px;
  }
  .trust-strip { margin-top: 22px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item::after { display: none; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line) !important; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line) !important; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card-visual { height: clamp(250px, 62vw, 390px); }
  .feature-split { padding: 16px; border-radius: 38px; }
  .feature-media { min-height: 500px; border-radius: 200px 30px 30px 30px; }
  .feature-copy { padding: 24px 18px 28px; }
  .section.black, .reviews-wrap, .cta-band, .subhero { width: calc(100% - 18px); border-radius: 38px; }
  .result-card, .result-card:first-child, .result-card:last-child { border-radius: 34px 90px 34px 34px; }
  .schedule-grid > div:first-child { padding: 30px 22px; border-radius: 32px; }
  .address-card { border-radius: 34px 100px 34px 34px; }
}

@media (max-width: 520px) {
  .hero { width: calc(100% - 12px); border-radius: 28px; }
  .hero-copy { padding-inline: 20px; }
  .hero-media { min-height: 390px; margin-inline: 10px; border-radius: 170px 170px 24px 24px; }
  .hero-seal { width: 104px; height: 104px; right: 12px; bottom: 12px; }
  .trust-strip { width: calc(100% - 22px); }
  .trust-grid { border-radius: 24px; }
  .trust-item { min-height: 106px; padding: 15px; }
  .service-card { padding: 10px 22px 28px; border-radius: 30px; }
  .service-card-visual { border-radius: 150px 150px 24px 24px; }
  .service-number { top: 22px; right: 22px; }
  .feature-media { min-height: 390px; }
  .section.black, .reviews-wrap, .cta-band, .subhero { width: calc(100% - 12px); border-radius: 30px; }
  .review-card, .article-card, .article-card:nth-child(n), .process-card, .process-card:nth-child(n), .all-service, .all-service:nth-child(n) { border-radius: 28px; }
  .faq-list details { padding-inline: 20px; border-radius: 20px; }
  .address-card { border-radius: 30px 80px 30px 30px; }
  .service-visual { border-radius: 30px 78px 30px 30px; }
}

/* Direção editorial 2026 — inspirada em revistas e marcas premium de beleza */
:root {
  --black: #11100e;
  --ink: #1d1915;
  --ink-soft: #312b26;
  --cream: #f5f0e8;
  --beige: #e9dfd4;
  --sand: #cbb7a3;
  --gold: #b99863;
  --gold-light: #ead9b9;
  --paper: #fbf8f2;
  --text: #26211d;
  --muted: #746b63;
  --line: rgba(38, 33, 29, .16);
  --shadow: none;
  --radius: 16px;
  --container: min(1280px, calc(100% - 72px));
}

body { background: var(--paper); }

.announcement {
  padding: 8px 20px;
  background: #b7a18e;
  color: #fff;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .2em;
}

.site-header {
  background: rgba(17, 16, 14, .98);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}

.header-inner { min-height: 94px; }
.brand { width: 235px; }
.main-nav { color: #fff; font-size: .7rem; gap: 30px; }
.main-nav > a:not(.button-link)::after { background: var(--gold-light); }
.nav-cta {
  padding: 12px 22px;
  border-color: var(--gold-light);
  border-radius: 999px;
  color: var(--gold-light);
}
.nav-cta:hover { background: var(--gold-light); color: var(--black); }
.menu-toggle { border-color: rgba(255,255,255,.28); border-radius: 50%; }
.menu-toggle span { background: #fff; }

.button {
  min-height: 48px;
  padding: 13px 25px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: none;
  font-size: .69rem;
  letter-spacing: .13em;
}
.button:hover { background: transparent; color: var(--ink); transform: none; }
.button.outline { border-color: var(--ink); color: var(--ink); }
.button.outline:hover { background: var(--ink); color: #fff; }
.button.dark { background: var(--ink); color: #fff; }
.button.dark:hover { background: transparent; color: var(--ink); }

.hero {
  width: 100%;
  max-width: none;
  min-height: 680px;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  grid-template-areas: "media copy";
  overflow: hidden;
  border-radius: 0;
  background: #ece2d8;
  color: var(--ink);
  box-shadow: none;
}
.hero-copy {
  grid-area: copy;
  min-height: 680px;
  padding: 100px clamp(42px, 7vw, 120px) 86px clamp(42px, 5vw, 86px);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.hero-media {
  grid-area: media;
  min-height: 680px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-media::after { display: none; }
.hero-media img { object-position: 74% center; filter: saturate(.86) contrast(.97); }
.hero h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 6.4vw, 7.5rem);
  line-height: .86;
  letter-spacing: -.045em;
}
.hero h1 em { display: block; margin-top: .1em; color: #90765f; font-weight: 500; }
.hero .lead.on-dark { max-width: 610px; color: #655d55; }
.hero .button.outline { border-color: var(--ink); color: var(--ink); }
.hero-rating { margin-top: 34px; color: #70675f; }
.hero-rating strong { color: var(--ink); }
.hero-seal {
  right: 24px;
  bottom: 24px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(17,16,14,.9);
  color: var(--gold-light);
}

.eyebrow { color: #8f7358; font-size: .64rem; letter-spacing: .25em; }
.eyebrow.dark { color: #8f7358; }
.eyebrow::before { width: 44px; }

h1, h2, h3 { letter-spacing: -.035em; }
h2 { font-size: clamp(3.1rem, 5.7vw, 6.2rem); }

.trust-strip {
  width: 100%;
  margin: 0;
  background: var(--paper);
  box-shadow: none;
}
.trust-grid {
  width: 100%;
  max-width: none;
  padding-inline: clamp(28px, 6vw, 96px);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.trust-item { min-height: 150px; border-color: var(--line) !important; }
.trust-item::after { display: none; }
.trust-item strong { color: var(--ink); font-size: 2.4rem; }

.section { padding: 112px 0; }
.section.compact { padding-block: 78px; }
.section.paper { background: var(--paper); }
.section.beige { background: var(--beige); }
.section-heading {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(40px, 8vw, 130px);
  margin-bottom: 54px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.section-heading h2 { max-width: 870px; }

.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 58px 24px; }
.service-card,
.service-card:hover {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  transform: none;
}
.service-card-visual {
  position: relative;
  height: clamp(350px, 36vw, 520px);
  border-radius: 14px;
  background: #ddd2c7;
}
.service-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: inherit;
  pointer-events: none;
}
.service-card:nth-child(1) .service-card-visual img { object-position: 74% center; }
.service-card:nth-child(2) .service-card-visual img { object-position: 78% center; }
.service-card:nth-child(3) .service-card-visual img { object-position: 82% center; }
.service-card:nth-child(4) .service-card-visual img { object-position: 88% center; }
.service-card:nth-child(5) .service-card-visual img { object-position: 78% center; }
.service-card:nth-child(6) .service-card-visual img { object-position: 87% center; }
.service-card:hover .service-card-visual img { transform: scale(1.02); }
.service-number {
  top: 14px;
  right: 14px;
  min-width: 38px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(251,248,242,.9);
  color: var(--ink);
  font-size: .62rem;
}
.service-icon { display: none; }
.service-card h3 { margin: 22px 0 10px; font-size: clamp(2rem, 2.5vw, 2.8rem); }
.service-card p { max-width: 94%; color: #6f675f; font-size: .85rem; }
.service-card .text-link { margin-top: 18px; color: var(--ink); }

.feature-split {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
}
.feature-media { min-height: 720px; border-radius: 0; }
.feature-media img { object-position: 78% center; filter: saturate(.86); }
.feature-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(56px, 8vw, 120px);
  background: #baa08b;
  color: #fff;
}
.feature-copy .eyebrow { color: #f1dfc0; }
.feature-copy h2 { font-size: clamp(3.2rem, 5.5vw, 6rem); }
.feature-copy p { color: rgba(255,255,255,.82); }
.feature-copy .signature { color: #fff; }
.feature-copy .button.dark { border-color: #fff; background: transparent; color: #fff; }
.feature-copy .button.dark:hover { background: #fff; color: var(--ink); }

.section.black {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: #ded2c6;
  color: var(--ink);
}
.section.black .eyebrow { color: #8f7358; }
.section.black .lead.on-dark { color: #6e645c; }
.result-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: none; gap: 18px; }
.result-card,
.result-card:first-child,
.result-card:last-child {
  min-height: 500px;
  grid-row: auto;
  border-radius: 12px;
}
.result-card::after { background: linear-gradient(180deg, transparent 60%, rgba(15,13,11,.68)); }
.result-card:nth-child(1) img { object-position: 79% center; }
.result-card:nth-child(2) img { object-position: 82% center; }
.result-card:nth-child(3) img { object-position: 78% center; }
.result-card figcaption { color: #fff; }

.reviews-wrap { background: var(--paper) !important; color: var(--ink) !important; }
.reviews-wrap .eyebrow { color: #8f7358; }
.review-summary { align-items: flex-end; margin-bottom: 54px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.review-score { color: var(--ink); font-size: clamp(6rem, 12vw, 11rem); }
.review-meta { color: #70675f; }
.reviews-grid { gap: 0; border-top: 1px solid var(--line); }
.review-card {
  min-height: 280px;
  padding: 38px 32px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}
.review-card:last-child { border-right: 0; }
.review-card blockquote { color: var(--ink); }
.review-source { color: #837970; }
.reviews-wrap .button.outline { border-color: var(--ink); color: var(--ink); }

.schedule-grid { align-items: stretch; gap: 0; }
.schedule-grid > div:first-child {
  padding: clamp(42px, 6vw, 84px);
  border-radius: 0;
  background: #f2ece4;
  box-shadow: none;
}
.schedule-row { margin: 0; padding: 13px 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.address-card {
  padding: clamp(42px, 6vw, 84px);
  border-radius: 0;
  background: #a88d78;
  box-shadow: none;
}
.address-card .button { border-color: #fff; background: transparent; color: #fff; }
.address-card .button:hover { background: #fff; color: var(--ink); }

.article-card,
.article-card:nth-child(n) {
  min-height: 310px;
  padding: 34px 28px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.article-card:hover { transform: none; border-top-color: var(--ink); }
.article-card h3 { font-size: 2.15rem; }

.faq-list details {
  margin: 0;
  padding-inline: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list details[open] { box-shadow: none; }

.cta-band {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: #a48975;
}
.cta-inner { min-height: 540px; max-width: 920px; text-align: center; align-items: center; }
.cta-inner .eyebrow { justify-content: center; color: #f2dec0; }
.cta-inner .eyebrow::after { content: ""; width: 44px; height: 1px; background: currentColor; }
.cta-inner .button { border-color: #fff; background: transparent; color: #fff; }
.cta-inner .button:hover { background: #fff; color: var(--ink); }

.subhero {
  width: 100%;
  min-height: 480px;
  margin: 0;
  border-radius: 0;
  background: #e8ded4;
  color: var(--ink);
}
.subhero::after { display: none; }
.subhero .container { padding-block: 80px; }
.subhero .breadcrumbs, .subhero .breadcrumbs a, .subhero .lead.on-dark { color: #6e645c; }
.subhero h1 { max-width: 1000px; font-size: clamp(4rem, 8vw, 8rem); }

.process-card,
.process-card:nth-child(n),
.all-service,
.all-service:nth-child(n),
.service-visual,
.article-aside {
  border-radius: 12px;
  box-shadow: none;
}
.process-card { border: 1px solid var(--line); background: transparent; }
.all-service { border: 1px solid var(--line); background: transparent; }
.all-service:hover { background: var(--ink); color: #fff; transform: none; }
.service-visual { border-radius: 12px; }

.site-footer { border-radius: 0; }

@media (max-width: 1050px) {
  :root { --container: min(100% - 48px, 960px); }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); }
  .hero-copy { padding-inline: 46px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-visual { height: 480px; }
  .result-card, .result-card:first-child, .result-card:last-child { min-height: 430px; }
}

@media (max-width: 820px) {
  :root { --container: calc(100% - 34px); }
  .header-inner { min-height: 78px; }
  .brand { width: 190px; }
  .main-nav {
    top: calc(78px + 29px);
    z-index: 120;
    background: var(--black);
    color: #fff;
  }
  .main-nav > a { border-color: rgba(255,255,255,.16) !important; }
  .main-nav .nav-cta { border-color: var(--gold-light); color: var(--gold-light); }
  .hero {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas: "media" "copy";
    border-radius: 0;
  }
  .hero-media { min-height: 520px; margin: 0; border-radius: 0; }
  .hero-copy { min-height: 0; padding: 68px 25px 74px; }
  .hero h1 { font-size: clamp(4rem, 16vw, 6.6rem); }
  .trust-strip { margin: 0; }
  .services-grid { grid-template-columns: 1fr; gap: 52px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading .lead { max-width: 640px; }
  .service-card-visual { height: min(118vw, 590px); border-radius: 12px; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-media { min-height: 560px; border-radius: 0; }
  .feature-copy { padding: 64px 26px 72px; }
  .section.black, .reviews-wrap, .cta-band, .subhero { width: 100%; border-radius: 0; }
  .result-grid { grid-template-columns: 1fr; }
  .result-card, .result-card:first-child, .result-card:last-child { min-height: 440px; border-radius: 10px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .schedule-grid > div:first-child, .address-card { border-radius: 0; }
  .subhero .container { padding-block: 64px; }
}

@media (max-width: 520px) {
  :root { --container: calc(100% - 28px); }
  .announcement { font-size: .56rem; letter-spacing: .12em; }
  .brand { width: 172px; }
  .hero-media { min-height: 420px; }
  .hero-copy { padding-inline: 20px; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 5.2rem); }
  .hero .button-row { align-items: stretch; }
  .trust-grid { border-radius: 0; padding-inline: 0; }
  .trust-item { min-height: 118px; }
  .section { padding-block: 82px; }
  .section-heading { margin-bottom: 38px; padding-bottom: 24px; }
  .service-card { padding: 0; border-radius: 0; }
  .service-card-visual { height: 118vw; border-radius: 10px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading h2 { font-size: clamp(3.25rem, 15vw, 4.7rem); }
  .feature-media { min-height: 430px; }
  .result-card, .result-card:first-child, .result-card:last-child { min-height: 360px; }
  .review-card { padding-inline: 8px; }
  .article-card, .article-card:nth-child(n) { padding-inline: 6px; }
  .faq-list details { padding-inline: 0; border-radius: 0; }
  .cta-inner { min-height: 500px; }
  .subhero h1 { font-size: clamp(3.7rem, 17vw, 5.4rem); }
}

/* Ajustes de legibilidade móvel e nova capa fotográfica */
.hero-media { position: relative; display: block; background: #d8d2cb; }
.hero-media .hero-photo {
  position: absolute;
  inset: auto;
  display: block;
  max-width: none;
  object-fit: cover;
  filter: none;
}
.hero-media .hero-photo-salon {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: 52% center;
}
.hero-media .hero-photo-blonde {
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: 46%;
  height: 76%;
  border: 8px solid rgba(251,248,242,.95);
  object-position: 51% center;
  box-shadow: 0 22px 55px rgba(17,16,14,.22);
}
.hero-seal { z-index: 3; right: auto; left: 24px; }
.service-card:nth-child(5) .service-card-visual { background: #f4ece3; }
.service-card:nth-child(5) .service-card-visual img {
  object-fit: cover;
  object-position: 61% center !important;
}

@media (max-width: 820px) {
  .main-nav,
  .main-nav.open {
    position: absolute !important;
    z-index: 500 !important;
    top: 100% !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    padding: 28px 34px 40px !important;
    overflow-y: auto;
    height: calc(100svh - 78px);
    background: #fff !important;
    color: #111 !important;
    opacity: 1 !important;
    box-shadow: 0 22px 60px rgba(0,0,0,.18);
  }
  .main-nav > a,
  .main-nav.open > a {
    display: block !important;
    width: 100% !important;
    padding: 19px 0 !important;
    border-bottom: 1px solid rgba(17,17,17,.16) !important;
    background: #fff !important;
    color: #111 !important;
  }
  .main-nav .nav-cta,
  .main-nav.open .nav-cta {
    margin-top: 24px !important;
    padding: 15px 20px !important;
    border: 1px solid #111 !important;
    border-radius: 999px !important;
    background: #111 !important;
    color: #fff !important;
    text-align: center;
  }
  .hero-media .hero-photo-blonde {
    right: 16px;
    bottom: 16px;
    width: 48%;
    height: 72%;
    border-width: 6px;
  }
  .hero-seal { left: 14px; bottom: 14px; }
}

@media (max-width: 520px) {
  .main-nav,
  .main-nav.open { padding-inline: 24px !important; }
  .hero-media .hero-photo-salon { object-position: 57% center; }
  .hero-media .hero-photo-blonde { width: 51%; height: 68%; }
}

/* Capa clean: salão em evidência e loiro no card da especialidade */
.hero-media .hero-photo-salon {
  filter: blur(1.6px) saturate(.86) brightness(.95);
  transform: scale(1.02);
}

.hero-media .hero-photo-blonde,
.hero-media .hero-seal {
  display: none !important;
}

.service-card:nth-child(1) .service-card-visual img {
  object-position: 50% center !important;
}

/* As especialidades precisam aparecer mesmo quando o WebView não executa a animação. */
.services-grid,
.services-grid .service-card,
.services-grid .service-card > * {
  opacity: 1 !important;
  visibility: visible !important;
}

.services-grid {
  transform: none !important;
}

/* Header fotográfico com conteúdo sobreposto */
.hero {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  min-height: clamp(700px, 80vh, 860px);
  overflow: hidden;
  background: #11100e;
}

.hero-media {
  position: absolute !important;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.hero-media::after {
  content: "";
  position: absolute;
  display: block !important;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, .88) 0%, rgba(10, 9, 8, .68) 42%, rgba(10, 9, 8, .18) 78%, rgba(10, 9, 8, .08) 100%),
    linear-gradient(0deg, rgba(10, 9, 8, .36), transparent 48%);
  pointer-events: none;
}

.hero-media .hero-photo-salon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: none;
  transform: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: clamp(700px, 80vh, 860px);
  padding: clamp(105px, 13vh, 150px) max(28px, calc((100vw - 1180px) / 2));
  justify-content: center;
  background: transparent;
  color: #fff;
}

.hero-copy > * { max-width: 660px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: #fff; text-shadow: 0 3px 30px rgba(0, 0, 0, .22); }
.hero h1 em { color: var(--gold-light); }
.hero .lead.on-dark,
.hero-rating { color: rgba(255, 255, 255, .86); }
.hero-rating strong { color: #fff; }
.hero .button { border-color: var(--gold-light); background: var(--gold-light); color: var(--black); }
.hero .button.outline { border-color: rgba(255, 255, 255, .8); background: rgba(8, 8, 7, .16); color: #fff; }

/* Página de serviços: cards largos e texto sem quebra estreita */
.all-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.all-service,
.all-service:nth-child(n) {
  min-height: 230px;
  grid-template-columns: 46px minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: start;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.all-service .service-icon {
  width: 46px;
  height: 46px;
  display: grid !important;
  place-items: center;
  margin: 0;
  border: 1px solid #b99863;
  border-radius: 50%;
  background: transparent;
  color: #76531d;
  font-family: var(--sans);
  font-size: .72rem;
}

.all-service > span:nth-child(2) {
  min-width: 0;
  color: var(--ink);
}

.all-service > span:last-child {
  display: block;
  color: #76531d;
  font-size: 1.25rem;
}

.all-service h3 {
  max-width: none;
  font-size: clamp(1.8rem, 2.3vw, 2.45rem);
  line-height: 1.04;
}

.all-service p {
  max-width: 540px;
  margin-top: 14px;
  color: #5f5851;
  font-size: .95rem;
  line-height: 1.65;
}

/* Avaliações com contraste alto */
.reviews-wrap {
  background: #eee6dc !important;
  color: var(--ink) !important;
}

.reviews-grid {
  gap: 20px;
  border: 0;
}

.review-card,
.review-card:last-child {
  min-height: 300px;
  padding: 34px 30px;
  border: 1px solid rgba(73, 55, 32, .13);
  border-radius: 22px;
  background: #fffdf9;
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(44, 34, 22, .07);
}

.review-card .stars { color: #9b681d; }
.review-card blockquote { color: #1d1915; }
.review-card .review-author { color: #684615; }
.review-card .review-source { color: #5e5750; }
.review-meta,
.reviews-wrap .review-meta { color: #5e5750; }

@media (max-width: 820px) {
  .hero,
  .hero-copy { min-height: 720px; }
  .hero-copy { padding: 110px 26px 72px; }
  .hero-copy > * { max-width: 600px; }
  .hero-media .hero-photo-salon { object-position: 48% center; }
  .all-services { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
}

@media (max-width: 520px) {
  .hero,
  .hero-copy { min-height: 690px; }
  .hero-copy { padding: 96px 21px 58px; }
  .hero-media .hero-photo-salon { object-position: 48% center; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(10, 9, 8, .42) 0%, rgba(10, 9, 8, .5) 38%, rgba(10, 9, 8, .88) 100%);
  }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 4.8rem); }
  .all-service,
  .all-service:nth-child(n) {
    min-height: 0;
    grid-template-columns: 40px minmax(0, 1fr) 20px;
    gap: 15px;
    padding: 25px 20px;
  }
  .all-service > span { display: block; }
  .all-service .service-icon { width: 40px; height: 40px; display: grid !important; }
  .all-service h3 { font-size: 1.85rem; }
  .all-service p { font-size: .94rem; }
  .review-card { padding: 28px 23px; }
}

/* Uma foto real por especialidade */
.service-card:nth-child(2) .service-card-visual img { object-position: center 48% !important; }
.service-card:nth-child(3) .service-card-visual img { object-position: center 32% !important; }
.service-card:nth-child(4) .service-card-visual img { object-position: center 50% !important; }
.service-card:nth-child(5) .service-card-visual img { object-position: center 45% !important; }
.service-card:nth-child(6) .service-card-visual img { object-position: center 50% !important; }

/* Resultados reais com uma única foto por trabalho */
.result-card:nth-child(1) img { object-position: center 48% !important; }
.result-card:nth-child(2) img { object-position: center 32% !important; }
.result-card:nth-child(3) img { object-position: center 50% !important; }

/* Agendamento acessível: sistema online ou ajuda humana pelo WhatsApp */
.booking-choice-card {
  padding: clamp(38px, 5vw, 70px);
  border: 1px solid rgba(54, 43, 31, .12);
  background: #fffdf9;
  color: var(--ink);
}

.booking-choice-card h3 {
  max-width: 520px;
  margin-bottom: 34px;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
}

.booking-choice {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.booking-choice:last-child { border-bottom: 1px solid var(--line); }
.booking-choice-number {
  color: #8b6730;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.booking-choice strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.booking-choice p {
  max-width: 440px;
  margin-bottom: 18px;
  color: var(--muted);
}

.booking-choice .button { min-height: 47px; padding: 11px 18px; }
.booking-choice .whatsapp-button { border-color: #b68b42; background: #b68b42; color: #17130f; }

/* Localização com a fachada real do salão */
.location-section { padding-top: 20px; }
.location-showcase {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(54, 43, 31, .12);
  border-radius: 42px;
  background: #fffdf9;
  box-shadow: 0 24px 70px rgba(58, 43, 28, .08);
}

.location-showcase-media {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #dbe5e9;
}

.location-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 56%;
}

.location-showcase-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, rgba(9, 8, 7, .72));
  pointer-events: none;
}

.location-showcase-media figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.location-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 88px);
}

.location-showcase-copy h2 {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: clamp(3.1rem, 5.5vw, 6rem);
}

.location-intro { max-width: 610px; color: var(--muted); font-size: 1.08rem; }
.location-showcase-copy address {
  margin: 24px 0 30px;
  color: #554d46;
  font-size: 1.03rem;
  font-style: normal;
  line-height: 1.7;
}

.location-showcase-copy address strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
}

.location-facts { border-top: 1px solid var(--line); }
.location-facts > div {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.location-facts span {
  color: #8b6730;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.location-facts strong { color: #403a34; font-weight: 500; }
.location-showcase .button.outline { border-color: var(--ink); color: var(--ink); }
.location-showcase .button.outline:hover { background: var(--ink); color: #fff; }
.location-actions { gap: 10px; margin-top: 30px; }
.location-actions .button { padding-inline: 17px; font-size: .7rem; }

@media (max-width: 1050px) {
  .location-showcase { grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr); }
  .location-showcase-copy { padding: 46px 38px; }
  .location-actions .button { width: 100%; }
}

@media (max-width: 820px) {
  .location-section { padding-inline: 12px; }
  .location-showcase { grid-template-columns: 1fr; border-radius: 32px; }
  .location-showcase-media { min-height: 650px; }
  .location-showcase-copy { padding: 48px 28px; }
  .booking-choice-card { padding: 40px 25px; }
}

@media (max-width: 520px) {
  .location-section { padding-inline: 6px; }
  .location-showcase { border-radius: 26px; }
  .location-showcase-media { min-height: 540px; }
  .location-showcase-media img { object-position: center 58%; }
  .location-showcase-copy { padding: 42px 22px; }
  .location-showcase-copy h2 { font-size: clamp(3.1rem, 15vw, 4.5rem); }
  .location-facts > div { grid-template-columns: 1fr; gap: 7px; }
  .location-actions .button { width: 100%; }
  .booking-choice-card h3 { font-size: 2.6rem; }
}

.topic-map-section { overflow: hidden; }

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

.topic-cluster {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 16px 46px rgba(44, 34, 22, .055);
}

.topic-cluster-label {
  color: #8e6c2f;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.topic-cluster h3 {
  margin: 24px 0 15px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.topic-cluster > p {
  max-width: 580px;
  color: var(--muted);
}

.topic-cluster ul {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.topic-cluster li { border-bottom: 1px solid var(--line); }

.topic-cluster a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  font-size: .92rem;
  line-height: 1.45;
}

.topic-cluster a span { color: #8e6c2f; }
.topic-cluster a:hover { color: #7b5a22; }

@media (max-width: 820px) {
  .topic-map-grid { grid-template-columns: 1fr; }
  .topic-cluster { padding: 28px 24px; }
}
