:root {
  --theme-bg: #eef0e3;
  --theme-bg-soft: #f7f5ef;
  --theme-white: #ffffff;
  --theme-surface: rgba(255, 255, 255, 0.82);
  --theme-surface-strong: rgba(255, 255, 255, 0.92);
  --theme-text: #515965;
  --theme-heading: #171a1f;
  --theme-muted: #7d8490;
  --theme-border: rgba(24, 30, 36, 0.1);
  --theme-accent: #aab64f;
  --theme-accent-strong: #8d9740;
  --theme-accent-dark: #232819;
  --theme-shadow: 0 26px 64px rgba(30, 36, 25, 0.15);
  --theme-shadow-soft: 0 12px 28px rgba(30, 36, 25, 0.09);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--theme-text);
  background-color: #eef2e6;
  background-image:
    radial-gradient(circle at top left, rgba(170, 182, 79, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(125, 134, 144, 0.13), transparent 30%),
    var(--bg-image, url("https://lalanguerouge.com/wp-content/uploads/2026/01/people-in-the-office-2026-01-09-08-25-30-utc-1-1024x683.jpg"));
  background-position: center top, center top, center top;
  background-size: auto, auto, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: scroll, scroll, fixed;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 32%),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.5), transparent 24%);
  opacity: 0.55;
}

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

iframe {
  display: block;
  width: 100%;
  border: 0;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), transform var(--transition), opacity var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

a:hover {
  color: var(--theme-accent-strong);
}

.cad6a84 {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cad6a84:focus,
.cad6a35:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  z-index: 10001;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.cad6a58 {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.cad6a65 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.cad6a66,
.cad6a82,
.cad6a10,
.cad6a40,
.cad6a67,
.cad6a53,
.cad6a51 {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

#wrapper {
  position: relative;
  min-height: 100vh;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 11, 12, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.navbar.scrolled {
  background: rgba(9, 11, 12, 0.96);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.cad6a24 {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cad6a5 {
  display: flex;
  align-items: center;
  min-height: 86px;
}

.cad6a42 {
  margin: 0;
  font-size: clamp(2rem, 1.6rem + 1vw, 2.55rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}

.cad6a42 a {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.cad6a42 a:hover {
  color: #fff;
  opacity: 0.88;
}

.menu-toggle-input {
  display: none;
}

.navbar-toggler {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.navbar-toggler:hover {
  transform: translateY(-1px);
  background: rgba(170, 182, 79, 0.12);
  border-color: rgba(170, 182, 79, 0.28);
}

.navbar-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-wrap {
  display: flex;
  align-items: center;
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.navbar-nav .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--theme-accent), #ecf19c);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.navbar-nav .cad6a3 .nav-link,
.navbar-nav .cad6a61 .nav-link,
.navbar-nav .nav-link:hover {
  color: #f7f9ef;
  background: rgba(255, 255, 255, 0.05);
}

.navbar-nav .cad6a3 .nav-link::after,
.navbar-nav .cad6a61 .nav-link::after,
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

/* HERO */
.cad6a14 {
  position: relative;
  background: #17212c var(--hero-image, url("https://lalanguerouge.com/wp-content/uploads/2026/01/cropped-background-yellow-bokeh-abstract-backdrop-2025-02-22-19-47-59-utc-scaled-1.jpg")) no-repeat center center / cover;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cad6a14::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(170, 182, 79, 0.22), transparent 30%),
    linear-gradient(125deg, rgba(8, 10, 13, 0.86) 0%, rgba(8, 10, 13, 0.62) 52%, rgba(8, 10, 13, 0.34) 100%);
}

.cad6a14::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(8, 10, 13, 0) 0%, rgba(8, 10, 13, 0.42) 100%);
}

.cad6a14 .cad6a36 {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 36%);
}

.cad6a15 {
  align-items: flex-end;
  position: relative;
  z-index: 2;
  padding-top: 108px;
  padding-bottom: 108px;
}

.page-header-title {
  max-width: 760px;
}

.page-header-title h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 1.75rem + 2vw, 4.6rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6c9, var(--theme-accent));
  box-shadow: 0 0 0 5px rgba(239, 246, 201, 0.12);
}

.page-summary {
  margin: 18px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.8;
}

.insight-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.theme-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.theme-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8ffd2, var(--theme-accent));
}

.cad6a75.cad6a62 {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.cad6a75 li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cad6a75 li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
}

.cad6a75 a {
  color: rgba(255, 255, 255, 0.82);
}

.cad6a75 a:hover {
  color: #fff;
}

/* MAIN */
.cad6a8.cad6a1 {
  position: relative;
  padding: 0 0 88px;
}

.cad6a8.cad6a1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 22%);
  pointer-events: none;
}

