:root {
  --bg: #fbf6ec;
  --surface: #ffffff;
  --surface-soft: #fff8ef;
  --text: #2f2a25;
  --muted: #6f675f;
  --primary: #7f0419;
  --primary-2: #8d061a;
  --secondary: #9e9c89;
  --accent: #d9a15d;
  --accent-2: #f0d8a4;
  --border: rgba(127, 4, 25, 0.12);
  --shadow: 0 18px 45px rgba(73, 29, 10, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(127, 4, 25, 0.06), transparent 38%),
    linear-gradient(180deg, #fffaf2 0%, #faf3e7 50%, #f8efe0 100%);
  font-family: "Roboto", system-ui, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
}

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

.section {
  padding: 4.5rem 0;
}

.section.tight {
  padding: 3rem 0;
}

.section-title {
  margin: 0 0 0.8rem;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.08;
  color: var(--primary);
}

.section-subtitle {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #b01734);
  box-shadow: 0 12px 25px rgba(127, 4, 25, 0.22);
}

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

.button-outline {
  color: var(--primary);
  border-color: rgba(127, 4, 25, 0.22);
  background: rgba(255, 255, 255, 0.65);
}

.header-wrap {
  position: relative;
  top: auto;
  z-index: 5000;
  background: #fff;
  border-bottom: 0;
}

#site-header {
  position: relative;
  z-index: 5000;
}

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

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(127, 4, 25, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

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

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--primary);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  z-index: 1;
}

.nav-link,
.nav-summary,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.72rem 0.88rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.93rem;
  color: #3a2d27;
}

.nav-link:hover,
.nav-item.is-active > .nav-link,
.nav-item.is-active > .nav-summary,
.nav-item.is-active .nav-parent {
  color: var(--primary);
  background: rgba(127, 4, 25, 0.06);
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-parent .nav-parent-link {
  padding-right: 0.35rem;
}

.nav-dropdown-toggle {
  padding-left: 0.25rem;
  padding-right: 0.75rem;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  z-index: 6000;
  min-width: 250px;
  padding: 0.65rem;
  margin: 0;
  list-style: none;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.98);
  border: 1px solid rgba(127, 4, 25, 0.08);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown,
.nav-item.dropdown-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  color: var(--text);
}

.dropdown a:hover {
  background: rgba(127, 4, 25, 0.06);
  color: var(--primary);
}

.header-cta {
  flex-shrink: 0;
  padding-inline: 1rem;
  min-height: 44px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: clamp(440px, 75vh, 760px);
  overflow: hidden;
  border-bottom: 1px solid rgba(127, 4, 25, 0.07);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

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

.hero-panel {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 2;
  width: min(var(--container), calc(100% - 1.5rem));
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.hero-copy {
  max-width: 48rem;
  padding: 1.5rem 1.6rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 244, 230, 0.82));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(127, 4, 25, 0.08);
  pointer-events: auto;
}

.hero-copy h1 {
  margin: 0.35rem 0 0.9rem;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2rem, 3.7vw, 4.2rem);
  line-height: 1.02;
  color: var(--primary);
}

.hero-copy p {
  margin: 0 0 1.3rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffcc7e, #c88839);
  box-shadow: 0 0 0 5px rgba(216, 161, 93, 0.16);
}

