:root {
  --rose-700: #845a67;
  --rose-600: #a77381;
  --rose-500: #c38a96;
  --rose-300: #e3c4ca;
  --cream-100: #f8f1ed;
  --cream-200: #f2e6df;
  --gold-500: #dfc185;
  --gold-600: #caa15d;
  --ink-900: #2f2328;
  --ink-700: #584149;
  --white: #ffffff;
  --shadow-lg: 0 28px 90px rgba(76, 42, 52, 0.12);
  --shadow-md: 0 18px 45px rgba(76, 42, 52, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(223, 193, 133, 0.1), transparent 24%),
    radial-gradient(circle at right 18%, rgba(167, 115, 129, 0.12), transparent 18%),
    linear-gradient(180deg, #fffdfb 0%, #f7f0eb 52%, #fcfaf8 100%);
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 241, 237, 0.88);
  border-bottom: 1px solid rgba(132, 90, 103, 0.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: 92px;
}

.brand img,
.footer-logo {
  width: 180px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-700);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--rose-700);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(132, 90, 103, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(132, 90, 103, 0.14);
  box-shadow: 0 12px 26px rgba(76, 42, 52, 0.1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink-900);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--ink-900);
  box-shadow: var(--shadow-md);
}

.button-secondary {
  border: 1px solid rgba(132, 90, 103, 0.16);
  background: rgba(255, 255, 255, 0.75);
}

.button-dark {
  background: var(--ink-900);
  color: var(--white);
}

.hero {
  padding: 68px 0 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-card-inner,
.info-panel,
.service-card,
.benefit-card,
.faq-item,
.cta-band {
  border: 1px solid rgba(132, 90, 103, 0.1);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  padding: 60px 56px;
  border-radius: clamp(28px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 237, 0.9)),
    linear-gradient(120deg, rgba(223, 193, 133, 0.08), transparent 38%);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 193, 133, 0.14), rgba(223, 193, 133, 0));
  pointer-events: none;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-kicker-line {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), rgba(223, 193, 133, 0.1));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-700);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.service-card h3,
.benefit-card h3,
.hero-card h2,
.service-hero h1,
.service-layout h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 4.7vw, 4.6rem);
}

.hero-text,
.section-header p,
.section-copy p,
.service-card p,
.benefit-card p,
.faq-item p,
.service-layout p,
.footer-grid p,
.footer-list,
.hero-points {
  color: var(--ink-700);
  line-height: 1.8;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 36px 0 26px;
  flex-wrap: wrap;
}

.hero-points {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li::before {
  content: "•";
  margin-right: 10px;
  color: var(--gold-600);
}

.hero-card-inner {
  height: 100%;
  padding: 40px 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(223, 193, 133, 0.15), transparent 30%),
    linear-gradient(180deg, #b5838e, #9b6d79);
  color: var(--white);
}

.hero-card {
  display: grid;
  gap: 16px;
}

.hero-card-label {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero-card h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  margin-bottom: 34px;
  line-height: 1.1;
  font-weight: 700;
}

.hero-stat-list {
  display: grid;
  gap: 18px;
}

.hero-stat-list strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}

.hero-stat-list span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-note {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(132, 90, 103, 0.08);
  color: var(--ink-700);
}

.hero-note-title {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-900);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
  line-height: 1.7;
}

.trust-strip {
  padding: 8px 0 34px;
}

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

.trust-grid p {
  margin: 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink-700);
  border: 1px solid rgba(132, 90, 103, 0.06);
  font-size: 0.96rem;
}

.reception-section {
  padding-top: 16px;
}

.reception-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
}

.reception-photo,
.reception-copy {
  border: 1px solid rgba(132, 90, 103, 0.1);
  box-shadow: var(--shadow-md);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
}

.reception-photo {
  overflow: hidden;
}

.reception-carousel {
  position: relative;
  min-height: 560px;
}

.reception-track {
  display: grid;
}

.reception-slide {
  display: none;
  position: relative;
  margin: 0;
}

.reception-slide.is-active {
  display: block;
}

.reception-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(28, 18, 23, 0), rgba(28, 18, 23, 0.3));
  pointer-events: none;
}

.reception-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.reception-carousel-ui {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  pointer-events: none;
}

.reception-carousel-ui .carousel-controls,
.reception-carousel-ui .carousel-dots {
  pointer-events: auto;
}

