:root {
  --font-base: Roboto, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-bg: #f7f3eb;
  --color-bg-soft: #efe7d9;
  --color-panel: #fffaf1;
  --color-panel-strong: #ffffff;
  --color-text: #201c16;
  --color-muted: #5f564c;
  --color-dim: #766b5e;
  --color-line: rgba(38, 31, 22, 0.13);
  --color-accent: #966426;
  --color-accent-strong: #754b19;
  --color-accent-contrast: #ffffff;
  --color-hero-text: #fffaf1;
  --color-hero-muted: rgba(255, 250, 241, 0.88);
  --color-field-bg: rgba(255, 255, 255, 0.72);
  --color-field-text: #201c16;
  --color-header-text: #fffaf1;
  --color-header-muted: rgba(255, 250, 241, 0.82);
  --color-card-glass: rgba(255, 250, 241, 0.92);
  --shadow-panel: 0 24px 80px rgba(56, 42, 24, 0.16);
  --shell: 1040px;
  --radius: 8px;
  color-scheme: light;
}

body[data-theme="dark"] {
  --color-bg: #181818;
  --color-bg-soft: #202020;
  --color-panel: #151515;
  --color-panel-strong: #101010;
  --color-text: #f4f1ea;
  --color-muted: #a9a59b;
  --color-dim: #747068;
  --color-line: rgba(244, 241, 234, 0.12);
  --color-accent: #d6a65e;
  --color-accent-strong: #e4b974;
  --color-accent-contrast: #21170b;
  --color-hero-text: #f4f1ea;
  --color-hero-muted: #c9c2b5;
  --color-field-bg: rgba(255, 255, 255, 0.035);
  --color-field-text: #f4f1ea;
  --color-header-text: #f4f1ea;
  --color-header-muted: rgba(244, 241, 234, 0.78);
  --color-card-glass: rgba(17, 17, 17, 0.86);
  --shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 1.52;
  text-rendering: optimizeLegibility;
  transition: background-color 180ms ease, color 180ms ease;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-solid {
  position: fixed;
  border-bottom: 1px solid var(--color-line);
  background: rgba(247, 243, 235, 0.94);
  box-shadow: 0 12px 36px rgba(56, 42, 24, 0.08);
  backdrop-filter: blur(14px);
}

body[data-theme="dark"] .site-header.is-solid {
  background: rgba(24, 24, 24, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--color-header-text);
}

.site-header.is-solid .brand {
  color: var(--color-text);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  border: 1px solid rgba(214, 166, 94, 0.7);
  color: var(--color-accent);
  font-weight: 700;
}

.brand__text {
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 0.85rem;
  color: var(--color-header-muted);
  font-size: 0.78rem;
}

.site-header.is-solid .site-nav {
  color: var(--color-muted);
}

.site-nav a {
  text-decoration: none;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--color-header-text);
  cursor: pointer;
}

.theme-toggle__icon {
  width: 16px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: currentColor;
  box-shadow: inset -5px -4px 0 rgba(0, 0, 0, 0.32);
}

body[data-theme="dark"] .theme-toggle__icon {
  box-shadow: inset 5px -3px 0 rgba(0, 0, 0, 0.86);
}

.site-main {
  overflow: clip;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  padding: 96px 0 58px;
  overflow: hidden;
  background: #111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.46) 50%, rgba(0, 0, 0, 0.78) 100%);
}

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

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

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3.25rem);
}

.hero__content {
  max-width: 620px;
  padding-top: 72px;
}

.hero__content,
.hero__content .eyebrow,
.hero h1 {
  color: var(--color-hero-text);
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 0.85rem;
  font-size: clamp(2.45rem, 5vw, 4.15rem);
  line-height: 0.98;
  font-weight: 300;
}

h2 {
  font-size: clamp(1.45rem, 2.45vw, 2.55rem);
  line-height: 1.08;
  font-weight: 300;
}

h3 {
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 700;
}

h1 strong,
h2 strong {
  font-weight: 900;
}

h3 strong {
  font-weight: 900;
}

.hero p,
.section p,
.lead-form small {
  color: var(--color-muted);
}

.lead-form small {
  text-align: center;
}

.hero p {
  max-width: 560px;
  font-size: 0.9rem;
  color: var(--color-hero-muted);
}

.lead-card {
  width: 100%;
  background: var(--color-card-glass);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-panel);
  padding: clamp(1.05rem, 1.8vw, 1.45rem);
  backdrop-filter: blur(10px);
}

.lead-card h2 {
  margin-bottom: 1rem;
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 400;
}

.lead-card--center {
  max-width: 560px;
  margin-inline: auto;
  padding: clamp(1.4rem, 3vw, 1.9rem);
}

.lead-form {
  display: grid;
  gap: 0.72rem;
}

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

.lead-form label {
  display: grid;
}

.field-control {
  position: relative;
}

.field-control span {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  z-index: 1;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
  transform-origin: left center;
  transition: top 150ms ease, transform 150ms ease, color 150ms ease, font-size 150ms ease, background-color 150ms ease, padding 150ms ease;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-field-text);
  padding: 1rem 0.85rem 0.18rem;
  font: inherit;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.field-control input:focus,
.field-control select:focus {
  border-color: rgba(185, 129, 54, 0.55);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(185, 129, 54, 0.12);
  outline: 0;
}

.field-control:focus-within span,
.field-control:has(input:not(:placeholder-shown)) span,
.field-control--select span {
  top: 0;
  padding-inline: 0.3rem;
  background: var(--color-card-glass);
  color: var(--color-accent);
  font-size: 0.72rem;
  transform: translateY(-50%);
}

.lead-form select {
  color: var(--color-text);
  padding-top: 1rem;
  padding-right: 2.1rem;
}

.lead-form option {
  color: #201c16;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  padding: 0 1.15rem;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.lead-form .button {
  min-height: 48px;
}

.button:hover,
.button:focus-visible {
  background: var(--color-accent-strong);
}

.button--full {
  width: 100%;
}

