:root {
  --vve-terracotta-900: #4a2417;
  --vve-terracotta-800: #6a3220;
  --vve-terracotta-700: #8d4528;
  --vve-terracotta-600: #bb5a2c;
  --vve-sunset: #da8a39;
  --vve-amber: #efaa56;
  --vve-copper: #c47b47;
  --vve-bronze: #b26b3d;
  --vve-chocolate: #3b241a;
  --vve-charcoal: #241d1a;
  --vve-muted: #6f5a4d;
  --vve-cream: #fff7ef;
  --vve-ivory: #fffaf5;
  --vve-sand: #f3e3d2;
  --vve-border: rgba(74, 36, 23, 0.1);
  --vve-shadow: 0 28px 70px rgba(65, 33, 22, 0.14);
  --vve-radius-xl: 34px;
  --vve-radius-lg: 24px;
  --vve-radius-md: 18px;
  --vve-radius-sm: 12px;
  --vve-container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--vve-charcoal);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(239, 170, 86, 0.22), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(196, 123, 71, 0.14), transparent 22%),
    linear-gradient(180deg, #fff1e3 0%, #fff7ef 38%, #fffaf6 100%);
}

body.vve-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.vve-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 245, 0.9);
  border-bottom: 1px solid rgba(74, 36, 23, 0.08);
}

.vve-topbar {
  background:
    linear-gradient(90deg, rgba(74, 36, 23, 0.97), rgba(106, 50, 32, 0.96)),
    var(--vve-terracotta-900);
  color: rgba(255, 247, 239, 0.92);
  font-size: 0.92rem;
}

.vve-topbar__inner,
.vve-topbar__meta,
.vve-header__inner,
.vve-primary-nav,
.vve-hero__actions,
.vve-card-actions,
.vve-inline-cta,
.vve-form__footer,
.vve-social-links,
.vve-footer__bar {
  display: flex;
  align-items: center;
}

.vve-topbar__inner {
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.vve-topbar__inner p {
  margin: 0;
}

.vve-topbar__meta {
  flex-wrap: wrap;
  gap: 1rem;
}

.vve-topbar__meta a,
.vve-primary-nav a,
.vve-site-title,
.vve-footer__list a,
.vve-social-links a {
  text-decoration: none;
}

.vve-header__inner {
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.vve-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vve-branding__logo img {
  width: auto;
  max-height: 72px;
}

.vve-branding__logo--bundled {
  display: inline-flex;
  align-items: center;
}

.vve-branding__logo--bundled img {
  max-height: 92px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(74, 36, 23, 0.14);
}

.vve-brand-mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 221, 176, 0.9), transparent 30%),
    linear-gradient(145deg, var(--vve-sunset), var(--vve-terracotta-700));
  color: var(--vve-ivory);
  font-family: "Georgia", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 16px 30px rgba(106, 50, 32, 0.18);
}

.vve-site-title,
.vve-section__title,
.vve-hero__title,
.vve-page-hero h1,
.vve-service-card h3,
.vve-escape-card h3,
.vve-form__title,
.vve-site-footer h2,
.vve-social-card h3,
.vve-single__panel h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.vve-site-title {
  display: inline-block;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--vve-terracotta-900);
}

.vve-site-tagline {
  margin: 0.2rem 0 0;
  max-width: 48ch;
  color: var(--vve-muted);
  font-size: 0.92rem;
}

.vve-site-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.45rem 0 0;
}

.vve-site-meta span,
.vve-site-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 36, 23, 0.1);
  background: rgba(255, 247, 239, 0.82);
  color: var(--vve-terracotta-900);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vve-site-meta a {
  text-decoration: none;
}

.vve-primary-nav {
  gap: 1rem;
}

.vve-primary-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vve-primary-nav a {
  font-weight: 700;
  color: var(--vve-charcoal);
}

.vve-founder-link {
  color: var(--vve-terracotta-800);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.vve-founder-link:hover,
.vve-founder-link:focus-visible {
  color: var(--vve-terracotta-900);
}

.vve-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0.7rem;
  border-radius: 14px;
  border: 1px solid var(--vve-border);
  background: rgba(255, 247, 239, 0.8);
}

.vve-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--vve-terracotta-900);
}

.vve-button,
.wp-block-button__link,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--vve-sunset), var(--vve-terracotta-700)),
    var(--vve-sunset);
  color: var(--vve-ivory);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
  box-shadow: 0 14px 26px rgba(141, 69, 40, 0.18);
}

.vve-button:hover,
.vve-button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
button:hover,
button:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible {
  transform: translateY(-2px);
}