.hero-note {
  min-width: 270px;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
  background: rgba(127, 4, 25, 0.92);
  color: #fff;
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.hero-note strong {
  display: block;
  font-size: 1.25rem;
}

.hero-note span {
  color: #ffdca8;
}

.hero-nav {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dot,
.hero-arrow {
  border: 0;
  cursor: pointer;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(127, 4, 25, 0.2);
}

.hero-dot.is-active {
  width: 34px;
  background: var(--primary);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.hero-arrow.prev {
  left: 1rem;
}

.hero-arrow.next {
  right: 1rem;
}

.trust-strip {
  position: relative;
  margin-top: -2.5rem;
  z-index: 2;
}

.trust-card {
  padding: 1rem 1.2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(127, 4, 25, 0.08);
  box-shadow: var(--shadow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: center;
}

.trust-grid img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  filter: saturate(0.95);
}

.section-grid {
  display: grid;
  gap: 1.35rem;
}

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

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

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

.card {
  position: relative;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(127, 4, 25, 0.08);
  box-shadow: 0 16px 32px rgba(75, 41, 18, 0.08);
}

.card.soft {
  background: linear-gradient(180deg, #fffdf9, #fff6ea);
}

.card h3,
.card h4 {
  margin: 0 0 0.55rem;
  font-family: "Roboto Slab", Georgia, serif;
  color: var(--primary);
}

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

.profile-card {
  overflow: hidden;
}

.profile-media {
  width: 100%;
  aspect-ratio: 4 / 4.25;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f8ead4;
}

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

.profile-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.bio-stack {
  display: grid;
  gap: 3.5rem;
}

.bio-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 0.85fr);
  grid-template-areas: "copy photo side";
  gap: 2rem;
  align-items: center;
}

.bio-row.reverse {
  grid-template-columns: minmax(0, 0.85fr) 220px minmax(0, 1fr);
  grid-template-areas: "side photo copy";
}

.bio-copy {
  grid-area: copy;
  min-width: 0;
}

.bio-side {
  grid-area: side;
  min-width: 0;
}

.bio-title {
  margin: 0 0 0.5rem;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.05;
  color: #17130f;
}

.bio-accent {
  margin: 0 0 1rem;
  color: var(--primary);
  font-weight: 700;
}

.bio-copy p {
  margin: 0 0 0.95rem;
  max-width: 64ch;
}

.bio-photo {
  grid-area: photo;
  display: grid;
  place-items: center;
}

.bio-photo img {
  width: 220px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.bio-row.reverse .bio-photo {
  justify-self: start;
}

.media-section {
  padding-top: 1rem;
  background: #f8efdf;
}

.media-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.media-feature {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.media-feature img {
  width: 100%;
  display: block;
}

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

.media-card {
  overflow: hidden;
  background: #fff;
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.media-caption {
  padding: 0.7rem 0.9rem;
  margin-top: 0.2rem;
  background: #b7010a;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  text-align: center;
}

.about-media-section {
  background: #f8efdf;
}

.about-media-section .container {
  width: min(1060px, calc(100% - 2rem));
}

.testimonials-section {
  background: #f8efdf;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.testimonials-section .container {
  width: min(1080px, calc(100% - 2rem));
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 0.9rem;
}

.google-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.1rem 0.8rem 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.google-card__title {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.google-card__stars {
  margin: 0.4rem 0;
  color: #f4b400;
  font-size: 1.2rem;
}

.google-card__meta {
  font-size: 0.88rem;
  color: var(--muted);
}

.google-card__brand {
  margin-top: 0.6rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #4285f4;
}

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

.review-card {
  background: #fff;
  border-radius: 24px;
  padding: 1rem 1rem 0.9rem;
  box-shadow: var(--shadow);
  min-height: 190px;
}

.review-author {
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.review-stars {
  color: #f4b400;
  margin-bottom: 0.4rem;
}

.review-card p {
  font-size: 0.92rem;
}

.consultation-banner {
  width: min(960px, 100%);
  margin: 1rem auto 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
}

.consultation-banner img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.instagram-strip {
  padding: 2.3rem 1.2rem;
  border-radius: 4px;
  background: #f8efdf;
  text-align: center;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.instagram-strip a {
  color: #0b1f46;
  text-decoration: underline;
}

.count-note {
  margin-top: 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
}

.media-strip {
  display: grid;
  grid-template-columns: 1.2fr 4fr;
  gap: 1rem;
  align-items: stretch;
}

.media-strip .label {
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--primary), #a11f33);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}

.media-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.media-logos .logo-box {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(127, 4, 25, 0.08);
}

.media-logos .logo-box img {
  max-width: 92%;
  max-height: 86px;
  object-fit: contain;
}

.feature-banner {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.feature-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card {
  overflow: hidden;
}

.service-card .service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(127, 4, 25, 0.12), rgba(216, 161, 93, 0.18));
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  color: var(--primary);
}

.service-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.stats-band {
  padding: 1.35rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(127, 4, 25, 0.98), rgba(79, 16, 17, 0.94));
  color: #fff;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.stat {
  padding: 1rem 0.8rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  opacity: 0.92;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.testimonial .quote {
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.testimonial .name {
  font-weight: 800;
  color: var(--primary);
}

.testimonial .source {
  font-size: 0.88rem;
  color: var(--muted);
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.blog-card .meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-archive-page {
  background: #fff;
}

.blog-archive {
  padding: 5.4rem 0 4rem;
  background: #fff;
}

.blog-shell {
  width: min(1640px, calc(100% - 2rem));
  margin: 0 auto;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2.5rem;
  align-items: start;
}

.blog-post-list {
  display: grid;
}

.blog-entry {
  padding: 0 0 4.1rem;
  margin-bottom: 3.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.blog-entry h1,
.blog-entry h2,
.blog-sidebar h2 {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  color: #a00012;
  line-height: 1.25;
}

.blog-entry h1,
.blog-entry h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.blog-entry p {
  max-width: 1200px;
  margin: 1rem 0 0;
  color: #3f3f3f;
  font-size: 0.9rem;
  line-height: 1.8;
}

.blog-entry .blog-meta {
  margin-top: 0.35rem;
  color: #9b1a25;
  font-size: 0.78rem;
}

.blog-entry a {
  display: inline-flex;
  margin-top: 1.1rem;
  color: #9d0417;
  font-size: 0.78rem;
  font-weight: 700;
}

.blog-sidebar {
  display: grid;
  gap: 2.1rem;
}

.blog-search label,
.blog-sidebar h2 {
  display: block;
  margin-bottom: 0.75rem;
  color: #111;
  font-size: 0.95rem;
  font-weight: 700;
}

.blog-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}

.blog-search input {
  min-height: 35px;
  border: 1px solid rgba(157, 4, 23, 0.45);
  border-radius: 3px;
  padding: 0.45rem 0.55rem;
}

.blog-search button {
  min-height: 35px;
  border: 0;
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  background: #e4ad00;
  color: #111;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-widget ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-widget a {
  color: #9d0417;
  font-size: 0.8rem;
  line-height: 1.55;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #9d0417;
  font-size: 0.85rem;
}

.blog-pagination a,
.blog-pagination span {
  color: #9d0417;
}

.blog-pagination .current {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  background: #b44a4b;
  color: #fff;
}

.blog-pagination .next {
  margin-left: auto;
}

.blog-single-page {
  padding: 5rem 0;
  background: #fff;
}

.blog-single-shell {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
}

.blog-back {
  display: inline-flex;
  margin-bottom: 1.3rem;
  color: #9d0417;
  font-size: 0.85rem;
  font-weight: 900;
}

.blog-single-shell h1 {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  color: #9d0417;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.14;
}

.blog-single-meta {
  margin: 0.85rem 0 2rem;
  color: #9b1a25;
  font-size: 0.86rem;
  font-weight: 700;
}

.blog-single-content {
  display: grid;
  gap: 1.2rem;
  color: #2a2520;
  font-size: 1.02rem;
  line-height: 1.85;
}

.blog-single-content h2 {
  margin: 1.2rem 0 0;
  font-family: "Roboto Slab", Georgia, serif;
  color: #080707;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.blog-single-content p,
.blog-single-content ul {
  margin: 0;
}

.blog-single-content ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.35rem;
}

.form {
  display: grid;
  gap: 0.95rem;
}

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

.field label {
  font-weight: 700;
  color: #4c3d32;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(127, 4, 25, 0.16);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero .banner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(127, 4, 25, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-hero .banner img {
  width: 100%;
  border-radius: 28px;
  height: 100%;
  object-fit: cover;
}

.page-hero .banner h1 {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  color: var(--primary);
}

.page-hero .banner p {
  color: var(--muted);
  max-width: 60ch;
}

.page-hero .banner .copy {
  padding: 1.3rem;
}

.live-shell {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
}

.live-banner {
  padding: 2.6rem 0 3.8rem;
  background: linear-gradient(180deg, #b1081c 0 235px, #fff 235px);
}

.live-banner img {
  width: 100%;
  display: block;
  box-shadow: 0 18px 38px rgba(81, 10, 10, 0.12);
}

.live-intro {
  padding: 0 0 4.5rem;
  background: #fff;
}

.live-intro-box {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 4rem 2rem;
  background: #f8efdf;
}

.live-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  box-shadow: 0 18px 35px rgba(43, 17, 8, 0.14);
}

.live-copy {
  color: #221814;
}

.live-kicker {
  margin: 0 0 0.35rem;
  text-align: center;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 0.95rem;
}

.live-copy h1,
.live-poster-section h2,
.live-benefits h2 {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  color: #111;
}

.live-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  text-align: center;
}

.live-divider {
  width: 72px;
  height: 1px;
  margin: 1.1rem auto 1.5rem;
  background: #a89a87;
}

.live-copy p,
.live-copy li {
  font-size: 0.97rem;
}

.live-copy ul,
.live-benefits ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.live-copy li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.8rem;
}

.live-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111;
}

.live-poster-section {
  padding: 3rem 0 5rem;
  background: #fff;
  text-align: center;
}

.live-poster-section h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.live-poster {
  width: min(690px, 100%);
  margin: 0 auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 18px 36px rgba(43, 17, 8, 0.16);
}

.live-book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  min-height: 34px;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: #f6b800;
  color: #1a1510;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 10px 20px rgba(130, 91, 0, 0.22);
}

.live-book-button::before {
  content: "\260E";
  margin-right: 0.35rem;
}

.live-benefits {
  padding: 2rem 0 4rem;
  background: #fff;
}

.live-benefits-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding: 4.2rem 2rem;
  background: #f8efdf;
}

.live-benefits h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.live-benefits li {
  position: relative;
  margin-bottom: 0.65rem;
  padding-left: 1.35rem;
  font-size: 0.98rem;
}

.live-benefits li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #111;
}

.service-page,
.report-page {
  background: #fff;
  color: #111;
}

.service-shell,
.report-shell {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
}

.service-banner,
.report-banner {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, #b1081c 0 245px, #fff 245px);
}

.service-banner img,
.report-banner img {
  width: 100%;
  display: block;
  box-shadow: 0 18px 36px rgba(81, 10, 10, 0.14);
}

.service-list-section {
  padding: 3.2rem 0 5rem;
  background: #f8efdf;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: start;
}

.service-box {
  min-height: 230px;
  padding: 1.55rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 12px 26px rgba(43, 17, 8, 0.11);
  text-align: center;
}

.service-mark {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: 0.9rem;
  border: 3px solid #b1081c;
  border-radius: 50%;
  position: relative;
}

.service-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #b1081c;
}

.service-box h2,
.report-title-block h1,
.report-split h2,
.report-heading h2,
.report-steps h2,
.report-final h2 {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  color: #111;
  line-height: 1.08;
}

.service-box h2 {
  margin-bottom: 0.75rem;
  color: #9d0417;
  font-size: 1.22rem;
}

.service-box p {
  margin: 0;
  color: #333;
  font-size: 0.86rem;
  line-height: 1.75;
}

.report-hero {
  padding: 4rem 0;
  background: #f8efdf;
  text-align: center;
}

.report-title-block {
  width: min(620px, calc(100% - 2rem));
}

.report-star {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.report-title-block h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.report-title-block p {
  margin: 1.2rem 0 0;
  color: #6f675f;
  font-size: 0.9rem;
}

.report-intro,
.report-section {
  padding: 5rem 0;
  background: #fff;
}

.report-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.report-split h2 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.report-split p,
.report-card p,
.report-steps li,
.report-final p {
  color: #333;
  font-size: 0.92rem;
  line-height: 1.75;
}

.report-split img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}

.report-call,
.report-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  min-height: 34px;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #f3b900;
  color: #1b1207;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 20px rgba(130, 91, 0, 0.2);
}

.report-cream,
.report-final {
  padding: 4.6rem 0;
  background: #f8efdf;
}

.report-final {
  text-align: center;
}

.report-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.report-heading h2,
.report-steps h2,
.report-final h2 {
  font-size: clamp(2rem, 3.3vw, 3.1rem);
}

.report-heading h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin: 1rem auto 0;
  background: #111;
}

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