.button:disabled,
.button[disabled] {
  background: rgba(32, 28, 22, 0.14);
  color: rgba(32, 28, 22, 0.38);
  cursor: not-allowed;
}

body[data-theme="dark"] .button:disabled,
body[data-theme="dark"] .button[disabled] {
  background: rgba(244, 241, 234, 0.14);
  color: rgba(244, 241, 234, 0.34);
}

.drag-captcha {
  --captcha-progress: 0%;
  display: grid;
  gap: 0.5rem;
  padding: 0.25rem 0 0.2rem;
}

.drag-captcha__label {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.drag-captcha.is-unlocked .drag-captcha__label {
  color: var(--color-accent);
}

.drag-captcha__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 22px;
  background: transparent;
  cursor: grab;
}

.drag-captcha__range:active {
  cursor: grabbing;
}

.drag-captcha__range:focus {
  outline: 0;
}

.drag-captcha__range:focus-visible {
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(185, 129, 54, 0.16);
}

.drag-captcha__range::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent) 0 var(--captcha-progress), rgba(32, 28, 22, 0.16) var(--captcha-progress) 100%);
}

.drag-captcha__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -6.5px;
  border: 2px solid var(--color-card-glass);
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 4px 10px rgba(56, 42, 24, 0.22);
}

.drag-captcha__range::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(32, 28, 22, 0.16);
}

.drag-captcha__range::-moz-range-progress {
  height: 5px;
  border-radius: 999px;
  background: var(--color-accent);
}

.drag-captcha__range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-card-glass);
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 4px 10px rgba(56, 42, 24, 0.22);
}

.lead-form--compact {
  gap: 0.58rem;
}

.lead-form--compact .form-row {
  gap: 0.58rem;
}

.lead-form--compact input,
.lead-form--compact select {
  min-height: 40px;
  border-radius: 4px;
  padding: 0.82rem 0.72rem 0.08rem;
}

.lead-form--compact .field-control span {
  left: 0.72rem;
  font-size: 0.76rem;
}

.lead-form--compact .field-control:focus-within span,
.lead-form--compact .field-control:has(input:not(:placeholder-shown)) span,
.lead-form--compact .field-control--select span {
  font-size: 0.62rem;
}

.lead-form--compact .drag-captcha {
  gap: 0.42rem;
  padding: 0.18rem 0 0.12rem;
}

.lead-form--compact .drag-captcha__label {
  font-size: 0.72rem;
}

.lead-form--compact .button {
  min-height: 40px;
}

.form-message {
  margin-bottom: 0.85rem;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.86rem;
}

.form-message--success {
  background: rgba(80, 180, 120, 0.13);
  color: #216b3f;
}

.form-message--error {
  background: rgba(220, 80, 80, 0.13);
  color: #9d2f2f;
}

.section {
  padding: clamp(54px, 7.5vw, 92px) 0;
}

.section--benefits {
  background: var(--color-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.22fr) repeat(2, minmax(220px, 1fr));
  grid-template-areas:
    "intro item-one item-three"
    "intro item-two item-three";
  align-items: center;
  gap: clamp(1.6rem, 4vw, 4rem) clamp(2rem, 5vw, 4.8rem);
}

.benefits-grid .section-intro {
  grid-area: intro;
}

.benefits-grid article:nth-of-type(1) {
  grid-area: item-one;
}

.benefits-grid article:nth-of-type(2) {
  grid-area: item-two;
}

.benefits-grid article:nth-of-type(3) {
  grid-area: item-three;
}

.section-intro h2 {
  max-width: 340px;
}

.ornament {
  display: block;
  width: 68px;
  height: 12px;
  margin-bottom: 1rem;
  background: repeating-linear-gradient(135deg, var(--color-accent) 0 3px, transparent 3px 8px);
}

.benefits-grid article span {
  display: block;
  color: var(--color-dim);
  margin-bottom: 0.55rem;
  font-size: 1.55rem;
}

.benefits-grid article p {
  font-size: 0.84rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.8rem, 5vw, 4rem);
}

.split-section--reverse .split-grid {
  align-items: start;
}

.media-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(214, 166, 94, 0.38);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-panel);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px auto;
  width: 34%;
  height: 4px;
  background: var(--color-accent);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.media-frame--illustration img {
  aspect-ratio: 16 / 9;
}

.cta-band {
  padding-block: 24px;
}

.cta-band__inner {
  text-align: center;
}

.cta-band h2 {
  max-width: 700px;
  margin-inline: auto;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.copy-stack {
  max-width: 520px;
}

.projects {
  text-align: center;
}

.projects h2,
.learning h2,
.faq h2 {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.project-placeholder {
  min-height: 112px;
  display: grid;
  place-items: center;
  max-width: 760px;
  margin: 2rem auto 0;
  border-block: 1px solid var(--color-line);
  color: var(--color-muted);
}

.projects__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

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

.launch-card-grid--home {
  margin-top: 2rem;
}

.launch-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  text-align: left;
}

.launch-card__media {
  display: block;
  min-height: 180px;
  background: var(--color-panel-strong);
}

.launch-card__media:empty {
  background:
    linear-gradient(135deg, rgba(150, 100, 38, 0.14), rgba(32, 28, 22, 0.04)),
    var(--color-panel-strong);
}

.launch-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.launch-card__body {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.launch-card__body span {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-card__body h2,
.launch-card__body h3 {
  margin: 0;
  font-size: 1.12rem;
}

.launch-card__body a {
  text-decoration: none;
}

.launch-card__body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.launch-card__body strong {
  color: var(--color-text);
  font-size: 0.95rem;
}

.launch-archive-hero {
  padding: 118px 0 58px;
  background: linear-gradient(180deg, var(--color-bg-soft), var(--color-bg));
}

.launch-archive-hero h1 {
  max-width: 760px;
}

.launch-archive-hero p {
  max-width: 620px;
  color: var(--color-muted);
}

.launch-landing {
  background: var(--color-bg);
}

.launch-hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  padding: 108px 0 58px;
  overflow: hidden;
  background: #111;
}

.launch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.72));
}

.launch-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launch-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
  align-items: center;
  gap: clamp(1.4rem, 5vw, 4rem);
}