.vve-button--small {
  min-height: 42px;
  padding-inline: 1.1rem;
}

.vve-button--secondary,
.vve-card-actions .vve-button:nth-child(2) {
  background: rgba(255, 250, 245, 0.75);
  color: var(--vve-charcoal);
  border-color: rgba(74, 36, 23, 0.12);
  box-shadow: none;
}

.vve-button--ghost {
  background: transparent;
  color: var(--vve-charcoal);
  border-color: rgba(74, 36, 23, 0.14);
  box-shadow: none;
}

.vve-hero {
  padding: 2.2rem 0 1.2rem;
}

.vve-hero__grid,
.vve-hero__stack,
.vve-card-grid,
.vve-service-grid,
.vve-list-grid,
.vve-highlight-grid,
.vve-social-grid,
.vve-footer__grid,
.vve-single__grid,
.vve-form__grid {
  display: grid;
  gap: 1.25rem;
}

.vve-hero__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.vve-hero__content,
.vve-hero__visual,
.vve-section,
.vve-service-card,
.vve-escape-card,
.vve-social-card,
.vve-highlight-card,
.vve-form,
.vve-single__panel,
.vve-single__media,
.vve-post-card {
  border-radius: var(--vve-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 250, 245, 0.78);
  box-shadow: var(--vve-shadow);
  backdrop-filter: blur(12px);
}

.vve-hero__content {
  padding: 3.2rem;
  background:
    radial-gradient(circle at top left, rgba(239, 170, 86, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.92), rgba(250, 237, 222, 0.9)),
    rgba(255, 250, 245, 0.8);
}

.vve-hero__eyebrow,
.vve-section__eyebrow,
.vve-footer__eyebrow,
.vve-card-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--vve-terracotta-700);
}

.vve-hero__title,
.vve-page-hero h1 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.98;
  color: var(--vve-terracotta-900);
}

.vve-hero__title {
  max-width: 12ch;
}

.vve-hero__lede,
.vve-page-hero__excerpt {
  max-width: 48rem;
  font-size: 1.08rem;
  color: var(--vve-muted);
}

.vve-hero__actions,
.vve-card-actions,
.vve-inline-cta,
.vve-social-links,
.vve-form__footer {
  flex-wrap: wrap;
  gap: 0.85rem;
}

.vve-hero__actions {
  margin-top: 1.4rem;
}

.vve-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.vve-trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(218, 138, 57, 0.96), rgba(141, 69, 40, 0.96)),
    var(--vve-sunset);
  color: var(--vve-ivory);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(141, 69, 40, 0.16);
}

.vve-trust-pill--soft {
  background: rgba(255, 255, 255, 0.78);
  color: var(--vve-terracotta-900);
  border: 1px solid rgba(74, 36, 23, 0.08);
  box-shadow: none;
}

.vve-hero__badge-row {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.vve-hero__badge {
  padding: 1rem 1.1rem;
  border-radius: var(--vve-radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(74, 36, 23, 0.08);
}

.vve-hero__badge span,
.vve-hero__badge strong {
  display: block;
}

.vve-hero__badge span {
  margin-bottom: 0.22rem;
  color: var(--vve-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vve-hero__badge strong {
  color: var(--vve-charcoal);
  font-size: 0.96rem;
}

.vve-hero__visual {
  overflow: hidden;
  display: grid;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(248, 216, 178, 0.8), rgba(255, 250, 245, 0.68)),
    rgba(255, 250, 245, 0.8);
}

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

.vve-hero__panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #f6eadf;
}

.vve-hero__panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 48%),
    linear-gradient(180deg, rgba(246, 234, 223, 0.98), rgba(238, 215, 188, 0.98));
}

.vve-hero__panel--square,
.vve-hero__panel--copy {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.vve-hero__panel--square {
  padding: 0.85rem;
}

.vve-hero__panel--copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top left, rgba(239, 170, 86, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 250, 245, 0.98), rgba(248, 229, 209, 0.94)),
    rgba(255, 250, 245, 0.9);
}

.vve-hero__panel--copy h3 {
  margin: 0.35rem 0 0.55rem;
  color: var(--vve-terracotta-900);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.vve-hero__panel--copy p {
  margin: 0;
  color: var(--vve-muted);
}

.vve-hero__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(59, 36, 26, 0.72);
  color: var(--vve-ivory);
  font-size: 0.92rem;
}

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

.vve-page-hero__inner {
  padding: 1.6rem 0 0.8rem;
}

