@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@400;500;700;800&family=Marcellus&display=swap");

:root {
  --bg: #ffffff;
  --bg-deep: #fff6f1;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --card: rgba(255, 255, 255, 0.94);
  --text: #4f352b;
  --muted: #7d655a;
  --accent: #ec008c;
  --accent-dark: #c40074;
  --accent-soft: #fff6f1;
  --brand: #9a563a;
  --green: #aacf36;
  --blue: #03b6f2;
  --gold: #9a563a;
  --line: rgba(154, 86, 58, 0.16);
  --shadow: 0 24px 60px rgba(154, 86, 58, 0.14);
  --shadow-soft: 0 16px 36px rgba(154, 86, 58, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1280px, calc(100% - 48px));
  --header-height: 88px;
  --transition: 220ms ease;
  --font-body: "Alegreya Sans", sans-serif;
  --font-display: "Marcellus", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(236, 0, 140, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(154, 86, 58, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #ffffff 0%, #fff6f1 54%, #ffffff 100%);
  line-height: 1.65;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

main {
  position: relative;
}

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

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(236, 0, 140, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before,
.section-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 0 0 5px rgba(236, 0, 140, 0.14);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2,
.section-head h1,
.display-title,
.page-banner h1,
.hero-copy h1,
.service-cluster h3,
.faq-item button,
.stat-card strong,
.founder-intro h2,
.article-card h3,
.content-card h3 {
  font-family: var(--font-display);
}

.section-head h2,
.display-title,
.page-banner h1,
.hero-copy h1,
.founder-intro h2 {
  margin: 0;
  line-height: 0.97;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-head h2,
.display-title {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.section-head p,
.section-copy,
.muted {
  margin: 0;
  color: var(--muted);
}

.pill-row,
.action-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.button-ghost,
.button-outline,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
  white-space: nowrap;
}

.button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(196, 0, 116, 0.24);
}

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

.button-ghost {
  background: rgba(154, 86, 58, 0.09);
  color: var(--brand);
  border-color: rgba(154, 86, 58, 0.16);
}

.button-outline {
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent-dark);
  border-color: rgba(236, 0, 140, 0.2);
}

.button.full,
.button-ghost.full,
.button-outline.full {
  width: 100%;
}

.icon-button {
  width: 48px;
  min-height: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: auto -12vw -30vh auto;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 0, 140, 0.08), transparent 64%);
  pointer-events: none;
  z-index: -2;
}

.card,
.panel,
.content-card,
.form-shell,
.stat-card,
.service-card,
.quote-card,
.founder-spotlight,
.lead-panel,
.page-card {
  border: 1px solid rgba(154, 86, 58, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(255, 255, 255, 0.78)
  );
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 58;
  overflow: visible;
  transition:
    box-shadow var(--transition),
    background var(--transition);
}

.site-header.is-scrolled .header-main {
  box-shadow: 0 18px 35px rgba(154, 86, 58, 0.12);
}

.top-strip {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid rgba(236, 0, 140, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: var(--muted);
  overflow: visible;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 58px;
  padding-block: 8px;
  font-size: 0.82rem;
}

.top-strip-meta,
.top-strip-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.top-strip-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-strip-meta {
  min-width: 0;
}

.top-strip-meta span,
.top-strip-meta a {
  white-space: nowrap;
}

.top-strip-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(236, 0, 140, 0.12);
  color: var(--accent);
}

.language-switcher--top .language-trigger {
  min-height: 42px;
  min-width: 148px;
  padding-inline: 14px;
  border-color: rgba(154, 86, 58, 0.14);
  background: rgba(255, 246, 241, 0.82);
  color: var(--brand);
}

.language-switcher--top .language-trigger .site-icon {
  color: var(--accent);
}

.language-switcher--top .language-menu {
  top: calc(100% + 10px);
}

.header-main {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(154, 86, 58, 0.1);
}

.header-main .container {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: var(--header-height);
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.brand-logo-only {
  justify-content: center;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.02;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.desktop-nav {
  grid-column: 2;
  justify-self: start;
  width: 100%;
  min-width: 0;
}

.desktop-nav ul,
.mobile-menu ul,
.footer-links,
.footer-services,
.value-grid,
.service-list,
.policy-list,
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.nav-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  color: rgba(154, 86, 58, 0.54);
  transition:
    transform var(--transition),
    color var(--transition);
}

.nav-caret .site-icon {
  width: 16px;
}

.nav-link:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
}

.nav-link.active,
.nav-item:hover > .nav-link,
.nav-item:hover > .nav-toggle,
.nav-toggle.active {
  background: linear-gradient(
    180deg,
    rgba(154, 86, 58, 0.09),
    rgba(236, 0, 140, 0.08)
  );
  border-color: rgba(154, 86, 58, 0.12);
  box-shadow: 0 10px 22px rgba(154, 86, 58, 0.08);
  color: var(--brand);
}

.nav-item.has-dropdown:hover .nav-caret,
.nav-item.is-open .nav-caret,
.mobile-item.is-open .nav-caret {
  color: var(--accent-dark);
  transform: rotate(180deg);
}

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

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 292px;
  padding: 14px;
  border: 1px solid rgba(154, 86, 58, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.dropdown a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.1);
}

