:root {
  --wb-brown-900: #34201a;
  --wb-brown-800: #4b2f27;
  --wb-brown-700: #6a4134;
  --wb-brown-600: #84513d;
  --wb-bronze: #b98652;
  --wb-gold-soft: #d8b07c;
  --wb-cream: #f7f1e8;
  --wb-ivory: #fffaf4;
  --wb-mauve: #d8c1c0;
  --wb-charcoal: #22201f;
  --wb-muted: #675d59;
  --wb-border: rgba(52, 32, 26, 0.12);
  --wb-shadow: 0 22px 50px rgba(41, 29, 22, 0.12);
  --wb-radius-lg: 28px;
  --wb-radius-md: 20px;
  --wb-radius-sm: 14px;
  --wb-container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wb-charcoal);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(185, 134, 82, 0.18), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(132, 81, 61, 0.12), transparent 25%),
    linear-gradient(180deg, #f5ece1 0%, #f7f2eb 42%, #fbf8f3 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

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

.wb-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 244, 0.92);
  border-bottom: 1px solid rgba(52, 32, 26, 0.08);
}

.wb-topbar {
  background: var(--wb-brown-900);
  color: rgba(255, 250, 244, 0.84);
  font-size: 0.92rem;
}

.wb-topbar__inner,
.wb-header__inner,
.wb-button-group,
.wb-card-actions {
  display: flex;
  align-items: center;
}

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

.wb-topbar__inner p {
  margin: 0;
}

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

.wb-topbar__meta a {
  text-decoration: none;
}

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

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

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

.wb-site-title,
.wb-primary-nav a,
.wb-footer__list a {
  text-decoration: none;
}

.wb-site-title,
.wb-site-footer h2,
.wb-hero h1,
.wb-page-hero h1,
.wb-section__title,
.wb-lead-card h3,
.wynn-form__title {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.wb-site-title {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wb-brown-900);
}

.wb-site-tagline {
  margin: 0.12rem 0 0;
  color: var(--wb-muted);
  font-size: 0.92rem;
}

.wb-primary-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

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

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

.wb-primary-nav .wb-button {
  color: var(--wb-ivory);
}

.wb-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--wb-border);
  border-radius: 14px;
  background: transparent;
  padding: 0.7rem;
}

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

.wb-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.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--wb-brown-900);
  color: var(--wb-ivory);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
  cursor: pointer;
}

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

.wb-button--small {
  min-height: 42px;
  padding-inline: 1.05rem;
}

.wb-button--secondary,
.is-style-outline .wp-block-button__link,
.wb-card-actions a:nth-child(2) {
  background: rgba(255, 250, 244, 0.72);
  color: var(--wb-charcoal);
  border-color: var(--wb-border);
}

.wb-button--ghost {
  background: transparent;
  color: var(--wb-charcoal);
  border-color: var(--wb-border);
}

.wb-button-group {
  flex-wrap: wrap;
  gap: 0.9rem;
}

.wb-hero {
  padding: 3.5rem 0 1.8rem;
}

.wb-hero__stack {
  display: grid;
  gap: 1.4rem;
  justify-items: center;
}

.wb-hero__copy,
.wb-hero__visual,
.wb-hero__summary,
.wb-page-content .wb-section,
.wynn-form,
.wb-lead-card,
.wb-stat-card,
.wb-panel {
  border-radius: var(--wb-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 250, 244, 0.8);
  box-shadow: var(--wb-shadow);
  backdrop-filter: blur(16px);
}

.wb-hero__copy {
  padding: 3rem;
}

.wb-hero__summary {
  width: min(100%, 860px);
  padding: 2rem 2.2rem;
  text-align: center;
}

.wb-hero__eyebrow {
  text-align: center;
}

.wb-eyebrow,
.wb-section__eyebrow,
.wb-footer__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--wb-brown-700);
}