.vve-page-content {
  padding: 0 0 4rem;
}

.vve-page-content--front {
  padding-top: 0.35rem;
}

.vve-section,
.vve-form,
.vve-post-card {
  padding: 2.2rem;
}

.vve-page-content .vve-section,
.vve-page-content .vve-form,
.vve-page-content .wp-block-group,
.vve-page-content > .vve-container > p + .vve-section {
  margin-top: 1.25rem;
}

.vve-section--accent {
  background:
    linear-gradient(140deg, rgba(239, 170, 86, 0.16), rgba(255, 250, 245, 0.76)),
    rgba(255, 250, 245, 0.78);
}

.vve-section--spotlight {
  padding: 2.45rem;
  background:
    radial-gradient(circle at top right, rgba(196, 123, 71, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(255, 244, 230, 0.94), rgba(246, 225, 202, 0.92)),
    rgba(255, 250, 245, 0.82);
}

.vve-section--spotlight .vve-section__title {
  max-width: 18ch;
}

.vve-section--dark {
  background:
    linear-gradient(135deg, rgba(74, 36, 23, 0.94), rgba(106, 50, 32, 0.94)),
    var(--vve-terracotta-900);
  color: rgba(255, 250, 245, 0.92);
}

.vve-section--dark .vve-section__title,
.vve-section--dark .vve-section__eyebrow,
.vve-section--dark p,
.vve-section--dark li {
  color: rgba(255, 250, 245, 0.92);
}

.vve-section__title,
.vve-form__title,
.vve-site-footer h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  color: var(--vve-terracotta-900);
}

.vve-section p,
.vve-section li,
.vve-form__intro,
.vve-form__notice,
.vve-form__small,
.vve-social-card p,
.vve-site-footer p,
.vve-site-footer li,
.vve-page-content p,
.vve-page-content li,
.vve-single__panel p {
  color: var(--vve-muted);
}

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

.vve-service-card,
.vve-social-card,
.vve-highlight-card {
  padding: 1.45rem;
}

.vve-service-card h3,
.vve-escape-card h3,
.vve-social-card h3 {
  margin: 0.35rem 0 0.45rem;
  font-size: 1.35rem;
  line-height: 1.12;
  color: var(--vve-terracotta-900);
}

.vve-escape-card h3 a {
  color: inherit;
  text-decoration: none;
}

.vve-escape-card h3 a:hover,
.vve-escape-card h3 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.vve-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.vve-escape-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vve-escape-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0.85rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.32), transparent 50%),
    linear-gradient(180deg, rgba(246, 234, 223, 0.98), rgba(238, 215, 188, 0.98));
}

.vve-escape-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vve-escape-card__body {
  padding: 1.3rem;
}

.vve-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0;
  min-width: 0;
}

.vve-card-meta span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(239, 170, 86, 0.14);
  color: var(--vve-terracotta-800);
  font-size: 0.88rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.vve-link-note,
.vve-note,
.vve-footer__legal {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--vve-radius-sm);
  background: rgba(239, 170, 86, 0.1);
  border-left: 4px solid var(--vve-copper);
  color: var(--vve-charcoal);
  font-size: 0.86rem;
  line-height: 1.45;
}

.vve-escape-card--spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: 560px;
  border-color: rgba(196, 123, 71, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.98), rgba(251, 236, 219, 0.94)),
    rgba(255, 250, 245, 0.82);
}

.vve-escape-card--spotlight .vve-escape-card__media {
  aspect-ratio: 1 / 1;
  min-height: 100%;
}

.vve-escape-card--spotlight .vve-escape-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.vve-escape-card--spotlight h3 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.98;
}

.vve-escape-card--spotlight .vve-card-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.vve-escape-card--spotlight .vve-card-meta {
  margin: 1rem 0 1.1rem;
}

.vve-escape-card--spotlight .vve-card-meta span {
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
}

.vve-escape-card--spotlight .vve-card-actions {
  margin-top: 0.2rem;
}

.vve-escape-card--spotlight .vve-link-note {
  margin-top: 1.15rem;
}

.vve-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.vve-pill-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.vve-pill-list li {
  min-width: 0;
  padding: 0.65rem 0.9rem;
  border-radius: var(--vve-radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(74, 36, 23, 0.08);
  color: var(--vve-charcoal);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.vve-inline-cta {
  justify-content: space-between;
  margin-top: 1rem;
}

.vve-inline-cta--top {
  margin-top: 1.4rem;
}

.vve-inline-cta > div:first-child {
  max-width: 40rem;
}

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

.vve-highlight-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(249, 232, 214, 0.8)),
    rgba(255, 250, 245, 0.78);
}