.dropdown a:hover {
  background: rgba(236, 0, 140, 0.08);
  color: var(--accent-dark);
}

.header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-self: end;
  flex-shrink: 0;
}

.language-switcher {
  position: relative;
  z-index: 8;
}

.language-trigger {
  min-width: 158px;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid rgba(154, 86, 58, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.language-trigger > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(154, 86, 58, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  z-index: 20;
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.language-option.is-active,
.language-option:hover {
  background: rgba(236, 0, 140, 0.09);
  color: var(--accent-dark);
}

.flag {
  font-size: 1.2rem;
}

.google-translate-shell,
#google_translate_element {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  inset: 0 auto auto 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
  display: none !important;
}

.goog-te-gadget,
.goog-te-gadget .goog-te-combo {
  font-size: 0 !important;
}

.notranslate {
  unicode-bidi: isolate;
}

.site-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.site-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.button.has-icon,
.floating-button.has-icon,
.footer-social a,
.top-strip-social a {
  gap: 10px;
}

body {
  top: 0 !important;
}

.mobile-toggle {
  display: none;
  position: relative;
  z-index: 60;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(154, 86, 58, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px rgba(154, 86, 58, 0.1);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform var(--transition),
    opacity var(--transition);
  content: "";
  left: 15px;
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  position: absolute;
  left: 0;
}

.mobile-toggle span::before {
  transform: translateY(-6px);
}

.mobile-toggle span::after {
  transform: translateY(6px);
}

.mobile-toggle:hover,
.mobile-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(196, 0, 116, 0.24);
  box-shadow: 0 16px 30px rgba(154, 86, 58, 0.14);
}

.mobile-toggle.is-active span {
  background: transparent;
}

.mobile-toggle.is-active {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(196, 0, 116, 0.22);
  box-shadow: 0 18px 34px rgba(154, 86, 58, 0.16);
}

.mobile-toggle.is-active span::before {
  transform: translateY(0) rotate(45deg);
}

.mobile-toggle.is-active span::after {
  transform: translateY(0) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 100vw);
  padding: 24px 20px 120px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 246, 241, 0.98)
    ),
    radial-gradient(
      circle at top right,
      rgba(236, 0, 140, 0.12),
      transparent 24%
    );
  box-shadow: -18px 0 40px rgba(154, 86, 58, 0.16);
  overflow-y: auto;
  z-index: 56;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu > ul {
  display: grid;
  gap: 10px;
}

.mobile-menu a,
.mobile-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(154, 86, 58, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--text);
  font-weight: 700;
}

.mobile-parent .nav-caret,
.mobile-menu a .nav-caret {
  width: 18px;
}

.mobile-menu .mobile-submenu {
  display: none;
  padding-top: 10px;
  padding-left: 14px;
}