.reception-carousel-ui .carousel-dots {
  margin-top: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.reception-carousel-ui .carousel-button {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}

.reception-copy {
  padding: 40px;
}

.reception-copy h2 {
  margin: 0 0 16px;
}

.reception-copy p {
  color: var(--ink-700);
  line-height: 1.85;
}

.testimonials-section {
  padding-top: 12px;
}

.testimonials-shell {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(132, 90, 103, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 241, 237, 0.9)),
    radial-gradient(circle at top right, rgba(223, 193, 133, 0.12), transparent 24%);
  box-shadow: var(--shadow-md);
}

.featured-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.featured-testimonial {
  padding: 28px 24px;
  border-radius: 28px;
  border: 1px solid rgba(132, 90, 103, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.featured-testimonial p {
  margin: 14px 0 16px;
  color: var(--ink-900);
  line-height: 1.7;
}

.featured-testimonial strong {
  font-weight: 600;
}

.testimonials-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.testimonials-badge {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--rose-700);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonials-note {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.7;
}

.stars {
  color: var(--gold-600);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(132, 90, 103, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-900);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.testimonials-track {
  display: grid;
}

.testimonial-card {
  display: none;
  position: relative;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(132, 90, 103, 0.08);
  overflow: hidden;
}

.testimonial-card.is-active {
  display: block;
}

.testimonial-quote {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 7rem;
  line-height: 0.8;
  color: rgba(223, 193, 133, 0.22);
  font-weight: 700;
  pointer-events: none;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  margin: 14px 0 22px;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}

.testimonial-meta strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.testimonial-meta span {
  color: var(--ink-700);
}

.carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(132, 90, 103, 0.2);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(167, 115, 129, 0.06), rgba(223, 193, 133, 0.06));
}

.section-accent {
  padding-top: 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.section h2,
.service-layout h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin-bottom: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.info-panel {
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
}

.info-chip {
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(223, 193, 133, 0.12), rgba(167, 115, 129, 0.06));
  color: var(--ink-900);
  font-weight: 600;
}

.services-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.seo-local-section {
  padding-top: 40px;
}

.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.seo-link-card {
  display: grid;
  gap: 8px;
  padding: 24px 20px;
  border-radius: 24px;
  border: 1px solid rgba(132, 90, 103, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.seo-link-card span {
  color: var(--rose-700);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-link-card strong {
  font-weight: 600;
  line-height: 1.5;
}

.longtail-section {
  padding-top: 22px;
}

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

.longtail-card {
  display: grid;
  padding: 28px 24px;
  border-radius: 28px;
  border: 1px solid rgba(132, 90, 103, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.longtail-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.longtail-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.8;
}

.longtail-card:hover,
.longtail-card:focus-visible,
.content-hub-card:hover,
.content-hub-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(132, 90, 103, 0.18);
  box-shadow: 0 24px 52px rgba(76, 42, 52, 0.12);
}

.content-hub-card {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.content-hub-section {
  padding-top: 18px;
}

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

.content-hub-card {
  display: grid;
  gap: 10px;
  padding: 28px 24px;
  border-radius: 28px;
  border: 1px solid rgba(132, 90, 103, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.content-hub-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.45;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.content-hub-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.8;
}

.content-hub-card .service-tag {
  justify-self: start;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  line-height: 1;
}

.card-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--rose-700);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card-link-cta::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(223, 193, 133, 0.22), rgba(167, 115, 129, 0.12));
  color: var(--rose-700);
  font-size: 1rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.longtail-card:hover .card-link-cta::after,
.longtail-card:focus-visible .card-link-cta::after,
.content-hub-card:hover .card-link-cta::after,
.content-hub-card:focus-visible .card-link-cta::after {
  transform: translateX(3px);
  background: linear-gradient(135deg, rgba(223, 193, 133, 0.32), rgba(167, 115, 129, 0.18));
}

.service-feature {
  position: sticky;
  top: 118px;
  padding: 34px 30px;
  border-radius: 30px;
  border: 1px solid rgba(132, 90, 103, 0.1);
  background:
    linear-gradient(180deg, rgba(132, 90, 103, 0.96), rgba(98, 67, 76, 0.98)),
    radial-gradient(circle at top right, rgba(223, 193, 133, 0.16), transparent 26%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.service-feature h3 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.service-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.service-feature a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold-500);
  font-weight: 600;
}

.service-card,
.benefit-card {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 30px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
}

.service-card {
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(132, 90, 103, 0.18);
  box-shadow: 0 24px 52px rgba(76, 42, 52, 0.12);
}

.service-card h3,
.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(167, 115, 129, 0.12);
  color: var(--rose-700);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--rose-700);
  font-weight: 600;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--rose-700);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card-cta::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(223, 193, 133, 0.22), rgba(167, 115, 129, 0.12));
  color: var(--rose-700);
  font-size: 1rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.service-card:hover .service-card-cta::after,
.service-card:focus-visible .service-card-cta::after {
  transform: translateX(3px);
  background: linear-gradient(135deg, rgba(223, 193, 133, 0.32), rgba(167, 115, 129, 0.18));
}

.benefits-premium .benefit-card {
  position: relative;
  overflow: hidden;
}

.benefits-premium .benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), rgba(223, 193, 133, 0));
}