.vve-highlight-card span {
  display: block;
  color: var(--vve-charcoal);
  font-weight: 700;
}

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

.vve-form {
  padding: 0;
  overflow: hidden;
}

.vve-form__title,
.vve-form__intro,
.vve-form__notice,
.vve-form__success,
.vve-form__panel {
  padding-inline: 2rem;
}

.vve-form__title {
  padding-top: 2rem;
}

.vve-form__intro {
  margin: 0.7rem 0 0;
}

.vve-form__notice,
.vve-form__success {
  margin: 1rem 2rem 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
}

.vve-form__notice {
  background: rgba(239, 170, 86, 0.14);
}

.vve-form__success {
  background: rgba(78, 138, 85, 0.12);
  color: #365938;
}

.vve-form__panel {
  padding-top: 1.2rem;
  padding-bottom: 2rem;
}

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

.vve-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vve-form__field--full {
  grid-column: 1 / -1;
}

.vve-form label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vve-charcoal);
}

.vve-form input,
.vve-form select,
.vve-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.92rem 1rem;
  border-radius: 15px;
  border: 1px solid rgba(74, 36, 23, 0.14);
  background: #fffdfa;
  color: var(--vve-charcoal);
  font: inherit;
}

.vve-form textarea {
  min-height: 150px;
  resize: vertical;
}

.vve-form__honeypot {
  position: absolute;
  left: -9999px;
}

.vve-contact-list,
.vve-footer__list {
  padding: 0;
  list-style: none;
}

.vve-contact-list li,
.vve-footer__list li {
  margin-bottom: 0.6rem;
}

.vve-social-links {
  gap: 0.75rem;
  margin-top: 1rem;
}

.vve-social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(74, 36, 23, 0.08);
  font-weight: 700;
}

.vve-site-footer {
  padding: 2rem 0 1rem;
  background:
    linear-gradient(135deg, rgba(59, 36, 26, 0.98), rgba(74, 36, 23, 0.98)),
    var(--vve-chocolate);
  color: rgba(255, 250, 245, 0.88);
}

.vve-chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 0.8rem;
  max-width: min(360px, calc(100vw - 2rem));
}

.vve-chat-widget__button,
.vve-chat-widget__close {
  font: inherit;
}

.vve-chat-widget__button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 54px;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(255, 250, 245, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--vve-terracotta-900), var(--vve-terracotta-700)),
    var(--vve-terracotta-900);
  color: var(--vve-ivory);
  box-shadow: 0 18px 38px rgba(59, 36, 26, 0.28);
}

.vve-chat-widget__dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #78d287;
  box-shadow: 0 0 0 5px rgba(120, 210, 135, 0.18);
}

.vve-chat-widget__panel {
  width: 100%;
  padding: 1.1rem;
  border: 1px solid rgba(74, 36, 23, 0.12);
  border-radius: var(--vve-radius-lg);
  background: rgba(255, 250, 245, 0.98);
  color: var(--vve-charcoal);
  box-shadow: 0 28px 70px rgba(65, 33, 22, 0.24);
}

