: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);
}

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

.cdbd317:focus,
.cdbd311: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);
}

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

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

.cdbd384,
.cdbd330,
.cdbd343,
.cdbd376,
.cdbd371,
.cdbd348,
.cdbd375 {
  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);
}

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

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

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

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

.cdbd340 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 .cdbd366 .nav-link,
.navbar-nav .cdbd381 .nav-link,
.navbar-nav .nav-link:hover {
  color: #f7f9ef;
  background: rgba(255, 255, 255, 0.05);
}

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

/* HERO */
.cdbd380 {
  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;
}

.cdbd380::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%);
}

.cdbd380::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%);
}

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

.cdbd345 {
  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));
}

.cdbd323.cdbd36 {
  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;
}

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

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

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

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

/* MAIN */
.cdbd35.cdbd370 {
  position: relative;
  padding: 0 0 88px;
}

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

.cdbd365 {
  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);
}

.cdbd383 {
  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);
}

.cdbd37,
.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);
}

.cdbd37::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);
}

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

.cdbd362 {
  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 */
.cdbd336 {
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--theme-heading);
}

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

.cdbd369,
.cdbd367 input,
.cdbd367 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);
}

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

.cdbd369::placeholder,
.cdbd367 input::placeholder,
.cdbd367 textarea::placeholder {
  color: #8f97a2;
}

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

.cdbd32,
.cdbd356,
.cdbd350 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);
}

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

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

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

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

.cdbd352,
.cdbd39 {
  display: grid;
  gap: 12px;
}

.cdbd352 li,
.cdbd39 li {
  border: 0;
  padding: 0;
}

.cdbd352 a,
.cdbd39 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);
}

.cdbd352 a::before,
.cdbd39 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);
}

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

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

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

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

.contact-form {
  margin: 0;
}

.cdbd367 {
  margin: 0 0 22px;
}

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

.cdbd327 {
  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.cdbd313 {
  border-color: rgba(170, 182, 79, 0.25);
}

.toast.cdbd325 {
  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) {
  .cdbd376 {
    width: 66.666666%;
  }

  .cdbd371 {
    width: 50%;
  }

  .cdbd348 {
    width: 33.333333%;
  }
}

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

  .cdbd330 {
    width: 50%;
  }

  .cdbd343 {
    width: 33.333333%;
  }
}

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

  .cdbd346 {
    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;
  }

  .cdbd380 {
    min-height: 360px;
  }

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

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

  .cdbd323.cdbd36 {
    justify-content: flex-start;
  }

  .cdbd35.cdbd370 {
    padding-bottom: 74px;
  }

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

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

  .cdbd383 {
    padding: 34px 32px;
  }

  .widget {
    padding: 24px;
  }
}

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

  .cdbd340 {
    font-size: 1.75rem;
  }

  .cdbd380 {
    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;
  }

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

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

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

  .cdbd354 {
    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) {
  .cdbd340 {
    font-size: 1.5rem;
  }

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

  .cdbd380 {
    min-height: 310px;
  }

  .cdbd345 {
    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;
  }

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

  .cdbd351 {
    flex-direction: column;
  }

  .cdbd32,
  .cdbd356,
  .cdbd350 button {
    width: 100%;
  }

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


/* Generated theme override */
:root{
  --accent:#6d7f37;
  --text:#3e4334;
  --title:#282d18;
  --muted:#8f9289;
  --border:#edf0e7;
  --surface:#ffffff;
  --surface-2:#fbfcf9;
  --footer:#414c21;
  --button:#55632b;
  --button-text:#ffffff;
  --hero-overlay:rgba(109,127,55,0.09);
  --wf-accent:#6d7f37;
  --wf-panel-bg:linear-gradient(145deg,rgba(34,45,32,0.9),rgba(20,32,28,0.96));
  --wf-panel-border:rgba(135,150,91,0.32);
  --wf-panel-shadow:0 20px 56px rgba(11,13,6,0.34);
  --wf-site-title-bg:rgba(27,32,14,0.44);
  --wf-site-title-border:rgba(135,150,91,0.28);
  --wf-search-bg:rgba(35,41,18,0.42);
  --wf-scroll-start:rgba(109,127,55,0.96);
  --wf-scroll-end:rgba(132,147,87,0.58);
}
.cdbd355{background:var(--surface) !important;}
.cdbd333,.widget{background:var(--surface);border:1px solid rgba(109,127,55,0.1);box-shadow:0 18px 42px rgba(109,127,55,0.12);}
.cdbd378,.cdbd332,#top-bar,#main-nav,.cdbd335{border-color:rgba(109,127,55,0.1);}
a:hover{color:#5e6d2f;}
.cdbd34 img{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:1024 / 683;object-fit:cover;border-radius:18px;}
.cdbd344{display:block;width:100%;max-width:100%;aspect-ratio:560 / 315;height:auto;min-height:240px;border:0;border-radius:18px;background:#000;}
.widget .cdbd344{margin:0 auto;}
.cdbd377{margin:12px 0 0;font-size:14px;}
.cdbd377 a{font-weight:700;text-decoration:underline;}