.consultation-section {
  padding-top: 34px;
}

.consultation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.consultation-panel,
.location-card,
.map-card {
  padding: 38px;
  border-radius: 34px;
  border: 1px solid rgba(132, 90, 103, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.consultation-panel h2,
.location-card h2 {
  margin: 0 0 16px;
}

.consultation-panel p,
.location-card p {
  color: var(--ink-700);
  line-height: 1.85;
}

.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.consultation-note {
  color: var(--rose-700);
  font-size: 0.95rem;
  font-weight: 500;
}

.consultation-side {
  display: grid;
  gap: 16px;
}

.consultation-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(132, 90, 103, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 241, 237, 0.88));
}

.consultation-card h3 {
  margin: 8px 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.consultation-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.75;
}

.consultation-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(167, 115, 129, 0.1);
  color: var(--rose-700);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.location-list {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  color: var(--ink-700);
}

.location-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(132, 90, 103, 0.08);
}

.map-card {
  background:
    linear-gradient(180deg, rgba(167, 115, 129, 0.92), rgba(132, 90, 103, 0.96)),
    radial-gradient(circle at top right, rgba(223, 193, 133, 0.15), transparent 28%);
}

.map-surface {
  position: relative;
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: 520px;
  padding: 34px 28px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 42%);
}

.map-intro {
  display: grid;
  gap: 10px;
  max-width: 410px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
}

.map-kicker {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-intro p {
  margin: 0;
  line-height: 1.75;
}

.map-frame {
  position: relative;
  width: min(100%, 430px);
  height: 260px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 46px rgba(47, 35, 40, 0.18);
  background: rgba(255, 255, 255, 0.14);
}

.map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(1.02) brightness(1.02);
}

.map-pin {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.map-caption {
  max-width: 430px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 38px rgba(47, 35, 40, 0.14);
}

.map-caption strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.map-caption p {
  margin: 0;
  line-height: 1.75;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-900);
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(47, 35, 40, 0.12);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 40px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(223, 193, 133, 0.14), rgba(167, 115, 129, 0.1));
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 600;
  list-style: none;
}

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

.faq-item p {
  margin-top: 0;
  padding-bottom: 22px;
}

.site-footer {
  padding: 40px 0 18px;
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-grid h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page {
  background:
    radial-gradient(circle at top left, rgba(223, 193, 133, 0.1), transparent 24%),
    radial-gradient(circle at right 18%, rgba(167, 115, 129, 0.12), transparent 18%),
    linear-gradient(180deg, #fffdfb 0%, #f7f0eb 52%, #fcfaf8 100%);
}

.service-hero {
  padding: 54px 0 22px;
}

.service-hero-card {
  padding: 54px;
  border-radius: 36px;
  border: 1px solid rgba(132, 90, 103, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 241, 237, 0.9)),
    linear-gradient(140deg, rgba(223, 193, 133, 0.08), transparent 38%);
  box-shadow: var(--shadow-lg);
}

.service-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin-bottom: 18px;
}

.service-lead {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-700);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.service-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(167, 115, 129, 0.1);
  color: var(--rose-700);
  font-size: 0.92rem;
  font-weight: 600;
}

.service-layout {
  padding: 26px 0 88px;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 28px;
}

.content-card,
.sidebar-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(132, 90, 103, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.content-card + .content-card,
.sidebar-card + .sidebar-card {
  margin-top: 20px;
}

.service-illustration {
  margin: 20px 0 0;
  padding: 18px;
}

.service-illustration img {
  display: block;
  width: 100%;
  border-radius: 22px;
  background: #f7f1ee;
}

.service-illustration figcaption {
  margin-top: 14px;
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.75;
}

.results-section {
  padding: 0 0 88px;
}

.results-shell {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(132, 90, 103, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.results-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.results-note {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.7;
}

.results-carousel {
  display: grid;
}

.result-slide {
  display: none;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 237, 0.9));
  border: 1px solid rgba(132, 90, 103, 0.08);
}

.result-slide.is-active {
  display: block;
}

.result-slide img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  background: #f7f1ee;
}