.vve-chat-widget__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.vve-chat-widget__eyebrow {
  margin: 0 0 0.2rem;
  color: var(--vve-terracotta-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vve-chat-widget h2 {
  margin: 0;
  color: var(--vve-terracotta-900);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.vve-chat-widget p {
  margin: 0.8rem 0 0;
  color: var(--vve-muted);
  font-size: 0.94rem;
}

.vve-chat-widget__lead {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(239, 170, 86, 0.12);
  border: 1px solid rgba(196, 123, 71, 0.18);
  color: var(--vve-charcoal);
}

.vve-chat-widget__close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(74, 36, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--vve-charcoal);
  box-shadow: none;
}

.vve-chat-widget__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.vve-chat-widget__conversation {
  margin-top: 1rem;
}

.vve-chat-widget__quick-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.vve-chat-widget__chip {
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 36, 23, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--vve-terracotta-900);
  box-shadow: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.vve-chat-widget__chip.is-selected,
.vve-chat-widget__chip:hover,
.vve-chat-widget__chip:focus-visible {
  border-color: rgba(141, 69, 40, 0.26);
  background: rgba(239, 170, 86, 0.18);
  color: var(--vve-terracotta-900);
  transform: none;
}

.vve-chat-widget__form {
  margin-top: 1rem;
}

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

.vve-chat-widget__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.vve-chat-widget__field--full {
  grid-column: 1 / -1;
}

.vve-chat-widget__field label {
  color: var(--vve-charcoal);
  font-size: 0.85rem;
  font-weight: 700;
}

.vve-chat-widget__field input,
.vve-chat-widget__field select,
.vve-chat-widget__field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.82rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(74, 36, 23, 0.14);
  background: #fffdfa;
  color: var(--vve-charcoal);
  font: inherit;
}

.vve-chat-widget__field textarea {
  min-height: 120px;
  resize: vertical;
}

.vve-chat-widget__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.vve-chat-widget__footer .vve-button {
  flex: 1 1 180px;
  min-height: 44px;
  padding: 0.8rem 1rem;
}

.vve-chat-widget__tiny {
  margin-top: 0.8rem;
  font-size: 0.76rem;
  line-height: 1.45;
}

.vve-chat-widget__success {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(120, 210, 135, 0.12);
  border: 1px solid rgba(78, 138, 85, 0.2);
}

.vve-chat-widget__success p {
  margin: 0;
  color: #365938;
}

.vve-chat-widget__actions .vve-button {
  width: 100%;
  min-height: 44px;
  padding: 0.8rem 1rem;
}

.vve-chat-widget__note {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(74, 36, 23, 0.08);
  font-size: 0.78rem;
  line-height: 1.4;
}

.vve-footer__grid {
  grid-template-columns: 1.2fr 0.95fr 0.95fr;
  padding: 2rem 0;
}

.vve-site-footer h2,
.vve-site-footer h3,
.vve-site-footer a,
.vve-site-footer .vve-footer__eyebrow {
  color: var(--vve-ivory);
}

.vve-site-footer .vve-founder-link {
  color: var(--vve-amber);
}

.vve-site-footer .vve-founder-link:hover,
.vve-site-footer .vve-founder-link:focus-visible {
  color: var(--vve-ivory);
}

.vve-footer__clia {
  font-weight: 700;
}

.vve-footer__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(239, 170, 86, 0.12);
  border: 1px solid rgba(239, 170, 86, 0.26);
  color: var(--vve-ivory);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vve-footer__bar {
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 250, 245, 0.1);
  font-size: 0.9rem;
}

.vve-single__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.vve-single__media {
  overflow: hidden;
  padding: 0;
}

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

.vve-single__panel {
  padding: 2rem;
}

.vve-post-card {
  margin-top: 1rem;
}

.vve-page-content h2,
.vve-page-content h3 {
  color: var(--vve-terracotta-900);
}

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

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

@media (max-width: 1080px) {
  .vve-hero__grid,
  .vve-card-grid,
  .vve-service-grid,
  .vve-list-grid,
  .vve-highlight-grid,
  .vve-social-grid,
  .vve-footer__grid,
  .vve-single__grid,
  .vve-form__grid,
  .vve-escape-card--spotlight {
    grid-template-columns: 1fr;
  }

  .vve-hero__tile-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .vve-primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 250, 245, 0.98);
    border-bottom: 1px solid var(--vve-border);
    box-shadow: 0 24px 42px rgba(65, 33, 22, 0.14);
  }

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

  .vve-primary-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .vve-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 720px) {
  .vve-container {
    width: min(100% - 1rem, var(--vve-container));
  }

  .vve-topbar__inner,
  .vve-header__inner,
  .vve-inline-cta,
  .vve-form__footer,
  .vve-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .vve-hero {
    padding-top: 1.1rem;
  }

  .vve-hero__content,
  .vve-hero__visual,
  .vve-section,
  .vve-post-card,
  .vve-single__panel,
  .vve-form__title,
  .vve-form__intro,
  .vve-form__panel {
    padding-inline: 1.35rem;
  }

  .vve-hero__content,
  .vve-hero__visual,
  .vve-section,
  .vve-post-card,
  .vve-single__panel {
    padding-block: 1.35rem;
  }

  .vve-section--spotlight {
    padding: 1.45rem;
  }

  .vve-form__title {
    padding-top: 1.35rem;
  }

  .vve-form__notice,
  .vve-form__success {
    margin-inline: 1.35rem;
  }

  .vve-hero__title,
  .vve-page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .vve-site-tagline {
    max-width: 28ch;
  }

  .vve-chat-widget {
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: calc(100vw - 1.5rem);
  }

  .vve-chat-widget__panel {
    padding: 1rem;
  }

  .vve-hero__tile-grid {
    grid-template-columns: 1fr;
  }

  .vve-chat-widget__fields {
    grid-template-columns: 1fr;
  }
}