.wb-hero h1,
.wb-page-hero h1 {
  margin: 0.65rem 0 1rem;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.97;
  max-width: 12ch;
  color: var(--wb-brown-900);
}

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

.wb-hero__support {
  max-width: 39rem;
  margin: 1rem 0 0;
  color: var(--wb-charcoal);
  font-size: 1rem;
}

.wb-hero__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  min-height: 560px;
  padding: 1.6rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(246, 229, 205, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(91, 58, 45, 0.22), rgba(248, 240, 229, 0.66) 42%, rgba(255, 250, 244, 0.9) 100%),
    rgba(255, 250, 244, 0.75);
}

.wb-hero__visual--centered {
  width: min(100%, 760px);
  min-height: auto;
  justify-content: center;
}

.wb-hero__visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(106, 65, 52, 0.1);
}

.wb-hero__visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 108px;
  background:
    linear-gradient(180deg, rgba(90, 53, 42, 0), rgba(90, 53, 42, 0.04)),
    linear-gradient(90deg, rgba(90, 53, 42, 0.03), rgba(216, 176, 124, 0.06));
}

.wb-hero__parlor {
  position: relative;
  z-index: 1;
  width: min(100%, 410px);
  margin: 2.8rem auto 0;
}

.wb-hero__parlor-arch {
  position: relative;
  width: 100%;
  min-height: 360px;
  padding: 1.4rem;
  border: 1px solid rgba(82, 53, 41, 0.22);
  border-radius: 220px 220px 28px 28px;
  background:
    linear-gradient(180deg, rgba(88, 56, 45, 0.34), rgba(255, 250, 244, 0.08) 32%),
    rgba(206, 178, 153, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 24px 36px rgba(71, 46, 36, 0.12);
}

.wb-hero__parlor-arch::before {
  content: "";
  position: absolute;
  inset: 1.05rem;
  border-radius: 200px 200px 22px 22px;
  border: 1px solid rgba(93, 57, 42, 0.08);
}

.wb-hero__parlor-glow {
  position: relative;
  height: 328px;
  border-radius: 180px 180px 18px 18px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 237, 202, 0.96), rgba(223, 179, 128, 0.82) 34%, rgba(127, 84, 61, 0.58) 72%, rgba(73, 47, 38, 0.92) 100%),
    rgba(198, 153, 110, 0.92);
}

.wb-hero__parlor-line {
  position: absolute;
  left: 50%;
  top: 3rem;
  bottom: 3rem;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(140, 100, 73, 0), rgba(140, 100, 73, 0.42) 18%, rgba(255, 232, 185, 0.95) 50%, rgba(140, 100, 73, 0.42) 82%, rgba(140, 100, 73, 0));
  box-shadow: 0 0 20px rgba(255, 217, 150, 0.62);
}

.wb-hero__interior {
  position: absolute;
  left: 50%;
  top: 55%;
  z-index: 2;
  width: min(58%, 248px);
  padding: 0.95rem 0.85rem 0.9rem;
  border-radius: 16px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(180deg, rgba(252, 237, 208, 0.92), rgba(239, 205, 163, 0.9)),
    rgba(255, 246, 232, 0.94);
  box-shadow:
    0 0 34px rgba(255, 205, 128, 0.34),
    0 18px 34px rgba(81, 48, 37, 0.16);
  text-align: center;
}