.launch-hero__copy,
.launch-hero__copy h1 {
  color: var(--color-hero-text);
}

.launch-hero__copy p {
  max-width: 620px;
  color: var(--color-hero-muted);
}

.launch-hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

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

.launch-hero__facts {
  max-width: 760px;
  margin-top: 1.4rem;
}

.launch-hero__facts article,
.launch-spec-grid article {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.1);
  padding: 0.8rem;
}

.launch-spec-grid article {
  border-color: var(--color-line);
  background: var(--color-panel);
}

.launch-hero__facts span,
.launch-spec-grid span {
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-hero__facts strong,
.launch-spec-grid strong {
  color: inherit;
  font-size: 0.95rem;
}

.launch-lead-card h2 {
  color: var(--color-text);
}

.launch-overview .copy-stack > * {
  margin-bottom: 1rem;
}

.launch-overview .copy-stack h2,
.launch-overview .copy-stack h3 {
  color: var(--color-text);
  margin-top: 1.5rem;
}

.launch-overview .copy-stack ul,
.launch-overview .copy-stack ol {
  padding-left: 1.2rem;
}

.launch-overview .copy-stack a {
  color: var(--color-accent);
}

.launch-overview .copy-stack img {
  border-radius: var(--radius);
}

.launch-specs,
.launch-location,
.launch-media-section {
  background: var(--color-bg-soft);
}

.launch-amenities-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem 1.2rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.launch-amenities-list li {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.launch-amenities-list li::before {
  content: "✓";
  margin-right: 0.5rem;
  color: var(--color-accent);
  font-weight: 800;
}

.launch-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 1.4rem;
}

.launch-gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.launch-gallery-thumb:focus-visible {
  outline: 3px solid rgba(161, 103, 32, 0.45);
  outline-offset: 3px;
}

.launch-gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  transition: transform 180ms ease;
}

.launch-gallery-thumb:hover img,
.launch-gallery-thumb:focus-visible img {
  transform: scale(1.035);
}

.launch-gallery-item {
  margin: 0;
}

.launch-gallery-item figcaption,
.launch-floor-plan figcaption {
  margin-top: 0.55rem;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.launch-floor-plan-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.launch-floor-plan-grid .media-frame {
  margin: 0;
}

.has-lightbox-open {
  overflow: hidden;
}

.launch-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 72px 84px;
  background: rgba(15, 12, 8, 0.88);
}

.launch-lightbox.is-open {
  display: grid;
}

.launch-lightbox__image {
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 150px);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.launch-lightbox__close,
.launch-lightbox__nav {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.14);
  color: #fffaf1;
  font: inherit;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.launch-lightbox__close {
  top: 22px;
  right: 22px;
}

.launch-lightbox__nav--prev {
  left: 22px;
}

.launch-lightbox__nav--next {
  right: 22px;
}

.launch-lightbox__close:hover,
.launch-lightbox__close:focus-visible,
.launch-lightbox__nav:hover,
.launch-lightbox__nav:focus-visible {
  background: rgba(161, 103, 32, 0.92);
  outline: none;
}

.launch-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.14);
  color: #fffaf1;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.45rem 0.85rem;
}

.launch-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.launch-map-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 320px;
  padding: 1.45rem;
  border: 1px solid rgba(150, 100, 38, 0.18);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(53, 42, 29, 0.1);
  background:
    radial-gradient(circle at 70% 18%, rgba(78, 128, 101, 0.22) 0 14%, transparent 15%),
    radial-gradient(circle at 18% 82%, rgba(78, 128, 101, 0.2) 0 16%, transparent 17%),
    radial-gradient(circle at 82% 78%, rgba(114, 149, 160, 0.2) 0 13%, transparent 14%),
    linear-gradient(138deg, transparent 0 30%, rgba(255, 250, 241, 0.82) 30% 33%, transparent 33% 100%),
    linear-gradient(28deg, transparent 0 42%, rgba(255, 250, 241, 0.78) 42% 46%, transparent 46% 100%),
    linear-gradient(96deg, transparent 0 21%, rgba(150, 100, 38, 0.12) 21% 23%, transparent 23% 100%),
    linear-gradient(0deg, transparent 0 22%, rgba(150, 100, 38, 0.12) 22% 24%, transparent 24% 49%, rgba(150, 100, 38, 0.1) 49% 51%, transparent 51% 76%, rgba(150, 100, 38, 0.12) 76% 78%, transparent 78%),
    linear-gradient(90deg, rgba(244, 237, 225, 0.94) 0 14%, rgba(235, 224, 207, 0.9) 14% 15%, rgba(244, 237, 225, 0.94) 15% 38%, rgba(235, 224, 207, 0.9) 38% 39%, rgba(244, 237, 225, 0.94) 39% 66%, rgba(235, 224, 207, 0.9) 66% 67%, rgba(244, 237, 225, 0.94) 67% 100%),
    var(--color-bg-soft);
}

.launch-map-card::before,
.launch-map-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.launch-map-card::before {
  left: 50%;
  top: 38%;
  z-index: 0;
  width: 74px;
  height: 74px;
  border-radius: 50% 50% 50% 8px;
  background: linear-gradient(145deg, #a16720, #7f4f18);
  box-shadow: 0 18px 35px rgba(64, 43, 22, 0.18);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.launch-map-card::after {
  left: 50%;
  top: 38%;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 7px solid rgba(255, 250, 241, 0.94);
  border-radius: 999px;
  background: transparent;
  transform: translate(-50%, -50%);
}

.launch-map-card .button {
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 34px rgba(86, 52, 17, 0.2);
}

.launch-consultant-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.78), rgba(255, 250, 241, 0)),
    var(--color-bg);
}

.launch-consultant-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3.2rem);
  border: 1px solid rgba(150, 100, 38, 0.2);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(161, 103, 32, 0.12), transparent 26%),
    linear-gradient(135deg, var(--color-panel), rgba(255, 250, 241, 0.82));
  padding: clamp(1rem, 2.8vw, 1.65rem);
  box-shadow: 0 26px 75px rgba(53, 42, 29, 0.1);
}