.cad6a79 {
  align-items: flex-start;
  position: relative;
  z-index: 1;
  margin-top: -64px;
}

.post,
.widget {
  background: var(--theme-surface);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow);
  backdrop-filter: blur(18px);
}

.post {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.cad6a73 {
  padding: 44px;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content p {
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.95;
  color: var(--theme-text);
}

.entry-content strong {
  color: var(--theme-heading);
}

.cad6a17,
.entry-content h2 {
  margin: 42px 0 18px;
  font-size: clamp(1.95rem, 1.35rem + 0.9vw, 2.45rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--theme-heading);
}

.cad6a17::after,
.entry-content h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--theme-accent), rgba(170, 182, 79, 0.12));
}

.wp-block-image {
  margin: 34px 0;
}

.wp-block-image figure {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--theme-shadow-soft);
  border: 1px solid rgba(17, 26, 31, 0.08);
}

.wp-block-image img {
  width: 100%;
  display: block;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 110px;
}

.widget {
  padding: 26px;
  border-radius: var(--radius-md);
}

.cad6a28 {
  margin: 0 0 16px;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--theme-heading);
}

.cad6a47 {
  margin: -2px 0 18px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--theme-muted);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid rgba(24, 30, 36, 0.08);
}

.widget ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.widget ul li:first-child {
  padding-top: 0;
}

.widget a {
  color: #262c33;
}

.widget a:hover {
  color: var(--theme-accent-strong);
}

/* SEARCH */
.cad6a18 {
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--theme-heading);
}

.cad6a68 {
  display: flex;
  gap: 10px;
}

.cad6a45,
.cad6a41 input,
.cad6a41 textarea {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 52px;
  border: 1px solid rgba(24, 30, 36, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  color: #1c2228;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cad6a41 textarea {
  min-height: 180px;
  padding: 14px 16px;
  resize: vertical;
}

.cad6a45::placeholder,
.cad6a41 input::placeholder,
.cad6a41 textarea::placeholder {
  color: #8f97a2;
}

.cad6a45:focus,
.cad6a41 input:focus,
.cad6a41 textarea:focus {
  border-color: rgba(170, 182, 79, 0.54);
  box-shadow: 0 0 0 4px rgba(170, 182, 79, 0.16);
}

.cad6a6,
.cad6a57,
.cad6a81 button {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--theme-accent), #c3ca6a);
  color: var(--theme-accent-dark);
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(170, 182, 79, 0.22);
}

.cad6a6:hover,
.cad6a57:hover,
.cad6a81 button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(170, 182, 79, 0.28);
}

.cad6a81 {
  display: grid;
  gap: 10px;
}

.cad6a81 button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: #222a31;
  border: 1px solid rgba(24, 30, 36, 0.12);
  box-shadow: none;
}

.cad6a81 button.secondary:hover {
  background: #fff;
}

.cad6a72,
.cad6a25 {
  display: grid;
  gap: 12px;
}

.cad6a72 li,
.cad6a25 li {
  border: 0;
  padding: 0;
}

.cad6a72 a,
.cad6a25 li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(24, 30, 36, 0.08);
}

.cad6a72 a::before,
.cad6a25 li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 9px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #f1f7cf, var(--theme-accent));
  box-shadow: 0 0 0 5px rgba(170, 182, 79, 0.13);
}