.wb-hero__interior-label {
  margin: 0 0 0.7rem;
  color: var(--wb-brown-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wb-hero__service-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wb-hero__service-list li {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(90, 53, 42, 0.09);
  color: var(--wb-brown-900);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.wb-hero__caption {
  margin: 0.95rem 0 0;
  text-align: center;
  color: var(--wb-charcoal);
  font-size: 0.93rem;
  line-height: 1.5;
}

.wb-hero__lede--centered {
  margin: 0 auto;
}

.wb-hero__badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  z-index: 2;
  max-width: 260px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 16px 34px rgba(52, 32, 26, 0.12);
}

.wb-button-group--centered {
  justify-content: center;
  margin-top: 1.15rem;
}

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

.wb-hero__badge span {
  color: var(--wb-muted);
  font-size: 0.92rem;
}

.wb-hero__badge strong {
  margin-top: 0.2rem;
  font-size: 1rem;
  color: var(--wb-brown-900);
}

.wb-page-hero {
  padding: 2.8rem 0 0.8rem;
}

.wb-page-hero__inner {
  padding: 2rem 0 1rem;
}

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

.wb-page-content--front {
  padding-top: 0.3rem;
}

.wb-page-content .wb-section,
.wb-page-content .wynn-form {
  margin-top: 1.35rem;
}

.wb-section {
  padding: 2.3rem;
}

.wb-section--accent {
  background:
    linear-gradient(135deg, rgba(185, 134, 82, 0.12), rgba(255, 250, 244, 0.78)),
    rgba(255, 250, 244, 0.82);
}

.wb-section__title,
.wynn-form__title,
.wb-panel h3,
.wb-lead-card h3,
.wb-stat-card h3,
.wb-site-footer h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.03;
  color: var(--wb-brown-900);
}

.wb-section p,
.wb-section li,
.wb-panel p,
.wb-panel li,
.wynn-form__intro,
.wynn-form__notice,
.wb-site-footer p,
.wb-site-footer li,
.wynn-form label,
.wynn-form legend {
  color: var(--wb-muted);
}

.wb-grid,
.wb-card-grid,
.wb-stat-grid,
.wb-support-grid,
.wynn-form__grid {
  display: grid;
  gap: 1.1rem;
}

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

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

.wb-lead-card,
.wb-stat-card,
.wb-panel {
  padding: 1.4rem;
}

.wb-lead-card h3,
.wb-stat-card h3,
.wb-panel h3 {
  font-size: 1.4rem;
}

.wb-lead-card:first-child {
  border-color: rgba(185, 134, 82, 0.42);
  box-shadow: 0 18px 40px rgba(106, 65, 52, 0.16);
}

.wb-card-actions {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.wb-service-list,
.wb-checklist,
.wb-columns-list {
  columns: 2;
  gap: 1.5rem;
  padding-left: 1.15rem;
}

.wb-service-list li,
.wb-checklist li,
.wb-columns-list li,
.wb-footer__list li {
  break-inside: avoid;
  margin-bottom: 0.55rem;
}

.wb-disclaimer {
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--wb-radius-sm);
  background: rgba(216, 193, 192, 0.22);
  border-left: 4px solid var(--wb-bronze);
  color: var(--wb-charcoal);
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 52rem;
}

.wb-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.wynn-form {
  padding: 2rem;
}

.wynn-form__title {
  font-size: 2rem;
}

.wynn-form__notice {
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--wb-radius-sm);
  background: rgba(185, 134, 82, 0.14);
  color: var(--wb-charcoal);
  font-size: 0.84rem;
  line-height: 1.45;
}

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

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

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

.wynn-form label,
.wynn-form legend {
  font-size: 0.95rem;
  font-weight: 700;
}

.wynn-form input,
.wynn-form select,
.wynn-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(52, 32, 26, 0.16);
  background: #fffdfa;
  color: var(--wb-charcoal);
  font: inherit;
}

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

.wynn-form__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.wynn-form__small {
  font-size: 0.88rem;
}

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

.wb-site-footer {
  padding: 2rem 0 1rem;
  background: var(--wb-brown-900);
  color: rgba(255, 250, 244, 0.82);
}

.wb-site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.9fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

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

.wb-footer__list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
}

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

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

.wb-page-content h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 2rem;
}

.wb-page-content .alignwide {
  width: 100%;
}

.wb-chatbox {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  width: min(100% - 1.4rem, 370px);
}

.wb-chatbox__toggle {
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 18px 36px rgba(52, 32, 26, 0.22);
}