.launch-consultant-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: -1;
  width: 130px;
  aspect-ratio: 1;
  border: 1px solid rgba(161, 103, 32, 0.16);
  border-radius: 999px;
}

.launch-consultant-card__media {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(161, 103, 32, 0.16), rgba(78, 128, 101, 0.13)),
    var(--color-bg-soft);
}

.launch-consultant-card__media::after {
  content: "Consultor";
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.9);
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.42rem 0.7rem;
  text-transform: uppercase;
}

.launch-consultant-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launch-consultant-card__media span {
  color: rgba(161, 103, 32, 0.38);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
}

.launch-consultant-card__content {
  display: grid;
  justify-items: start;
  gap: 0.85rem;
}

.launch-consultant-card h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1;
}

.launch-consultant-card p {
  max-width: 560px;
  color: var(--color-muted);
  font-size: 1rem;
}

.launch-consultant-card__phone {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(150, 100, 38, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.72);
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.45rem 0.8rem;
}

.launch-consultant-card .button {
  margin-top: 0.15rem;
  box-shadow: 0 14px 34px rgba(86, 52, 17, 0.16);
}

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

.launch-media-grid article {
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.check-list li {
  color: var(--color-muted);
}

.check-list li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: var(--color-accent);
}

.section-heading {
  max-width: 820px;
}

.article-card {
  width: min(280px, 100%);
  margin-top: 2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-panel);
}

.article-card div {
  padding: 1rem;
}

.article-card span {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.posts-grid--home {
  margin-top: 1.5rem;
}

.home-articles-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.faq__inner {
  max-width: 760px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 1.4rem;
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-list details {
  border-bottom: 1px solid var(--color-line);
  padding: 0.8rem 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--color-text);
  font-weight: 650;
}

.faq-list p {
  margin: 0.75rem 0 0;
}

.final-form {
  padding-top: 20px;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  padding: 1.35rem 0;
  color: var(--color-dim);
  font-size: 0.76rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.page-content {
  padding: 0 0 80px;
}

.entry {
  max-width: 820px;
}

.button--ghost {
  border: 1px solid rgba(214, 166, 94, 0.45);
  background: transparent;
  color: var(--color-accent);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(214, 166, 94, 0.1);
}

.page-hero {
  padding: 112px 0 58px;
  background:
    radial-gradient(circle at 14% 12%, rgba(214, 166, 94, 0.16), transparent 28%),
    linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-bg) 100%);
}

.page-hero--center {
  min-height: 76vh;
  display: grid;
  align-items: center;
  text-align: center;
}

.page-hero__inner {
  max-width: 850px;
}

.page-hero--center .page-hero__inner {
  margin-inline: auto;
}

.page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.8vw, 3.8rem);
}

.page-hero p {
  max-width: 720px;
  color: var(--color-muted);
}

.page-hero--center p {
  margin-inline: auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.6rem 0;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: start;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.post-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.post-card__media {
  display: block;
  background: var(--color-panel-strong);
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card__body {
  padding: 1rem;
}

.post-card__meta {
  margin-bottom: 0.5rem;
  color: var(--color-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.post-card__title {
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.post-card__title a,
.text-link {
  text-decoration: none;
}

.text-link {
  color: var(--color-accent);
  font-weight: 700;
}

.pagination-wrap {
  margin-top: 2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  color: var(--color-muted);
  padding: 0 0.75rem;
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.empty-state {
  grid-column: 1 / -1;
  max-width: 720px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.search-form {
  display: flex;
  width: min(720px, 100%);
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: var(--color-field-bg);
  color: var(--color-field-text);
  padding: 0 0.9rem;
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.single-entry__media {
  margin-top: -28px;
  margin-bottom: 42px;
}

.single-entry__media img {
  width: 100%;
  max-height: 540px;
  border-radius: var(--radius);
  object-fit: cover;
}

.entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.entry__content {
  grid-column: 1;
  grid-row: 1;
  max-width: 780px;
}

.entry__content > * {
  margin-bottom: 1.2rem;
}

.entry__content h2,
.entry__content h3 {
  margin-top: 2rem;
}

.entry__content a {
  color: var(--color-accent);
}

.entry__content img {
  border-radius: var(--radius);
}

.entry-cta {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 96px;
}

.legal-page .entry__content {
  padding-bottom: 80px;
}

.breadcrumb-trail {
  margin-bottom: 0.9rem;
}

.breadcrumb-trail ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-dim);
  font-size: 0.78rem;
}

.breadcrumb-trail a {
  color: var(--color-dim);
  text-decoration: none;
}

.breadcrumb-trail a:hover,
.breadcrumb-trail a:focus-visible {
  color: var(--color-accent);
}

.breadcrumb-trail li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--color-line);
}

.breadcrumb-trail li[aria-current="page"] {
  color: var(--color-text);
  font-weight: 600;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0.7rem 0 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.entry-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 0.5rem;
  color: var(--color-line);
}

.entry-consultant-card {
  margin: 2.4rem 0;
}

.entry-consultant-card .launch-consultant-card__media::after {
  content: "Atendimento";
}

.related-articles,
.related-launches {
  border-top: 1px solid var(--color-line);
}

.page-template-template-central .site-header,
.page-template-template-crm .site-header,
.page-template-template-produtos .site-header,
.page-template-template-artigos .site-header,
.page-template-template-login .site-header,
.page-template-template-central .site-footer,
.page-template-template-crm .site-footer,
.page-template-template-produtos .site-footer,
.page-template-template-artigos .site-footer,
.page-template-template-login .site-footer {
  display: none;
}

.system-shell {
  --system-bg: var(--color-bg-soft);
  --system-surface: var(--color-panel-strong);
  --system-soft: var(--color-bg);
  --system-text: var(--color-text);
  --system-muted: var(--color-muted);
  --system-line: var(--color-line);
  display: grid;
  grid-template-columns: 68px 220px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--system-bg);
  color: var(--system-text);
  font-family: var(--font-base);
}

.system-login {
  --system-bg: var(--color-bg-soft);
  --system-surface: var(--color-panel-strong);
  --system-soft: var(--color-bg);
  --system-text: var(--color-text);
  --system-muted: var(--color-muted);
  --system-line: var(--color-line);
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(20px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(34, 94, 72, 0.13), transparent 38%),
    linear-gradient(315deg, rgba(192, 128, 58, 0.12), transparent 36%),
    var(--system-bg);
  color: var(--system-text);
  font-family: var(--font-base);
}

.system-login__panel {
  display: grid;
  width: min(100%, 460px);
  gap: 18px;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--system-surface) 94%, transparent);
  padding: clamp(22px, 5vw, 34px);
  box-shadow: 0 24px 70px rgba(32, 28, 22, 0.14);
}

.system-login__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.system-login__brand .system-brand {
  width: 44px;
  height: 44px;
  min-height: 44px;
}

.system-login__brand div,
.system-login__copy {
  display: grid;
  gap: 4px;
}

.system-login__brand span,
.system-login__copy p {
  color: var(--system-muted);
}

.system-login__brand span {
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.system-login__brand strong {
  color: var(--system-text);
  font-size: 1rem;
}

.system-login__copy {
  padding-top: 6px;
}

.system-login__copy h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.35rem);
  line-height: 1.03;
}