.mobile-item.is-open .mobile-submenu {
  display: grid;
  gap: 8px;
}

.mobile-item.is-open .mobile-parent {
  color: var(--accent-dark);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 20, 14, 0.46);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
  z-index: 52;
}

.overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  padding: 56px 0 110px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(180deg, rgba(255, 246, 241, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(
      circle at 18% 18%,
      rgba(236, 0, 140, 0.1),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 26%,
      rgba(154, 86, 58, 0.1),
      transparent 24%
    );
  border-radius: 0 0 42px 42px;
  border: 1px solid rgba(154, 86, 58, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  color: var(--text);
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 3.35vw, 3.7rem);
  margin-bottom: 20px;
  max-width: 22ch;
  line-height: 1.03;
  color: var(--brand);
  text-shadow: 0 10px 24px rgba(236, 0, 140, 0.08);
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-note {
  margin-top: 14px;
  color: var(--brand);
  font-weight: 600;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(154, 86, 58, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  margin-left: 92px;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(255, 246, 241, 0.82)
  );
  box-shadow: var(--shadow);
}

.hero-main-image {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(154, 86, 58, 0.16);
}

.hero-main-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 72% top;
}

.hero-floating-card,
.hero-floating-badge {
  position: absolute;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(154, 86, 58, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.hero-floating-card {
  right: -20px;
  bottom: 40px;
}

.hero-floating-card strong,
.hero-floating-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 1.35rem;
}

.hero-floating-badge {
  left: 0;
  top: 54px;
  max-width: 228px;
}

.hero-secondary {
  position: absolute;
  right: 18px;
  bottom: -42px;
  width: min(220px, 36%);
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-secondary img {
  border-radius: 20px;
  object-fit: cover;
}

.services-grid,
.stats-grid,
.value-grid,
.gallery-grid,
.contact-grid,
.founder-grid,
.cluster-grid,
.blog-grid {
  display: grid;
  gap: 22px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(236, 0, 140, 0.12),
    rgba(154, 86, 58, 0.06)
  );
}

.service-index {
  color: rgba(154, 86, 58, 0.4);
  font-weight: 800;
}

.service-card h3 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.02;
  text-wrap: balance;
}

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

.service-card .button-outline {
  margin-top: auto;
  align-self: flex-start;
}

.trust-section {
  position: relative;
}

.trust-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(154, 86, 58, 0.94), rgba(236, 0, 140, 0.82)),
    radial-gradient(
      circle at right top,
      rgba(255, 255, 255, 0.09),
      transparent 22%
    );
  color: #ffffff;
  box-shadow: var(--shadow);
}

.trust-panel::before,
.trust-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.trust-panel::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -60px;
  background: radial-gradient(
    circle,
    rgba(255, 216, 162, 0.16),
    transparent 68%
  );
}

.trust-panel::after {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -90px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 72%
  );
}

.trust-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.trust-intro {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 246, 241, 0.12);
  backdrop-filter: blur(10px);
}

.trust-intro h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.35rem, 3vw, 3.45rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.trust-panel .section-copy {
  margin: 0;
  max-width: 44ch;
  color: rgba(255, 246, 241, 0.8);
  font-size: 1.02rem;
  line-height: 1.8;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
  align-content: start;
}

.stat-card {
  position: relative;
  min-height: 220px;
  padding: 26px 26px 28px;
  border-radius: 28px;
  overflow: hidden;
  color: var(--text);
  border: 1px solid rgba(255, 246, 241, 0.68);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 246, 241, 0.92)
  );
  box-shadow: 0 18px 34px rgba(154, 86, 58, 0.12);
  display: grid;
  align-content: start;
  gap: 14px;
}

.stat-card::before {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 0, 140, 0.14), transparent 70%);
}

.stat-card:nth-child(2),
.stat-card:nth-child(4) {
  transform: translateY(22px);
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stat-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(236, 0, 140, 0.16),
    rgba(154, 86, 58, 0.16)
  );
  color: var(--accent-dark);
  font-weight: 800;
}