.report-three {
  width: min(760px, 100%);
  margin: 0 auto;
}

.report-card {
  min-height: 160px;
  padding: 1.45rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 26px rgba(43, 17, 8, 0.09);
}

.report-card h3 {
  margin: 0 0 0.8rem;
  color: #111;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.05rem;
}

.report-testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  width: min(720px, 100%);
  margin: 0 auto;
}

.report-testimonials blockquote {
  margin: 0;
  padding: 2rem;
  background: #fff;
  color: #333;
  text-align: center;
  box-shadow: 0 14px 26px rgba(43, 17, 8, 0.08);
}

.report-testimonials blockquote::before {
  content: "\"";
  display: block;
  color: #b1081c;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.report-testimonials strong {
  display: block;
  margin-top: 1rem;
  color: #b1081c;
}

.report-steps {
  width: min(760px, calc(100% - 2rem));
}

.report-steps ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.report-steps li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

body[data-page="powai"] {
  background: #fff;
}

body[data-page="powai"] main {
  background: #fff;
}

.powai-page {
  --powai-red: #b40d26;
  --powai-deep-red: #9d0417;
  --powai-cream: #fbf1df;
  --powai-soft: #f5f5f5;
  --powai-ink: #090909;
  --powai-muted: #585858;
  color: var(--powai-ink);
}