.system-login__copy p {
  margin: 0;
  line-height: 1.55;
}

.system-login-form {
  display: grid;
  gap: 12px;
}

.system-login-form .system-primary-button {
  width: 100%;
  justify-content: center;
  min-height: 46px;
}

.system-login__remember {
  margin: 2px 0 4px;
}

.system-global-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-height: 100vh;
  padding: 18px 8px 14px;
  background: var(--color-accent);
  color: var(--color-accent-contrast);
}

.system-brand {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
}

.system-global-nav {
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
  gap: 7px;
}

.system-global-item {
  display: flex;
  width: 100%;
  min-height: 52px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 700;
  text-decoration: none;
}

.system-global-item svg {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.system-global-item span {
  display: block;
}

.system-global-settings,
.system-global-logout {
  flex: 0 0 auto;
}

.system-global-item:hover,
.system-global-item.active {
  background: rgba(32, 28, 22, 0.2);
  color: #fff;
}

.system-global-logout:hover,
.system-global-logout:focus-visible {
  background: rgba(157, 47, 47, 0.45);
  color: #fff;
}

.system-module-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100vh;
  padding: 24px 14px;
  overflow-y: auto;
  border-right: 1px solid var(--system-line);
  background: var(--system-surface);
}

.system-module-title {
  display: grid;
  gap: 3px;
  padding: 3px 10px 13px;
  border-bottom: 1px solid var(--system-line);
}

.system-module-title strong {
  font-size: 1.08rem;
}

.system-module-title span,
.system-module-footer,
.system-panel-header p,
.system-metric span,
.system-metric small,
.system-table span {
  color: var(--system-muted);
}

.system-module-title span,
.system-module-footer {
  font-size: 0.74rem;
}

.system-nav-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.system-nav-item {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--system-muted);
  text-decoration: none;
}

.system-nav-item.active,
.system-nav-item:hover {
  background: color-mix(in srgb, var(--color-accent) 12%, var(--system-surface));
  color: var(--color-accent);
}

.system-nav-item.disabled {
  cursor: default;
  opacity: 0.58;
}

.system-module-footer {
  margin-top: auto;
  padding: 8px 10px;
}

.is-tab-hidden {
  display: none !important;
}

.system-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.system-dashboard-panel {
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: var(--system-surface);
  padding: 16px;
}

.system-dashboard-panel h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.system-dashboard-panel > p {
  margin: 0 0 12px;
  color: var(--system-muted);
  font-size: 0.78rem;
}

.system-sparkline {
  display: block;
  width: 100%;
  height: 90px;
}

.system-sparkline rect {
  fill: var(--color-accent);
  opacity: 0.85;
}

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

.system-ranking-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  padding: 9px 12px;
}

.system-ranking-item a {
  color: var(--system-text);
  font-weight: 650;
  font-size: 0.86rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.system-ranking-item a:hover,
.system-ranking-item a:focus-visible {
  color: var(--color-accent);
}

.system-ranking-item strong {
  flex: 0 0 auto;
  color: var(--system-text);
  font-size: 0.9rem;
}

.system-ranking-item small {
  display: block;
  color: var(--system-muted);
  font-size: 0.7rem;
}

.system-ranking-empty {
  color: var(--system-muted);
  font-size: 0.82rem;
}

.system-workspace {
  min-width: 0;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.system-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--system-line);
  background: var(--system-surface);
}

.system-topbar-heading {
  display: grid;
  min-width: 220px;
  gap: 12px;
}

.system-breadcrumb {
  color: var(--color-accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.system-breadcrumb b {
  margin-inline: 6px;
  color: var(--system-muted);
}

.system-topbar h1 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
}

.system-topbar p {
  margin: 4px 0 0;
  color: var(--system-muted);
  font-size: 0.8rem;
}

.system-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.system-content {
  display: grid;
  gap: 18px;
  padding: 24px;
}

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

.system-metric,
.system-panel {
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: var(--system-surface);
}

.system-metric {
  display: grid;
  min-width: 0;
  gap: 7px;
  padding: 16px;
}

.system-metric span,
.system-metric small,
.system-table th {
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.system-metric strong {
  overflow: hidden;
  font-size: 1.22rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.system-panel {
  padding: 18px;
}

.system-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -18px -18px 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--system-line);
}

.system-panel-header h2 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

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

.system-form .system-panel-header,
.system-form-actions,
.system-check {
  grid-column: 1 / -1;
}

.system-filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 220px) auto;
  align-items: end;
  gap: 12px;
}

.system-field {
  display: grid;
  gap: 7px;
  color: var(--system-muted);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.system-field input,
.system-field select,
.system-field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: var(--system-surface);
  color: var(--system-text);
  padding: 0 12px;
  font: inherit;
  font-weight: 400;
  text-transform: none;
}