.stat-icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(154, 86, 58, 0.1),
    rgba(236, 0, 140, 0.16)
  );
}

.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.stat-icon::before {
  inset: 12px;
  border: 2px solid rgba(196, 0, 116, 0.46);
}

.stat-icon::after {
  width: 12px;
  height: 12px;
  right: 10px;
  top: 10px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
}

.stat-card:nth-child(2) .stat-icon {
  background: linear-gradient(
    145deg,
    rgba(255, 246, 241, 0.72),
    rgba(236, 0, 140, 0.14)
  );
}

.stat-card:nth-child(3) .stat-icon {
  background: linear-gradient(
    145deg,
    rgba(154, 86, 58, 0.18),
    rgba(154, 86, 58, 0.08)
  );
}

.stat-card:nth-child(4) .stat-icon {
  background: linear-gradient(
    145deg,
    rgba(236, 0, 140, 0.14),
    rgba(154, 86, 58, 0.16)
  );
}

.stat-card strong {
  display: block;
  margin: 4px 0 0;
  font-size: clamp(2.7rem, 3vw, 3.7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  max-width: 16ch;
  font-size: 1rem;
  line-height: 1.45;
}

.founder-spotlight {
  overflow: hidden;
  border-radius: 34px;
}

.founder-grid {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.founder-media {
  position: relative;
  min-height: 100%;
  background: linear-gradient(
    180deg,
    rgba(154, 86, 58, 0.05),
    rgba(236, 0, 140, 0.12)
  );
}

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

.founder-copy {
  padding: 38px;
}

.founder-copy h2,
.founder-copy h3 {
  margin: 0;
}

.founder-copy h2 {
  font-size: clamp(2.2rem, 2.8vw, 3.1rem);
}

.founder-copy h3 {
  margin-top: 8px;
  color: var(--accent-dark);
  font-size: 1.25rem;
}

.founder-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.founder-copy .button-row,
.page-card > .button-row,
.content-card > .button-row {
  margin-top: 28px;
}

.quote-card {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
}

.quote-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.testimonial-panel,
.testimonial-slide {
  border-radius: 32px;
}

.testimonial-panel {
  padding: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 246, 241, 0.84)
  );
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(154, 86, 58, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 800;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 380ms ease;
}

.testimonial-slide {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 34px;
  background: linear-gradient(
    135deg,
    rgba(154, 86, 58, 0.95),
    rgba(236, 0, 140, 0.9)
  );
  color: #ffffff;
}

.testimonial-slide img {
  width: 52px;
  height: 52px;
}

.testimonial-slide p {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

.testimonial-meta strong {
  display: block;
  font-size: 1.25rem;
}

.testimonial-meta span {
  color: rgba(255, 246, 241, 0.76);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 172px;
  gap: 18px;
  grid-auto-flow: row dense;
}

.gallery-grid--showcase .gallery-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.gallery-grid--showcase .gallery-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gallery-grid--showcase .gallery-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.gallery-grid--showcase .gallery-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.gallery-grid--showcase .gallery-card:nth-child(5) {
  grid-column: 3;
  grid-row: 2 / span 2;
}

.gallery-grid--showcase .gallery-card:nth-child(6) {
  grid-column: 1 / span 2;
  grid-row: 3;
}

.gallery-grid--showcase .gallery-card:nth-child(7) {
  grid-column: 1;
  grid-row: 4;
}

.gallery-grid--showcase .gallery-card:nth-child(8) {
  grid-column: 2 / span 2;
  grid-row: 4;
}

.gallery-grid--compact .gallery-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.gallery-grid--compact .gallery-card:nth-child(2) {
  grid-column: 2 / span 2;
  grid-row: 1;
}

.gallery-grid--compact .gallery-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.gallery-grid--compact .gallery-card:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.gallery-card {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  height: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.94);
}

.gallery-card.is-tall {
  min-height: 100%;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 10, 7, 0.02) 34%,
      rgba(15, 10, 7, 0.22) 62%,
      rgba(15, 10, 7, 0.68) 100%
    ),
    linear-gradient(
      0deg,
      rgba(154, 86, 58, 0.26),
      rgba(236, 0, 140, 0.08) 22%,
      transparent 44%
    );
  z-index: 1;
  transition: opacity var(--transition);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-card::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 20px 20px;
  max-width: calc(100% - 40px);
  color: #ffffff;
  font-size: clamp(1rem, 1.45vw, 1.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  white-space: normal;
  z-index: 2;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card:hover::before {
  opacity: 0.94;
}

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

.article-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(154, 86, 58, 0.1);
  box-shadow: var(--shadow-soft);
}