.wb-chatbox__panel {
  margin-top: 0.75rem;
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 22px 48px rgba(52, 32, 26, 0.18);
  backdrop-filter: blur(16px);
}

.wb-chatbox__header h2 {
  margin: 0.4rem 0 0.4rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.05;
  color: var(--wb-brown-900);
}

.wb-chatbox__header p,
.wb-chatbox__response p,
.wb-chatbox__footer a,
.wb-chatbox__back {
  color: var(--wb-muted);
}

.wb-chatbox__start {
  display: grid;
  gap: 1rem;
}

.wb-chatbox__ask-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
}

.wb-chatbox__input {
  width: 100%;
  min-height: 46px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(52, 32, 26, 0.12);
  border-radius: 16px;
  background: rgba(255, 250, 244, 0.92);
  color: var(--wb-charcoal);
  font: inherit;
}

.wb-chatbox__input::placeholder {
  color: var(--wb-muted);
}

.wb-chatbox__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.wb-chatbox__suggestion {
  min-height: 36px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(52, 32, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.8);
  color: var(--wb-charcoal);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.wb-chatbox__suggestion:hover,
.wb-chatbox__suggestion:focus-visible {
  background: rgba(216, 176, 124, 0.16);
}

.wb-chatbox__choices {
  display: grid;
  gap: 0.65rem;
}

.wb-chatbox__choice {
  justify-content: flex-start;
  width: 100%;
  min-height: 46px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(52, 32, 26, 0.1);
  background: rgba(255, 250, 244, 0.72);
  color: var(--wb-charcoal);
  font-weight: 700;
  text-align: left;
}

.wb-chatbox__choice:hover,
.wb-chatbox__choice:focus-visible {
  background: rgba(216, 176, 124, 0.18);
  transform: translateY(-1px);
}

.wb-chatbox__response h3 {
  margin: 0.35rem 0 0.4rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.08;
  color: var(--wb-brown-900);
}

.wb-chatbox__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.wb-chatbox__back {
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.wb-chatbox__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(52, 32, 26, 0.08);
  font-size: 0.92rem;
}

.wb-chatbox__footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .wb-hero__stack,
  .wb-card-grid,
  .wb-stat-grid,
  .wb-support-grid,
  .wb-site-footer__grid,
  .wynn-form__grid {
    grid-template-columns: 1fr;
  }

  .wb-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, 244, 0.98);
    border-bottom: 1px solid var(--wb-border);
  }

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

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

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

  .wb-service-list,
  .wb-checklist,
  .wb-columns-list {
    columns: 1;
  }
}

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

  .wb-topbar__inner,
  .wb-header__inner,
  .wb-site-footer__bar,
  .wynn-form__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .wb-hero,
  .wb-page-hero {
    padding-top: 1.4rem;
  }

  .wb-hero__summary,
  .wb-section,
  .wynn-form,
  .wb-hero__visual {
    padding: 1.35rem;
  }

  .wb-hero__visual {
    min-height: 420px;
    padding: 0.8rem 0.8rem 0;
  }

  .wb-hero__parlor {
    width: min(100%, 348px);
    margin-top: 2.2rem;
  }

  .wb-hero__parlor-arch {
    min-height: 300px;
    border-radius: 180px 180px 22px 22px;
  }

  .wb-hero__parlor-glow {
    height: 268px;
  }

  .wb-hero__interior {
    width: min(64%, 210px);
    padding: 0.8rem 0.7rem 0.75rem;
  }

  .wb-hero__service-list li {
    font-size: 0.84rem;
  }

  .wb-hero h1,
  .wb-page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .wb-chatbox {
    right: 0.7rem;
    bottom: 0.7rem;
    width: min(100% - 1rem, 360px);
  }

  .wb-chatbox__panel {
    padding: 1rem;
  }

  .wb-chatbox__ask-row {
    grid-template-columns: 1fr;
  }
}