.cad6a72 a:hover {
  transform: translateY(-1px);
  box-shadow: var(--theme-shadow-soft);
}

/* VIDEO */
.cad6a30 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--theme-shadow-soft);
}

.cad6a30 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* CONTACT */
.cad6a32 {
  min-height: 420px;
}

.contact-form {
  margin: 0;
}

.cad6a41 {
  margin: 0 0 22px;
}

.cad6a41 label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-heading);
}

.cad6a83 {
  margin: 0;
}

/* FOOTER */
.site-footer.light {
  position: relative;
  background: #0b0d0d;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  padding: 30px 15px 34px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.site-footer.light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(170, 182, 79, 0.48), transparent);
}

/* SCROLL TOP */
.page-scroll-up {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
}

.page-scroll-up a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(9, 11, 12, 0.86);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.page-scroll-up a.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-scroll-up a:hover {
  background: #111714;
  color: #f9fbe9;
}

/* UTILITIES */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #eff5c1, var(--theme-accent), #d7df80);
  z-index: 1200;
  box-shadow: 0 8px 18px rgba(170, 182, 79, 0.3);
}

.toast-stack {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 1200;
  display: grid;
  gap: 12px;
  width: min(360px, calc(100% - 32px));
}

.toast {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(16, 20, 17, 0.92);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.toast strong {
  font-size: 15px;
  line-height: 1.2;
}

.toast span {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.toast.cad6a56 {
  border-color: rgba(170, 182, 79, 0.25);
}

.toast.cad6a74 {
  border-color: rgba(255, 120, 120, 0.28);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* DESKTOP COLUMNS */
@media (min-width: 768px) {
  .cad6a40 {
    width: 66.666666%;
  }

  .cad6a67 {
    width: 50%;
  }

  .cad6a53 {
    width: 33.333333%;
  }
}

@media (min-width: 992px) {
  .cad6a66 {
    width: 66.666666%;
  }

  .cad6a82 {
    width: 50%;
  }

  .cad6a10 {
    width: 33.333333%;
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .cad6a24 {
    min-height: 78px;
    gap: 14px;
  }

  .cad6a5 {
    min-height: 78px;
  }

  .navbar-toggler {
    display: flex;
    margin-left: auto;
  }

  .menu-wrap {
    position: absolute;
    top: calc(100% + 10px);
    left: 15px;
    right: 15px;
    background: rgba(10, 12, 12, 0.98);
    padding: 12px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .menu-toggle-input:checked + .navbar-toggler + .menu-wrap,
  .navbar.menu-open .menu-wrap {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar.menu-open .navbar-toggler span:nth-child(1),
  .menu-toggle-input:checked + .navbar-toggler span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar.menu-open .navbar-toggler span:nth-child(2),
  .menu-toggle-input:checked + .navbar-toggler span:nth-child(2) {
    opacity: 0;
  }

  .navbar.menu-open .navbar-toggler span:nth-child(3),
  .menu-toggle-input:checked + .navbar-toggler span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .navbar-nav li {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: flex;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .navbar-nav .nav-link::after {
    left: 16px;
    right: 16px;
    bottom: 10px;
  }

  .cad6a14 {
    min-height: 360px;
  }

  .cad6a15 {
    padding-top: 88px;
    padding-bottom: 84px;
    gap: 20px;
  }

  .page-header-title {
    max-width: none;
  }

  .cad6a75.cad6a62 {
    justify-content: flex-start;
  }

  .cad6a8.cad6a1 {
    padding-bottom: 74px;
  }

  .cad6a79 {
    margin-top: -42px;
  }

  .sidebar {
    position: static;
    margin-top: 24px;
  }

  .cad6a73 {
    padding: 34px 32px;
  }

  .widget {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .cad6a58 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cad6a42 {
    font-size: 1.75rem;
  }

  .cad6a14 {
    min-height: 330px;
  }

  .page-header-title h1 {
    font-size: 2.55rem;
  }

  .page-summary {
    font-size: 1rem;
  }

  .insight-badges {
    gap: 10px;
  }

  .theme-chip {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .cad6a73,
  .widget {
    padding: 24px;
  }

  .entry-content p {
    font-size: 16px;
  }

  .cad6a17,
  .entry-content h2 {
    font-size: 2rem;
  }

  .cad6a28 {
    font-size: 1.4rem;
  }

  .page-scroll-up {
    right: 12px;
    bottom: 12px;
  }

  .page-scroll-up a {
    width: 50px;
    height: 50px;
  }

  .toast-stack {
    right: 12px;
    bottom: 76px;
    width: min(340px, calc(100% - 24px));
  }
}

@media (max-width: 575px) {
  .cad6a42 {
    font-size: 1.5rem;
  }

  .navbar-toggler {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .cad6a14 {
    min-height: 310px;
  }

  .cad6a15 {
    padding-top: 76px;
    padding-bottom: 74px;
  }

  .page-kicker {
    margin-bottom: 14px;
    padding: 9px 14px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .page-header-title h1 {
    font-size: 2.15rem;
  }

  .cad6a73,
  .widget {
    padding: 22px;
  }

  .cad6a68 {
    flex-direction: column;
  }

  .cad6a6,
  .cad6a57,
  .cad6a81 button {
    width: 100%;
  }

  .theme-chip {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 768px){
  .cad6a1 .cad6a79{
    flex-direction: row-reverse;
  }
}


/* wf-sample-28-shell-colors-start */
.navbar{background:#173127 !important;border-bottom-color:rgba(124,200,163,0.26) !important;box-shadow:0 16px 42px rgba(23,49,39,0.3) !important;}.navbar.scrolled{background:#1b3b2f !important;box-shadow:0 18px 52px rgba(27,59,47,0.34) !important;}.cad6a42,.cad6a42 a,.cad6a5 h2,.cad6a5 h2 a{color:#f4fff9 !important;}.navbar-nav .nav-link{color:rgba(244,255,249,0.88) !important;}.navbar-nav .nav-link:hover,.navbar-nav .nav-link:focus,.navbar-nav .cad6a61 .nav-link,.navbar-nav .nav-link[aria-current="page"]{color:#f4fff9 !important;background:rgba(124,200,163,0.16) !important;}.navbar-toggler{border-color:rgba(124,200,163,0.3) !important;background:rgba(124,200,163,0.1) !important;}.navbar-toggler span{background:#f4fff9 !important;}.navbar-toggler:hover{background:rgba(124,200,163,0.18) !important;border-color:rgba(124,200,163,0.44) !important;}@media (max-width: 991px){.menu-wrap{background:rgba(27,59,47,0.96) !important;border-color:rgba(124,200,163,0.26) !important;box-shadow:0 22px 55px rgba(27,59,47,0.32) !important;}.menu-wrap .nav-link{color:#f4fff9 !important;}}.site-footer.light{background:#142720 !important;color:#f4fff8 !important;border-top:1px solid rgba(124,200,163,0.32) !important;}.site-footer.light::before{background:linear-gradient(90deg, transparent, rgba(124,200,163,0.48), transparent) !important;}.site-footer.light,.site-footer.light *{color:#f4fff8 !important;}.page-scroll-up a{background:#1b3b2f !important;color:#f4fff9 !important;border-color:rgba(124,200,163,0.3) !important;}.page-scroll-up a:hover{background:#7cc8a3 !important;color:#111 !important;}
/* wf-sample-28-shell-colors-end */


/* Generated theme override */
:root{
  --accent:#a76438;
  --text:#493e35;
  --title:#2f2117;
  --muted:#958f8a;
  --border:#f2e8e1;
  --surface:#ffffff;
  --surface-2:#fcfaf9;
  --footer:#633b21;
  --button:#86502d;
  --button-text:#ffffff;
  --hero-overlay:rgba(167,100,56,0.08);
  --wf-accent:#a76438;
  --wf-light-box-1:#f6f0eb;
  --wf-light-box-2:#fdfcfb;
  --wf-light-box-3:#fbf8f5;
  --wf-light-box-4:#fefdfc;
  --wf-panel-bg:linear-gradient(145deg,#f6f0eb,#fdfcfb);
  --wf-panel-border:#f2e8e1;
  --wf-panel-shadow:0 20px 56px rgba(167,100,56,0.1);
  --wf-site-title-bg:#fbf8f5;
  --wf-site-title-border:#f2e8e1;
  --wf-search-bg:#fefdfc;
  --wf-scroll-start:rgba(167,100,56,0.96);
  --wf-scroll-end:rgba(167,100,56,0.24);
}
.cad6a16{background:var(--surface) !important;}
.cad6a27,.widget,.cad6a43,main article{background:var(--wf-light-box-1) !important;background-image:none !important;opacity:1 !important;border:1px solid #f2e8e1;box-shadow:0 18px 42px rgba(167,100,56,0.12);}
.cad6a34,.cad6a71,.cad6a55,.cad6a69,.cad6a33{background:var(--wf-light-box-2) !important;background-image:none !important;opacity:1 !important;border:1px solid #f2e8e1;box-shadow:0 18px 42px rgba(167,100,56,0.12);}
.cad6a78,#top-bar,#main-nav{background:var(--wf-light-box-3) !important;background-image:none !important;opacity:1 !important;border:1px solid #f2e8e1;box-shadow:0 18px 42px rgba(167,100,56,0.12);}
.cad6a34,.cad6a71,#top-bar,#main-nav,.cad6a78{border-color:#f2e8e1;}
a:hover{color:#8b532e;}
.cad6a52 img{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:1024 / 683;object-fit:cover;border-radius:18px;}
.cad6a50{display:block;width:100%;max-width:100%;aspect-ratio:560 / 315;height:auto;min-height:240px;border:0;border-radius:18px;background:#000;}
.cad6a59{width:min(100%,420px) !important;max-width:100% !important;height:740px !important;aspect-ratio:9 / 16 !important;margin:0 auto;}
.widget .cad6a50{margin:0 auto;}
.cad6a26{margin:12px 0 0;font-size:14px;}
.cad6a26 a{font-weight:700;text-decoration:underline;}
/* WF final opaque text container override start */
:root{--wf-final-box-1:#faf5ff;--wf-final-box-2:#eff6ff;--wf-final-box-3:#fffbeb;--wf-final-box-4:#fdf2f8;--wf-final-text:#334155;--wf-final-title:#111827;--wf-final-muted:#475569;--wf-final-border:rgba(15,23,42,.14);--wf-final-shadow:rgba(15,23,42,.10);}\nhtml body article,html body main article,html body main > section,html body main > div,html body [role="main"] article,html body [role="main"] section,html body [role="main"] > div,html body :where(article,section,div,aside)[class*="article"],html body :where(article,section,div,aside)[class*="Article"],html body :where(article,section,div,aside)[class*="content"],html body :where(article,section,div,aside)[class*="Content"],html body :where(article,section,div,aside)[class*="entry"],html body :where(article,section,div,aside)[class*="Entry"],html body :where(article,section,div,aside)[class*="post"],html body :where(article,section,div,aside)[class*="Post"],html body :where(article,section,div,aside)[class*="card"],html body :where(article,section,div,aside)[class*="Card"],html body :where(article,section,div,aside)[class*="panel"],html body :where(article,section,div,aside)[class*="Panel"],html body :where(article,section,div,aside)[class*="box"],html body :where(article,section,div,aside)[class*="Box"],html body :where(article,section,div,aside)[class*="widget"],html body :where(article,section,div,aside)[class*="Widget"],html body .content-card,html body .article-card,html body .post-card,html body .page-card,html body .contact-card,html body .contact-panel,html body .widget,html body section.widget,html body aside.widget,html body .sidebar .widget{background:var(--wf-final-box-1) !important;background-color:var(--wf-final-box-1) !important;background-image:none !important;opacity:1 !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important;color:var(--wf-final-text) !important;border:1px solid var(--wf-final-border) !important;box-shadow:0 18px 42px var(--wf-final-shadow) !important;}\nhtml body main > section:nth-of-type(2n),html body main > div:nth-of-type(2n),html body article:nth-of-type(2n),html body :where(article,section,div,aside)[class*="card"]:nth-of-type(2n),html body :where(article,section,div,aside)[class*="panel"]:nth-of-type(2n),html body :where(article,section,div,aside)[class*="content"]:nth-of-type(2n),html body .widget:nth-of-type(2n){background:var(--wf-final-box-2) !important;background-color:var(--wf-final-box-2) !important;background-image:none !important;}\nhtml body main > section:nth-of-type(3n),html body main > div:nth-of-type(3n),html body article:nth-of-type(3n),html body :where(article,section,div,aside)[class*="card"]:nth-of-type(3n),html body :where(article,section,div,aside)[class*="panel"]:nth-of-type(3n),html body :where(article,section,div,aside)[class*="content"]:nth-of-type(3n),html body .widget:nth-of-type(3n){background:var(--wf-final-box-3) !important;background-color:var(--wf-final-box-3) !important;background-image:none !important;}\nhtml body article.page,html body .post,html body .hentry{background:var(--wf-final-box-4) !important;background-color:var(--wf-final-box-4) !important;background-image:none !important;opacity:1 !important;color:var(--wf-final-text) !important;}\nhtml body article :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text),html body main :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text),html body :where(article,section,div,aside)[class*="card"] :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text),html body :where(article,section,div,aside)[class*="panel"] :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text){background:transparent !important;background-image:none !important;opacity:1 !important;box-shadow:none !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important;}\nhtml body article::before,html body article::after,html body main > section::before,html body main > section::after,html body main > div::before,html body main > div::after,html body :where(article,section,div,aside)[class*="card"]::before,html body :where(article,section,div,aside)[class*="card"]::after,html body :where(article,section,div,aside)[class*="panel"]::before,html body :where(article,section,div,aside)[class*="panel"]::after,html body :where(article,section,div,aside)[class*="content"]::before,html body :where(article,section,div,aside)[class*="content"]::after{background:transparent !important;background-image:none !important;opacity:0 !important;box-shadow:none !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important;pointer-events:none !important;}\nhtml body article :where(p,li,span,div,blockquote,small,strong,em),html body main > section :where(p,li,span,div,blockquote,small,strong,em),html body main > div :where(p,li,span,div,blockquote,small,strong,em),html body :where(article,section,div,aside)[class*="card"] :where(p,li,span,div,blockquote,small,strong,em),html body :where(article,section,div,aside)[class*="panel"] :where(p,li,span,div,blockquote,small,strong,em),html body :where(article,section,div,aside)[class*="content"] :where(p,li,span,div,blockquote,small,strong,em),html body .widget :where(p,li,span,div,blockquote,small,strong,em){color:var(--wf-final-text) !important;}\nhtml body article :where(h1,h2,h3,h4,h5,h6),html body main > section :where(h1,h2,h3,h4,h5,h6),html body main > div :where(h1,h2,h3,h4,h5,h6),html body :where(article,section,div,aside)[class*="card"] :where(h1,h2,h3,h4,h5,h6),html body :where(article,section,div,aside)[class*="panel"] :where(h1,h2,h3,h4,h5,h6),html body :where(article,section,div,aside)[class*="content"] :where(h1,h2,h3,h4,h5,h6),html body .widget :where(h1,h2,h3,h4,h5,h6){color:var(--wf-final-title) !important;}\nhtml body article a,html body main > section a,html body main > div a,html body :where(article,section,div,aside)[class*="card"] a,html body :where(article,section,div,aside)[class*="panel"] a,html body :where(article,section,div,aside)[class*="content"] a,html body .widget a{color:var(--wf-accent, var(--accent, #2563eb)) !important;}\nhtml body article small,html body article .muted,html body main > section small,html body main > section .muted,html body main > div small,html body main > div .muted,html body .widget small,html body .widget .muted{color:var(--wf-final-muted) !important;}\n/* WF final opaque text container override end */