.article-card small {
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0;
  font-size: 1.52rem;
  line-height: 1.04;
  text-wrap: balance;
}

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

.article-card a {
  color: var(--brand);
  font-weight: 800;
}

.lead-section {
  position: relative;
}

.lead-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.lead-panel {
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(154, 86, 58, 0.96), rgba(236, 0, 140, 0.86)),
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.1),
      transparent 28%
    );
  color: #ffffff;
}

.lead-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 2.9vw, 3rem);
  line-height: 0.98;
  text-wrap: balance;
}

.lead-panel p {
  margin: 18px 0 0;
  color: rgba(255, 246, 241, 0.82);
}

.cta-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.cta-mini-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-mini-card strong {
  display: block;
}

.cta-mini-card span {
  color: rgba(255, 246, 241, 0.78);
  font-size: 0.92rem;
}

.qr-card {
  margin-top: 22px;
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.qr-card img {
  display: block;
  width: 100%;
  max-width: 240px;
  border-radius: 16px;
}

.qr-card p {
  margin: 0;
  max-width: 26ch;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.55;
}

.qr-card .button-ghost {
  margin-top: 4px;
  padding-inline: 28px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(154, 86, 58, 0.16);
}

.qr-card .button-ghost:hover,
.qr-card .button-ghost:focus-visible {
  background: #ffffff;
  color: var(--brand);
}

.form-shell {
  padding: 30px;
  border-radius: 32px;
}

.form-shell h3 {
  margin: 0 0 8px;
  font-size: 2.1rem;
  line-height: 1;
}

.form-shell > p {
  margin: 0 0 20px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(154, 86, 58, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(236, 0, 140, 0.5);
  box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.1);
}

.form-status {
  min-height: 24px;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.page-banner {
  position: relative;
  padding: 88px 0 74px;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(154, 86, 58, 0.92), rgba(236, 0, 140, 0.84)),
    url("../images/gallery2.jpg") center/cover no-repeat;
  background-blend-mode: multiply;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
}

.page-banner p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-layout,
.content-layout {
  display: grid;
  gap: 24px;
}

.content-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.content-card,
.page-card {
  padding: 34px;
  border-radius: 30px;
}

.content-card h2,
.content-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 2.45vw, 2.45rem);
  line-height: 1.02;
  text-wrap: balance;
}

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

.content-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.content-card li + li {
  margin-top: 10px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.policy-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(236, 0, 140, 0.08);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 700;
}

.legal-content h3 {
  margin-top: 26px;
}

.legal-content h3:first-of-type {
  margin-top: 0;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
}

.legal-content hr {
  border: 0;
  border-top: 1px solid rgba(154, 86, 58, 0.12);
  margin: 26px 0;
}