.system-field textarea {
  min-height: 118px;
  padding-block: 10px;
  resize: vertical;
}

.system-image-field {
  align-content: start;
}

.system-image-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.system-image-actions .system-secondary-button {
  min-height: 36px;
  padding-inline: 12px;
}

.system-image-preview-wrap,
.system-gallery-card__preview {
  position: relative;
  display: block;
  width: min(180px, 100%);
}

.system-image-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: var(--system-soft);
  object-fit: cover;
}

.system-image-preview[src=""],
.system-image-preview:not([src]) + .system-image-remove,
.system-image-preview[src=""] + .system-image-remove,
.system-gallery-card__image:not([src]) + .system-image-remove,
.system-gallery-card__image[src=""] + .system-image-remove {
  display: none;
}

.system-image-remove {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 2;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(32, 28, 22, 0.78);
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 150ms ease, transform 150ms ease, background-color 150ms ease;
}

.system-image-preview-wrap:hover .system-image-remove,
.system-image-preview-wrap:focus-within .system-image-remove,
.system-gallery-card__preview:hover .system-image-remove,
.system-gallery-card__preview:focus-within .system-image-remove {
  opacity: 1;
  transform: translateY(0);
}

.system-image-remove:hover,
.system-image-remove:focus-visible {
  background: #9d2f2f;
}

.system-repeater {
  display: grid;
  gap: 12px;
}

.system-repeater--wide {
  grid-column: 1 / -1;
}

.system-repeater-list {
  display: grid;
  gap: 12px;
}

.system-repeater-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.system-repeater-heading span {
  color: var(--system-text);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.system-repeater-item {
  display: grid;
  gap: 12px;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: var(--system-soft);
  padding: 14px;
}

.system-repeater-item .system-field {
  width: 100%;
}

.system-repeater-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.system-repeater-item__header strong {
  color: var(--system-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.system-repeater > .system-secondary-button {
  justify-self: start;
}

.system-gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 10px;
}

.system-gallery-item {
  gap: 8px;
  padding: 9px;
  cursor: grab;
  transition: border-color 150ms ease, box-shadow 150ms ease, opacity 150ms ease, transform 150ms ease;
}

.system-gallery-item:active {
  cursor: grabbing;
}

.system-gallery-item.is-dragging {
  border-color: color-mix(in srgb, var(--color-accent) 54%, var(--system-line));
  box-shadow: 0 14px 36px rgba(32, 28, 22, 0.16);
  opacity: 0.82;
  transform: scale(0.98);
}

.system-gallery-item__header {
  align-items: start;
  gap: 8px;
}

.system-gallery-item__header strong {
  font-size: 0.74rem;
}

.system-gallery-item__header .system-text-action {
  font-size: 0.66rem;
}

.system-gallery-card {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.system-gallery-card__preview {
  width: 100%;
}

.system-gallery-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: var(--system-surface);
  object-fit: cover;
}

.system-gallery-card__image[src=""] {
  display: none;
}

.system-gallery-card span {
  color: var(--system-muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.system-field--wide {
  grid-column: 1 / -1;
}

.system-field small {
  color: var(--system-muted);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
}

.system-editor .wp-editor-wrap,
.system-editor .wp-editor-container {
  border-radius: 8px;
}

.system-editor .wp-editor-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--system-line);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: var(--system-soft);
  padding: 6px 8px;
}

.system-editor .wp-editor-tabs {
  display: flex;
  gap: 4px;
}

.system-editor .wp-switch-editor {
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--system-muted);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
  padding: 5px 10px;
}

.system-editor .wp-switch-editor.wp-tab-active {
  border-color: var(--system-line);
  background: var(--system-surface);
  color: var(--system-text);
}

.system-editor .wp-media-buttons .button {
  border: 1px solid var(--system-line);
  border-radius: 6px;
  background: var(--system-surface);
  color: var(--system-text);
  font-weight: 650;
  box-shadow: none;
}

.system-editor .wp-editor-container {
  border: 1px solid var(--system-line);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background: var(--system-surface);
}

.system-editor .mce-toolbar-grp,
.system-editor .mce-statusbar {
  background: var(--system-surface);
  border-color: var(--system-line);
}

.system-editor .mce-btn button,
.system-editor .mce-ico,
.system-editor .mce-txt {
  color: var(--system-text);
}

.system-editor .mce-btn.mce-active button,
.system-editor .mce-btn button:hover {
  border-radius: 6px;
  background: var(--system-soft);
}

.system-editor .wp-editor-area {
  border: none;
  font-family: var(--font-base);
  color: var(--system-text);
  background: var(--system-surface);
}

.system-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: var(--system-text);
  font-weight: 650;
}

.system-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--color-accent);
}

.system-form-actions {
  display: flex;
  justify-content: flex-end;
}

.system-filter-actions,
.system-status-form {
  display: flex;
  align-items: end;
  gap: 10px;
}

.system-primary-button,
.system-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 750;
  text-decoration: none;
}

.system-primary-button {
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: var(--color-accent-contrast);
}

.system-secondary-button {
  border: 1px solid var(--system-line);
  background: var(--system-surface);
  color: var(--system-text);
}

.system-primary-button.is-processing,
.system-secondary-button.is-processing {
  opacity: 0.72;
  cursor: progress;
}

.system-primary-button.is-processing::before,
.system-secondary-button.is-processing::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: system-spin 720ms linear infinite;
}

@keyframes system-spin {
  to {
    transform: rotate(360deg);
  }
}

.system-toast-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
  width: min(340px, calc(100vw - 28px));
  pointer-events: none;
}