.powai-shell {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
}

.powai-hero {
  background: var(--powai-red);
  color: #fff;
  padding: 3.4rem 0 3.7rem;
}

.powai-hero-copy {
  width: min(560px, 100%);
  margin: 0 auto;
}

.powai-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 199, 60, 0.95);
  border-radius: 999px;
  color: #ffe19c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.powai-pill-dark {
  margin-bottom: 0.7rem;
  color: #fff;
  background: var(--powai-deep-red);
  border-color: var(--powai-deep-red);
}

.powai-hero h1,
.powai-heading h2,
.powai-intro-copy h2,
.powai-benefit-grid h2,
.powai-consult-cta h2,
.powai-booking h2,
.powai-faq h2 {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 800;
  line-height: 1.05;
  color: var(--powai-ink);
}

.powai-hero h1 {
  width: min(530px, 100%);
  color: #fff;
  font-size: clamp(2.7rem, 5.6vw, 4.65rem);
  letter-spacing: -0.035em;
}

.powai-hero p {
  width: min(510px, 100%);
  margin: 1rem 0 1.15rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
}

.powai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.powai-actions-center {
  justify-content: center;
}

.powai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.52rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.powai-btn-yellow {
  color: #20170d;
  background: #f3b900;
  border-color: #f3b900;
}

.powai-btn-light {
  color: var(--powai-red);
  background: #fff;
}

.powai-btn-outline {
  color: var(--powai-red);
  background: #fff;
  border-color: var(--powai-red);
  box-shadow: none;
}

.powai-hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 1.35rem;
  width: min(530px, 100%);
}

.powai-hero-images img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(55, 5, 9, 0.28);
}

.powai-stats-wrap {
  position: relative;
  z-index: 2;
  background: #fff;
}

.powai-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(700px, 100%);
  margin: -1.8rem auto 0;
}

.powai-stats div {
  min-height: 78px;
  padding: 1rem 0.7rem;
  border-radius: 4px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 28px rgba(43, 17, 8, 0.12);
}