.legal-sidebar-links {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-sidebar-links li {
  margin: 0;
}

.legal-sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(154, 86, 58, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.legal-sidebar-links a:hover,
.legal-sidebar-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(236, 0, 140, 0.26);
  box-shadow: 0 14px 24px rgba(196, 0, 116, 0.1);
}

.legal-sidebar-links a.is-current {
  border-color: rgba(236, 0, 140, 0.34);
  background: rgba(255, 246, 241, 0.92);
  color: var(--brand);
}

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

.service-cluster {
  padding: 26px;
  border-radius: 24px;
}

.service-cluster h3 {
  margin: 0 0 14px;
  font-size: 1.74rem;
  line-height: 1.02;
  text-wrap: balance;
}

.service-cluster p {
  margin: 0 0 12px;
  color: var(--muted);
}

.service-cluster ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-cluster li + li {
  margin-top: 8px;
}

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

.value-grid li {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(154, 86, 58, 0.1);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.archive-intro-card {
  margin-bottom: 28px;
}

.archive-intro-card > *:last-child {
  margin-bottom: 0;
}

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

.post-card {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(154, 86, 58, 0.1);
  box-shadow: var(--shadow-soft);
}

.post-card-media {
  display: block;
  position: relative;
  min-height: 240px;
  background: linear-gradient(135deg, rgba(154, 86, 58, 0.9), rgba(236, 0, 140, 0.82));
}

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

.post-card-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 240px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.8rem);
}

.post-card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(236, 0, 140, 0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-card-body h3,
.sidebar-post-item h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.05;
  text-wrap: balance;
}

.post-card-body h3 {
  font-size: 1.7rem;
}

.post-card-body p,
.sidebar-post-item small {
  margin: 0;
  color: var(--muted);
}

.post-content-card {
  min-width: 0;
}

.post-feature-wrap {
  margin-bottom: 24px;
}

.post-feature-image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.post-content {
  color: var(--muted);
}

.post-content::after {
  content: "";
  display: block;
  clear: both;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin: 30px 0 14px;
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1.05;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote {
  margin: 0 0 16px;
}

.post-content ul,
.post-content ol {
  padding-left: 20px;
}

.post-content img {
  height: auto;
  border-radius: 18px;
}

.post-sidebar {
  display: grid;
  align-content: start;
  gap: 24px;
}

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

.sidebar-post-item {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(154, 86, 58, 0.1);
}

.sidebar-post-item small {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wp-block-image,
.post-content figure {
  margin: 0 0 20px;
}

.wp-block-image img {
  border-radius: 18px;
}

.wp-block-quote,
.post-content blockquote {
  padding: 24px;
  border-left: 4px solid var(--accent);
  border-radius: 20px;
  background: rgba(255, 246, 241, 0.9);
  color: var(--text);
}

.navigation.pagination {
  margin-top: 32px;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(154, 86, 58, 0.12);
  color: var(--brand);
  font-weight: 800;
}

.navigation.pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: transparent;
  color: #ffffff;
}

.awards-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.awards-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(154, 86, 58, 0.08);
}

.awards-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(236, 0, 140, 0.12);
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.faq-item {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(154, 86, 58, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 700;
  text-align: left;
}

.faq-item button span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(236, 0, 140, 0.1);
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.is-open button {
  color: var(--brand);
}

.faq-item.is-open button span:last-child {
  transform: rotate(45deg);
}

.map-frame {
  overflow: hidden;
  border-radius: 28px;
  min-height: 360px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

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

.contact-card {
  padding: 24px;
  border-radius: 24px;
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 1.05rem;
}

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

.policy-list {
  display: grid;
  gap: 14px;
}

.policy-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(154, 86, 58, 0.1);
  color: var(--brand);
  font-weight: 800;
}

.footer {
  position: relative;
  padding: 88px 0 38px;
  background: linear-gradient(180deg, #fff8f4 0%, #fff6f1 52%, #ffffff 100%);
  color: var(--text);
}

.footer::before {
  content: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(154, 86, 58, 0.12);
  border-radius: 40px;
  padding: 32px 34px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 246, 241, 0.98));
  box-shadow: 0 34px 70px rgba(154, 86, 58, 0.12);
}

.footer-shell::before,
.footer-shell::after {
  content: none;
}

.footer-shell::before {
  inset: auto;
}

.footer-shell::after {
  inset: auto;
}

.footer-cta,
.footer-main {
  position: relative;
  z-index: 1;
}

.footer-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
  padding: 28px 12px 68px;
}