.system-toast {
  border: 1px solid var(--system-line, rgba(38, 31, 22, 0.13));
  border-left: 4px solid #216b3f;
  border-radius: 8px;
  background: var(--system-surface, #fff);
  color: var(--system-text, #201c16);
  padding: 12px 14px;
  box-shadow: 0 18px 54px rgba(32, 28, 22, 0.18);
  font-size: 0.84rem;
  font-weight: 750;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.system-toast--error {
  border-left-color: #9d2f2f;
}

.system-toast.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
}

.system-table-wrap {
  padding: 0;
  overflow: hidden;
}

.system-table-wrap .system-panel-header {
  margin: 0;
  padding: 18px;
}

.system-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  table-layout: fixed;
}

.system-table th,
.system-table td {
  padding: 12px 13px;
  border-bottom: 1px solid var(--system-line);
  text-align: left;
  vertical-align: middle;
}

.system-table th {
  color: var(--system-muted);
}

.system-table td {
  color: var(--system-text);
}

.system-table td strong,
.system-table td span {
  overflow-wrap: anywhere;
}

.lead-name-link,
.lead-copy-link {
  color: var(--system-text);
  font: inherit;
  font-weight: 800;
}

.lead-name-link {
  text-decoration: none;
}

.lead-name-link:hover,
.lead-name-link:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-copy-link {
  display: inline;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: copy;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--color-accent) 44%, transparent);
  text-underline-offset: 3px;
}

.lead-copy-link:hover,
.lead-copy-link:focus-visible {
  color: var(--color-accent);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-accent) 14%, transparent);
  color: var(--color-accent);
  padding: 0 9px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-pill--em_atendimento {
  background: rgba(34, 113, 177, 0.12);
  color: #22638f;
}

.status-pill--tentando_contato {
  background: rgba(190, 130, 20, 0.13);
  color: #8a5a11;
}

.status-pill--qualificado {
  background: rgba(80, 74, 180, 0.12);
  color: #514aa6;
}

.status-pill--aprovado {
  background: rgba(33, 107, 63, 0.12);
  color: #216b3f;
}

.status-pill--perdido {
  background: rgba(157, 47, 47, 0.12);
  color: #9d2f2f;
}

.system-text-action {
  color: var(--color-accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.system-inline-form {
  display: inline-flex;
  margin: 0 0 0 8px;
}

.system-inline-form button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.system-text-action--danger,
.system-danger-button {
  color: #9d2f2f;
}

.system-danger-button {
  border-color: rgba(157, 47, 47, 0.24);
}

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

.system-detail-grid article {
  display: grid;
  min-width: 0;
  gap: 5px;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  padding: 12px;
}

.system-detail-grid span {
  color: var(--system-muted);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.system-detail-grid strong {
  overflow-wrap: anywhere;
}

.system-detail-grid--drawer {
  grid-template-columns: 1fr;
}

.system-status-form {
  margin-top: 14px;
}

.system-status-form .system-field {
  min-width: 220px;
}

.lead-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  pointer-events: none;
}

.lead-drawer__backdrop {
  display: block;
  background: rgba(32, 28, 22, 0.32);
  pointer-events: auto;
}

.lead-drawer__panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  max-height: 100vh;
  border-left: 1px solid var(--system-line);
  background: var(--system-surface);
  box-shadow: -20px 0 70px rgba(32, 28, 22, 0.18);
  pointer-events: auto;
}

.lead-drawer__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--system-line);
}

.lead-drawer__header h2 {
  margin: 8px 0 0;
  font-size: 1.22rem;
  font-weight: 800;
}

.lead-drawer__close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  color: var(--system-text);
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
}

.lead-drawer__body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 22px 22px;
  overflow-y: auto;
}

.product-drawer {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 720px);
}

.product-drawer__panel {
  grid-template-rows: none;
  align-content: start;
  gap: 14px;
  padding: 18px 22px 22px;
  overflow-y: auto;
}

.product-drawer__panel .system-panel-header {
  position: sticky;
  top: -18px;
  z-index: 2;
  margin: -18px -22px 4px;
  padding: 18px 22px;
  background: var(--system-surface);
}

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

.lead-card-summary small,
.lead-notes-preview p,
.lead-wasuite-form p {
  color: var(--system-muted);
}

.lead-card-actions,
.lead-wasuite-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-card-actions .system-primary-button,
.lead-card-actions .system-secondary-button,
.lead-card-actions form,
.lead-wasuite-form .system-secondary-button {
  flex: 1 1 160px;
}

.lead-card-actions form {
  display: flex;
}

.lead-card-actions form .system-primary-button {
  width: 100%;
}

.lead-wasuite-form {
  display: grid;
  border-top: 1px solid var(--system-line);
  padding-top: 14px;
}

.lead-wasuite-form h3 {
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.lead-wasuite-form p {
  margin: 0;
  font-size: 0.78rem;
}

.lead-wasuite-form button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.system-status-form--drawer {
  display: grid;
  align-items: stretch;
}

.system-status-form--drawer .system-field {
  min-width: 0;
}

.lead-notes-preview {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--system-line);
  padding-top: 14px;
}