.powai-stats strong {
  display: block;
  color: var(--powai-red);
  font-size: 1.35rem;
  line-height: 1;
}

.powai-stats span {
  display: block;
  margin-top: 0.35rem;
  color: #292929;
  font-size: 0.7rem;
  font-weight: 700;
}

.powai-section {
  padding: 4.6rem 0;
  background: #fff;
}

.powai-cream {
  background: var(--powai-cream);
}

.powai-soft-gray {
  background: var(--powai-soft);
}

.powai-intro-section {
  padding-top: 3.8rem;
}

.powai-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.powai-profile-card {
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(43, 17, 8, 0.14);
}

.powai-profile-card img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  object-position: center top;
}

.powai-profile-card div {
  padding: 1.05rem 1.15rem;
}

.powai-profile-card h2 {
  margin: 0 0 0.35rem;
  color: var(--powai-red);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1rem;
}

.powai-profile-card p,
.powai-intro-copy p,
.powai-heading p,
.powai-card p,
.powai-service-card p,
.powai-benefit-grid p,
.powai-consult-cta p,
.powai-booking p,
.powai-faq p {
  margin: 0;
  color: var(--powai-muted);
  font-size: 0.86rem;
  line-height: 1.72;
}

.powai-intro-copy h2 {
  max-width: 430px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.powai-intro-copy p {
  margin-top: 0.9rem;
}

.powai-mini-collage {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 0.65rem;
  align-items: stretch;
  margin-top: 1.3rem;
}

.powai-mini-collage img {
  width: 100%;
  height: 122px;
  object-fit: cover;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(43, 17, 8, 0.12);
}

.powai-mini-collage img:nth-child(3) {
  object-fit: contain;
  padding: 0.8rem;
}

.powai-heading {
  width: min(640px, 100%);
  margin: 0 auto 2rem;
  text-align: center;
}

.powai-heading h2,
.powai-benefit-grid h2,
.powai-consult-cta h2,
.powai-booking h2,
.powai-faq h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.powai-heading h2::after,
.powai-booking h2::after,
.powai-faq h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 0.85rem auto 0.8rem;
  background: var(--powai-red);
}

.powai-card-grid {
  display: grid;
  gap: 1.1rem;
}

.powai-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.powai-card,
.powai-image-card,
.powai-service-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(43, 17, 8, 0.08);
}

.powai-card {
  min-height: 152px;
  padding: 1.25rem 1.05rem;
}

.powai-card h3,
.powai-image-card h3,
.powai-service-card h3,
.powai-faq h3 {
  margin: 0 0 0.55rem;
  color: #111;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1rem;
  line-height: 1.2;
}

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

.powai-image-card {
  overflow: hidden;
}

.powai-image-card img {
  width: 100%;
  height: 142px;
  object-fit: contain;
  padding: 1.1rem;
  background: #fff;
}

.powai-image-card:nth-child(6) img {
  object-fit: cover;
  padding: 0;
}

.powai-image-card h3 {
  padding: 0 1rem 1rem;
  font-size: 0.8rem;
}

.powai-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.powai-thumb-row img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 22px rgba(43, 17, 8, 0.1);
}

.powai-service-card {
  overflow: hidden;
}

.powai-service-card img {
  width: 100%;
  height: 122px;
  object-fit: contain;
  padding: 1rem;
  background: #fff;
}

.powai-service-card:nth-child(5) img,
.powai-service-card:nth-child(6) img {
  object-fit: cover;
  padding: 0;
}

.powai-service-card h3,
.powai-service-card p {
  padding-left: 1rem;
  padding-right: 1rem;
}

.powai-service-card h3 {
  margin-top: 0.6rem;
}

.powai-service-card p {
  padding-bottom: 1.15rem;
}

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

.powai-benefit-grid h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

.powai-check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.powai-check-list li {
  position: relative;
  min-height: 34px;
  padding: 0.65rem 0.9rem 0.65rem 2.1rem;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(43, 17, 8, 0.07);
}

.powai-check-list li::before {
  content: "\203A";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--powai-red);
  font-size: 1rem;
  font-weight: 900;
}

.powai-recognized {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: min(680px, 100%);
  margin: 0 auto;
}

.powai-recognized img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 16px 30px rgba(43, 17, 8, 0.12);
}