.results-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.bullet-list {
  padding-left: 18px;
  color: var(--ink-700);
  line-height: 1.75;
}

.mini-cta {
  margin-top: 24px;
}

.breadcrumbs {
  margin-bottom: 14px;
  color: var(--rose-700);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 700ms ease forwards;
}

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

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

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(132, 90, 103, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 237, 0.96)),
      radial-gradient(circle at top right, rgba(223, 193, 133, 0.12), transparent 30%);
    box-shadow: 0 24px 48px rgba(76, 42, 52, 0.14);
    backdrop-filter: blur(18px);
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav.is-open a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink-900);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    box-shadow: inset 0 0 0 1px rgba(132, 90, 103, 0.05);
  }

  .site-nav.is-open a::after {
    content: "→";
    color: var(--rose-700);
    font-size: 1rem;
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a:focus-visible {
    background: linear-gradient(135deg, rgba(223, 193, 133, 0.18), rgba(167, 115, 129, 0.08));
  }

  .hero-grid,
  .reception-grid,
  .split-section,
  .service-grid,
  .footer-grid,
  .cta-band,
  .services-editorial,
  .consultation-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .service-feature {
    position: static;
  }

  .services-grid,
  .benefits-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .nav-cta {
    display: none;
  }

  .brand img {
    width: 156px;
  }

  .nav-toggle {
    width: 56px;
    height: 56px;
  }

  .site-nav.is-open {
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    padding: 16px;
    border-radius: 24px;
  }

  .site-nav.is-open a {
    min-height: 54px;
    padding: 0 16px;
    font-size: 1rem;
  }

  .hero-copy,
  .service-hero-card {
    padding: 32px;
  }

  .map-surface {
    min-height: 460px;
    padding: 28px 20px;
  }

  .map-frame {
    height: 230px;
  }

  .reception-carousel,
  .reception-photo img {
    min-height: 440px;
  }

  .reception-carousel-ui {
    left: 16px;
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .reception-carousel-ui .carousel-controls,
  .reception-carousel-ui .carousel-dots {
    justify-content: center;
  }

  .section,
  .service-layout {
    padding: 64px 0;
  }

  .services-grid,
  .benefits-grid,
  .trust-grid,
  .featured-testimonials,
  .seo-links-grid,
  .longtail-grid,
  .content-hub-grid {
    grid-template-columns: 1fr;
  }

  .results-head,
  .results-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Refinamentos do hero migrados do index.html para o arquivo central de estilos. */
.hero-copy h1 {
  font-size: clamp(1.6rem, 4vw, 3.6rem) !important;
  line-height: 0.99 !important;
  letter-spacing: -0.045em;
  font-weight: 600 !important;
  max-width: 15.8ch;
  text-wrap: balance;
}

.hero .eyebrow {
  font-size: 0.84rem !important;
  letter-spacing: 0.16em !important;
  line-height: 1.35;
}

.hero-text {
  font-size: 1.02rem !important;
  line-height: 1.65 !important;
  max-width: 40rem;
  color: rgba(55, 37, 44, 0.8);
}

.hero-card h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.75rem) !important;
  line-height: 1.06 !important;
  font-weight: 700 !important;
  max-width: 10ch;
  text-wrap: balance;
}

.hero-card-label {
  font-size: 0.82rem !important;
  letter-spacing: 0.15em !important;
}

.hero-stat-list strong {
  font-size: clamp(1.55rem, 1.8vw, 2rem) !important;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-stat-list span,
.hero-note p,
.hero-points li {
  font-size: 0.96rem !important;
  line-height: 1.45 !important;
}

.hero-note-title {
  font-size: 0.92rem !important;
}

.hero-copy,
.hero-card-inner {
  text-wrap: pretty;
}

@media (min-width: 1100px) {
  .hero-copy {
    padding-right: 1rem;
  }
}

@media (max-width: 900px) {
  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 3.3rem) !important;
    max-width: none;
  }

  .hero-card h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    max-width: none;
  }

  .hero-text {
    font-size: 0.98rem !important;
  }
}

.image-highlight {
  margin: 24px 0 28px;
  text-align: center;
}

.image-highlight img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