.lead-notes-preview h3 {
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.lead-notes-preview p {
  margin: 0;
  font-size: 0.78rem;
}

.lead-notes-preview textarea,
.lead-note-form textarea {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: var(--system-soft);
  color: var(--system-muted);
  padding: 12px;
  font: inherit;
}

.lead-note-form {
  display: grid;
  gap: 10px;
}

.lead-note-form .system-primary-button {
  justify-self: end;
}

.lead-notes-list {
  display: grid;
  gap: 10px;
}

.lead-note {
  display: grid;
  gap: 8px;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  padding: 11px;
  background: var(--system-soft);
}

.lead-note--status,
.lead-note--follow_up,
.lead-note--whatsapp,
.lead-note--wasuite {
  border-left: 3px solid var(--color-accent);
}

.lead-note div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lead-note strong {
  font-size: 0.82rem;
}

.lead-note span {
  color: var(--system-muted);
  font-size: 0.7rem;
}

.lead-note p {
  margin: 0;
  color: var(--system-text);
  white-space: pre-wrap;
}

@media (max-width: 1024px) {
  :root {
    --shell: 920px;
  }

  .hero {
    min-height: 520px;
  }

  h1 {
    font-size: clamp(2.25rem, 5.4vw, 3.55rem);
  }

  .benefits-grid {
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1fr);
    grid-template-areas:
      "intro item-one"
      "intro item-two"
      "intro item-three";
    align-items: start;
  }

  .system-shell {
    grid-template-columns: 64px 190px minmax(0, 1fr);
  }

  .system-summary-grid {
    grid-template-columns: 1fr;
  }

  .system-form {
    grid-template-columns: 1fr;
  }

  .system-filter-bar,
  .system-detail-grid {
    grid-template-columns: 1fr;
  }

  .system-filter-actions,
  .system-status-form {
    align-items: stretch;
    flex-wrap: wrap;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 88px 0 46px;
  }

  .hero__grid,
  .split-grid,
  .contact-grid,
  .posts-grid,
  .launch-card-grid,
  .launch-hero__grid,
  .launch-consultant-card,
  .launch-media-grid,
  .entry-layout,
  .form-row,
  .system-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .entry-cta,
  .entry__content {
    grid-column: 1;
    grid-row: auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "item-one"
      "item-two"
      "item-three";
    gap: 1.2rem;
  }

  .hero__content {
    padding-top: 24px;
  }

  h1 {
    font-size: clamp(2.12rem, 9vw, 3.25rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.35rem, 6vw, 2.1rem);
  }

  .benefits-grid article {
    border-top: 1px solid var(--color-line);
    padding-top: 1rem;
  }

  .benefits-grid {
    align-items: start;
  }

  .launch-hero {
    min-height: auto;
    padding: 88px 0 42px;
  }

  .launch-hero__facts,
  .launch-spec-grid,
  .launch-amenities-list,
  .launch-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    flex-direction: column;
  }

  .entry-cta {
    position: static;
  }

  .system-shell {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .system-global-sidebar {
    position: sticky;
    top: 0;
    min-height: 100vh;
    padding-inline: 5px;
  }

  .system-global-item {
    min-height: 46px;
  }

  .system-global-item {
    font-size: 0;
  }

  .system-module-sidebar {
    display: none;
  }

  .system-workspace {
    height: auto;
    min-height: 100vh;
  }

  .system-topbar {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 18px 14px;
  }

  .system-content {
    padding: 14px;
  }

  .system-table-wrap {
    overflow: visible;
  }

  .system-table,
  .system-table thead,
  .system-table tbody,
  .system-table tr,
  .system-table th,
  .system-table td {
    display: block;
    width: 100%;
  }

  .system-table {
    table-layout: auto;
  }

  .system-table thead {
    display: none;
  }

  .system-table tbody {
    display: grid;
    gap: 10px;
    padding: 12px;
  }

  .system-table tr {
    display: grid;
    gap: 10px;
    border: 1px solid var(--system-line);
    border-radius: 8px;
    background: var(--system-surface);
    padding: 12px;
  }

  .system-table td {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    border: 0;
    padding: 0;
    white-space: normal;
  }

  .system-table td::before {
    color: var(--system-muted);
    font-size: 0.68rem;
    font-weight: 750;
    text-transform: uppercase;
  }

  .system-table td:nth-child(1)::before {
    content: "Data";
  }

  .system-table td:nth-child(2)::before {
    content: "Nome";
  }

  .system-table td:nth-child(3)::before {
    content: "Contato";
  }

  .system-table td:nth-child(4)::before {
    content: "Canal";
  }

  .system-table td:nth-child(5)::before {
    content: "Horario";
  }

  .system-table td:nth-child(6)::before {
    content: "Status";
  }

  .system-table td:nth-child(7)::before {
    content: "Acao";
  }

  .system-table td[data-label]::before {
    content: attr(data-label);
  }

  .lead-drawer {
    grid-template-columns: 1fr;
  }

  .lead-drawer__backdrop {
    display: none;
  }

  .lead-drawer__panel {
    width: 100%;
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 28px, var(--shell));
  }

  .section {
    padding-block: 38px;
  }

  .hero {
    padding: 66px 0 28px;
    background-position: center top;
  }

  .hero__grid {
    gap: 0.9rem;
  }

  .hero p {
    font-size: 0.86rem;
    margin-bottom: 0.85rem;
  }

  h1 {
    margin-bottom: 0.68rem;
    font-size: clamp(1.82rem, 9.7vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.22rem, 5.8vw, 1.86rem);
  }

  .site-header__inner {
    min-height: 54px;
  }

  .brand__text {
    max-width: 120px;
    line-height: 1.1;
  }

  .lead-card {
    padding: 0.9rem;
  }

  .lead-card h2 {
    font-size: 0.96rem;
  }

  .benefits-grid {
    gap: 0.82rem;
  }

  .benefits-grid article {
    padding-top: 0.72rem;
  }

  .benefits-grid article span {
    margin-bottom: 0.28rem;
    font-size: 1.18rem;
  }

  .split-grid {
    gap: 1rem;
  }

  .media-frame img,
  .media-frame--illustration img {
    aspect-ratio: 4 / 3;
  }

  .cta-band {
    padding-block: 18px;
  }

  .project-placeholder {
    min-height: auto;
    margin-top: 1rem;
    padding: 1rem 0;
  }

  .launch-card-grid--home {
    margin-top: 1rem;
  }

  .launch-hero__facts,
  .launch-spec-grid,
  .launch-amenities-list,
  .launch-gallery-grid {
    grid-template-columns: 1fr;
  }

  .launch-lightbox {
    padding: 64px 16px 72px;
  }

  .launch-lightbox__image {
    max-height: calc(100vh - 150px);
  }

  .launch-lightbox__close,
  .launch-lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.55rem;
  }

  .launch-lightbox__close {
    top: 14px;
    right: 14px;
  }

  .launch-lightbox__nav--prev {
    left: 14px;
  }

  .launch-lightbox__nav--next {
    right: 14px;
  }

  .launch-archive-hero {
    padding: 88px 0 38px;
  }

  .check-list {
    gap: 0.45rem;
    margin-top: 0.9rem;
  }

  .article-card {
    margin-top: 1rem;
  }

  .faq h2 {
    margin-bottom: 1rem;
  }

  .lead-card--center {
    padding: 1rem;
  }

  .search-form {
    display: grid;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 0.4rem;
  }
}