.powai-consult-cta {
  background: linear-gradient(90deg, #a90517, #c81b49);
  color: #fff;
  text-align: center;
}

.powai-consult-cta .powai-shell {
  width: min(720px, calc(100% - 2rem));
}

.powai-consult-cta h2 {
  color: #fff;
}

.powai-consult-cta p {
  width: min(560px, 100%);
  margin: 0.8rem auto 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.powai-consult-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.powai-consult-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.powai-booking {
  text-align: center;
}

.powai-booking .powai-shell {
  width: min(660px, calc(100% - 2rem));
}

.powai-booking p {
  margin: 0 auto 1.2rem;
}

.powai-faq .powai-shell {
  width: min(760px, calc(100% - 2rem));
}

.powai-faq h2 {
  text-align: center;
}

.powai-faq-list {
  display: grid;
  margin-top: 1.4rem;
}

.powai-faq-list article {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.powai-faq h3 {
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .service-card-grid,
  .report-card-grid,
  .report-split,
  .report-testimonials {
    grid-template-columns: 1fr;
  }

  .report-split img {
    max-height: none;
  }

  .powai-hero-copy {
    width: 100%;
  }

  .powai-intro-grid,
  .powai-benefit-grid {
    grid-template-columns: 1fr;
  }

  .powai-four,
  .powai-three,
  .powai-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .powai-profile-card {
    width: min(420px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .service-shell,
  .report-shell,
  .report-title-block,
  .report-steps {
    width: min(860px, calc(100% - 1rem));
  }

  .service-banner,
  .report-banner {
    padding: 1.2rem 0 2.5rem;
    background: linear-gradient(180deg, #b1081c 0 140px, #fff 140px);
  }

  .service-list-section,
  .report-hero,
  .report-intro,
  .report-section,
  .report-cream,
  .report-final {
    padding: 3.2rem 0;
  }

  .service-box {
    min-height: auto;
  }

  .powai-shell,
  .powai-consult-cta .powai-shell,
  .powai-booking .powai-shell,
  .powai-faq .powai-shell {
    width: min(860px, calc(100% - 1rem));
  }

  .powai-hero {
    padding: 2.4rem 0 3rem;
  }

  .powai-hero h1 {
    font-size: 2.55rem;
  }

  .powai-hero-images,
  .powai-stats,
  .powai-four,
  .powai-three,
  .powai-media-grid,
  .powai-thumb-row,
  .powai-recognized,
  .powai-consult-options {
    grid-template-columns: 1fr;
  }

  .powai-stats {
    width: min(360px, 100%);
  }

  .powai-mini-collage {
    grid-template-columns: 1fr;
  }

  .powai-section {
    padding: 3.4rem 0;
  }

  .powai-image-card img,
  .powai-service-card img {
    height: 170px;
  }

  .powai-thumb-row img {
    height: 150px;
  }
}

.mini-banner {
  padding: 1.2rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fff8ed);
  border: 1px solid rgba(127, 4, 25, 0.08);
}

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

.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(127, 4, 25, 0.12), rgba(216, 161, 93, 0.18));
  color: var(--primary);
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 0.95rem;
}

.contact-main-section {
  padding-bottom: 3rem;
}

.contact-map-section {
  padding: 0 0 4.8rem;
  background: #f8efdf;
}

.contact-map-shell {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem;
  background: #f8efdf;
  box-shadow: 0 18px 42px rgba(43, 17, 8, 0.14);
}

.contact-map-shell iframe {
  display: block;
  width: 100%;
  height: 610px;
  border: 0;
  background: #eee;
}

#site-footer,
.footer {
  padding: 3rem 0 1.4rem;
  color: #f9f3e6;
  background-color: #8b0000;
  background-image: linear-gradient(90deg, #8b0000 0%, #c71c4a 100%);
  background-repeat: no-repeat;
  border-top: 4px solid #d9b028;
}

#site-footer .footer-top,
.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

#site-footer h3,
#site-footer h4,
.footer h3,
.footer h4 {
  margin: 0 0 0.8rem;
  font-family: "Roboto Slab", Georgia, serif;
  color: #fff1d7;
}

#site-footer p,
#site-footer a,
.footer p,
.footer a {
  color: rgba(255, 245, 228, 0.82);
}

#site-footer ul,
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

#site-footer a:hover,
.footer a:hover {
  color: #ffdca8;
}

#site-footer .brand img,
.footer .brand img {
  width: 60px;
}

#site-footer .footer-bottom,
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 245, 228, 0.72);
}

#site-footer .social-row,
.footer .social-row {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}

#site-footer .social-row a,
.footer .social-row a {
  color: #fff;
  opacity: 0.95;
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  right: 1rem;
  z-index: 1200;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.floating-whatsapp {
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #14954b);
}

.back-to-top {
  bottom: 4.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

body[data-page="home"] .topbar {
  background: #fff;
  color: var(--primary);
  border-bottom: 1px solid rgba(127, 4, 25, 0.08);
}

body[data-page="home"] .topbar-inner {
  padding: 0.45rem 0;
}

body[data-page="home"] .social-row {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
}

body[data-page="home"] .social-row a {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

body[data-page="home"] .header-wrap {
}

body[data-page="home"] .site-header {
  padding: 0.8rem 0;
}

.nav {
  display: flex;
  gap: 0.5rem;
}

.header-wrap .container.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .header-wrap + .home-nav-band {
  position: relative;
  z-index: 4999;
  background: linear-gradient(90deg, #b44a4b 0%, #b44a4b 100%);
}

body .home-nav-band {
  position: relative;
  z-index: 4999;
  background: #b54a4c;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 4px solid #8f0617;
  overflow: visible;
}

body .home-nav-band .container {
  display: flex;
  justify-content: center;
  width: min(1040px, calc(100% - 2rem));
}

body .home-nav-band .nav {
  width: auto;
  justify-content: center;
  overflow: visible;
}

body .home-nav-band .nav-list {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  overflow: visible;
}

body .home-nav-band .nav-link,
body .home-nav-band .nav-summary,
body .home-nav-band .nav-dropdown-toggle {
  color: #fff;
  border-radius: 0;
  padding: 0.95rem 1rem;
  font-size: 0.88rem;
}

body .home-nav-band .nav-parent {
  border-radius: 0;
}

body .home-nav-band .nav-parent .nav-parent-link {
  padding-right: 0.4rem;
}

body .home-nav-band .nav-dropdown-toggle {
  padding-left: 0.15rem;
  padding-right: 1rem;
}

body .home-nav-band .nav-link:hover,
body .home-nav-band .nav-summary:hover,
body .home-nav-band .nav-dropdown-toggle:hover,
body .home-nav-band .nav-link:focus-visible,
body .home-nav-band .nav-summary:focus-visible,
body .home-nav-band .nav-dropdown-toggle:focus-visible {
  background: transparent;
  color: #fff;
  outline: none;
}

body .home-nav-band .nav-item.is-active > .nav-link,
body .home-nav-band .nav-item.is-active > .nav-summary,
body .home-nav-band .nav-item.is-active > .nav-parent {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 -3px 0 rgba(127, 4, 25, 0.18);
}

body[data-page="home"] main {
  background:
    linear-gradient(180deg, #fff 0 10px, transparent 10px),
    linear-gradient(180deg, #fff 0, #fff 100%);
}

body[data-page="home"] .hero {
  padding: 0 0 2rem;
  background: linear-gradient(180deg, #b1202f 0 210px, #fff 210px);
}

body[data-page="home"] .hero-container {
  width: min(1080px, calc(100% - 1.5rem));
}

body[data-page="home"] .hero-slider {
  min-height: 0;
  padding: 1rem 0 0;
}

body[data-page="home"] .hero-slide {
  position: relative;
  opacity: 1;
  transform: none;
  display: none;
}

body[data-page="home"] .hero-slide.is-active {
  display: block;
}

body[data-page="home"] .hero-slide img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

body[data-page="home"] .hero-panel {
  display: none;
}

body[data-page="home"] .hero-arrow.prev {
  left: 1.25rem;
}

body[data-page="home"] .hero-arrow.next {
  right: 1.25rem;
}

body[data-page="home"] .hero-nav {
  bottom: 0.65rem;
}

body[data-page="home"] .trust-strip {
  margin-top: 0;
  padding-top: 0;
}

body[data-page="home"] .trust-card {
  margin-top: -0.9rem;
  border-radius: 18px;
  padding: 0.95rem 1rem;
}

body[data-page="home"] .section-title {
  color: #111;
  font-family: "Roboto Slab", Georgia, serif;
}

body[data-page="home"] .section-subtitle,
body[data-page="home"] .card p,
body[data-page="home"] .testimonial .source {
  font-family: "Roboto", system-ui, sans-serif;
}

body[data-page="home"] .card {
  box-shadow: 0 10px 25px rgba(43, 17, 8, 0.08);
}

body[data-page="home"] .stats-band {
  background: linear-gradient(180deg, #c79a59, #efdfb1);
  color: #7f0419;
}

body[data-page="home"] .stats-band .stat {
  background: rgba(255, 255, 255, 0.7);
  color: #7f0419;
}

body[data-page="home"] .stats-band .stat strong {
  color: #7f0419;
}

body[data-page="home"] .bio-stack,
body[data-page="home"] .media-section,
body[data-page="home"] .testimonials-section {
  width: 100%;
}

body[data-page="home"] .bio-stack {
  margin-top: 0.75rem;
}

body[data-page="home"] .bio-row {
  padding: 0.5rem 0 2rem;
}

body[data-page="home"] .media-section {
  background: #f8efdf;
}

body[data-page="home"] .media-heading,
body[data-page="home"] .media-feature,
body[data-page="home"] .media-grid,
body[data-page="home"] .testimonials-layout,
body[data-page="home"] .consultation-banner,
body[data-page="home"] .instagram-strip,
body[data-page="home"] .stats-band,
body[data-page="home"] .count-note {
  width: min(1040px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

body[data-page="home"] .consultation-banner {
  width: min(960px, calc(100% - 2rem));
}

body[data-page="home"] .instagram-strip {
  background: #f8efdf;
}

body[data-page="home"] #site-footer,
body[data-page="home"] .footer {
  margin-top: 0;
  background-color: #8b0000;
  background-image: linear-gradient(90deg, #8b0000 0%, #c71c4a 100%) !important;
  background-repeat: no-repeat;
}

.popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 2000;
}

.popup.is-open {
  display: flex;
}

.popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
}

.popup__card {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  padding: 3rem 2rem 2.3rem;
  text-align: center;
}

.popup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  background: #d0d0d0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.popup__avatar {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #2b2b2b;
  margin: 0 auto 1.5rem;
}

.popup__title {
  margin: 0 0 1.5rem;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #1d3f7a;
}

.popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(540px, 100%);
  padding: 1.1rem 1.5rem;
  border-radius: 0;
  background: #442348;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 800;
}

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

  .blog-sidebar {
    width: min(520px, 100%);
  }

  .grid-4,
  .footer-top,
  .trust-grid,
  .media-logos,
  .stats,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero .banner,
  .media-strip,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .live-intro-box,
  .live-benefits-box {
    grid-template-columns: 1fr;
  }

  .live-video-card {
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .bio-row,
  .bio-row.reverse {
    grid-template-columns: 1fr 220px;
    grid-template-areas:
      "copy photo"
      "side side";
  }

  .bio-row.reverse {
    grid-template-areas:
      "side photo"
      "copy copy";
  }
}

@media (max-width: 860px) {
  .topbar .container,
  .hero-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.8rem);
    padding: 0.75rem;
    border-radius: 24px;
    background: rgba(255, 251, 245, 0.98);
    border: 1px solid rgba(127, 4, 25, 0.1);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  body .home-nav-band .nav {
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
    padding: 0.65rem;
    background: #b54a4c;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 42px rgba(127, 4, 25, 0.25);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .nav-summary,
  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .nav-parent {
    width: 100%;
  }

  .nav-parent .nav-parent-link {
    flex: 1;
  }

  .nav-dropdown-toggle {
    width: auto;
    flex: 0 0 auto;
  }

  body .home-nav-band .nav-link,
  body .home-nav-band .nav-summary,
  body .home-nav-band .nav-dropdown-toggle {
    color: #fff;
    border-radius: 14px;
    padding: 0.88rem 1rem;
  }

  body .home-nav-band .nav-parent {
    width: 100%;
    border-radius: 14px;
  }

  body .home-nav-band .nav-link:hover,
  body .home-nav-band .nav-summary:hover,
  body .home-nav-band .nav-dropdown-toggle:hover,
  body .home-nav-band .nav-link:focus-visible,
  body .home-nav-band .nav-summary:focus-visible,
  body .home-nav-band .nav-dropdown-toggle:focus-visible,
  body .home-nav-band .nav-item.is-active > .nav-link,
  body .home-nav-band .nav-item.is-active > .nav-summary,
  body .home-nav-band .nav-item.is-active > .nav-parent {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 18px;
    background: rgba(127, 4, 25, 0.04);
    margin-top: 0.35rem;
    display: none;
  }

  .nav-item.dropdown-open > .dropdown {
    display: grid;
  }

  body .home-nav-band .dropdown {
    background: #fffaf0;
    border: 1px solid rgba(127, 4, 25, 0.12);
  }

  body .home-nav-band .dropdown a {
    color: #2a201c;
  }

  body .home-nav-band .dropdown a:hover,
  body .home-nav-band .dropdown a:focus-visible {
    color: #9d0417;
    background: rgba(127, 4, 25, 0.08);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-cta {
    width: 100%;
  }

  .hero-note {
    width: 100%;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  .blog-shell {
    width: min(1640px, calc(100% - 1rem));
  }

  .blog-archive {
    padding: 3.5rem 0;
  }

  .blog-entry {
    padding-bottom: 2.6rem;
    margin-bottom: 2.2rem;
  }

  .blog-search div {
    grid-template-columns: 1fr;
  }

  .blog-pagination {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .blog-pagination .next {
    margin-left: 0;
  }

  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-top,
  .trust-grid,
  .media-logos {
    grid-template-columns: 1fr;
  }

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

  .bio-row,
  .bio-row.reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photo"
      "side";
  }

  .section {
    padding: 3.3rem 0;
  }

  .hero-copy {
    padding: 1.1rem;
  }

  .hero-copy h1 {
    font-size: 2.05rem;
  }

  .page-hero {
    padding-top: 2rem;
  }

  .contact-map-section {
    padding-bottom: 3.2rem;
  }

  .contact-map-shell {
    width: min(1080px, calc(100% - 1rem));
    padding: 0.5rem;
  }

  .contact-map-shell iframe {
    height: 390px;
  }

  .live-shell {
    width: min(860px, calc(100% - 1rem));
  }

  .live-banner {
    padding: 1.2rem 0 2.5rem;
    background: linear-gradient(180deg, #b1081c 0 140px, #fff 140px);
  }

  .live-intro-box,
  .live-benefits-box {
    padding: 2.2rem 1rem;
  }

  .live-poster-section {
    padding: 2.3rem 0 3.5rem;
  }

  body[data-page="home"] .home-nav-band .nav {
    overflow: visible;
    justify-content: flex-start;
  }

  .popup__card {
    padding: 2rem 1.2rem 1.6rem;
  }

  .popup__avatar {
    width: 180px;
    height: 180px;
  }
}