.footer-cta .section-kicker {
  margin-bottom: 0;
  border-color: rgba(236, 0, 140, 0.14);
  background: rgba(236, 0, 140, 0.08);
  color: var(--accent-dark);
}

.footer-cta h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--brand);
  font-size: clamp(2.3rem, 3.45vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.footer-cta p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.footer-whatsapp-btn {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(154, 86, 58, 0.16);
  color: var(--brand);
}

.footer-whatsapp-btn:hover,
.footer-whatsapp-btn:focus-visible {
  background: rgba(255, 246, 241, 1);
  color: var(--accent-dark);
}

.footer-divider {
  position: relative;
  height: 1px;
  margin: 0 0 24px;
  background: rgba(154, 86, 58, 0.1);
  overflow: visible;
}

.footer-divider::before,
.footer-divider::after {
  content: none;
}

.footer-divider::before {
  inset: auto;
}

.footer-divider::after {
  inset: auto;
}

.footer-main {
  padding-top: 12px;
}

.footer-top {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr) minmax(180px, 0.9fr) minmax(220px, 1fr)
    minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

.footer-brand,
.footer-col {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

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

.footer-brand .brand img {
  width: 74px;
  height: 74px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 246, 241, 0.8);
  border: 1px solid rgba(236, 0, 140, 0.12);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-badge img {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.footer-brand p,
.footer-col p {
  margin: 0;
  color: var(--muted);
}

.footer h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--brand);
}

.footer-title-icon,
.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(255, 246, 241, 0.96),
    rgba(236, 0, 140, 0.08)
  );
  border: 1px solid rgba(236, 0, 140, 0.12);
  color: var(--accent-dark);
}

.footer-links,
.footer-services {
  display: grid;
  gap: 2px;
}

.footer-links a,
.footer-services a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: var(--text);
  border-bottom: 1px dashed rgba(154, 86, 58, 0.12);
  transition:
    color var(--transition),
    transform var(--transition);
}

.footer-links li:last-child a,
.footer-services li:last-child a {
  border-bottom: 0;
}

.footer-links a .site-icon,
.footer-services a .site-icon {
  width: 18px;
  color: rgba(236, 0, 140, 0.86);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-services a:hover,
.footer-services a:focus-visible {
  color: var(--accent-dark);
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(154, 86, 58, 0.12);
}

.footer-contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
}

.footer-contact-item a {
  color: var(--text);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  background: rgba(236, 0, 140, 0.08);
  border: 1px solid rgba(236, 0, 140, 0.12);
  color: var(--accent);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(154, 86, 58, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom-copy {
  min-width: 0;
}

.footer-bottom-nav,
.footer-bottom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom-nav {
  justify-self: center;
}

.footer-bottom-meta {
  justify-self: end;
}

.footer-bottom a {
  color: var(--text);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--accent-dark);
}

.floating-dock,
.floating-buttons {
  position: fixed;
  z-index: 45;
}

.floating-buttons {
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 12px;
}

.floating-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(154, 86, 58, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  white-space: nowrap;
}

.floating-button.is-whatsapp {
  color: #7fa61f;
  background: rgba(170, 207, 54, 0.14);
  border-color: rgba(170, 207, 54, 0.28);
}

.floating-button.is-call {
  color: var(--brand);
}

.floating-dock {
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(154, 86, 58, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-dock a {
  flex: 1;
}

.modal-layer {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(28, 17, 12, 0.48);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
  z-index: 65;
}

.modal-layer.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 246, 241, 0.98)
  );
  box-shadow: 0 30px 80px rgba(38, 23, 12, 0.28);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(154, 86, 58, 0.08);
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 800;
}

.modal h3 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 0.96;
}

.modal p {
  margin: 12px 0 22px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(17, 11, 8, 0.88);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
  z-index: 68;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: min(1040px, 100%);
  max-height: min(88vh, 100%);
}

.lightbox img {
  max-height: 88vh;
  border-radius: 22px;
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 246, 241, 0.82);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
}

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