@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Variable.woff2") format("woff2"), url("../fonts/Jost-Variable.woff") format("woff"), url("../fonts/Jost-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Italic-Variable.woff2") format("woff2"), url("../fonts/Jost-Italic-Variable.woff") format("woff"), url("../fonts/Jost-Italic-Variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  src: url("../fonts/JosefinSans-Variable.woff2") format("woff2"), url("../fonts/JosefinSans-Variable.woff") format("woff"), url("../fonts/JosefinSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  src: url("../fonts/JosefinSans-Italic-Variable.woff2") format("woff2"), url("../fonts/JosefinSans-Italic-Variable.woff") format("woff"), url("../fonts/JosefinSans-Italic-Variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
}
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

p, ul, ol, dl, blockquote, pre {
  margin-bottom: 0;
}

/* Link Reset */
a {
  color: inherit;
  text-decoration: none;
}

/* List Reset */
ul, ol {
  list-style: none;
}

/* Form Reset */
button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

input, textarea, select {
  border: none;
  background: transparent;
}

/* Image Reset */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Table Reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Misc Reset */
article, aside, footer, header, nav, section {
  display: block;
}

body {
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgb(34, 34, 34);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.65;
}

.heading-display {
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.heading-xxl {
  font-size: 2.25rem;
  line-height: 1.1;
}

.heading-xl, .wysiwyg h2 {
  font-size: 2rem;
  line-height: 1.1;
}

.heading-lg, .wysiwyg h3 {
  font-size: 1.75rem;
  line-height: 1.1;
}

.heading-md, .wysiwyg h4 {
  font-size: 1.5rem;
  line-height: 1.1;
}

.heading-sm, .wysiwyg h5,
.wysiwyg h6 {
  font-size: 1.25rem;
  line-height: 1.1;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #C96B4A;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness 0.2s ease, text-underline-offset 0.2s ease;
}
a:hover {
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.lead {
  font-size: 1.55rem;
  line-height: 1.75;
  font-weight: 500;
}

blockquote {
  border-left: 4px solid #C96B4A;
  padding-left: 1rem;
  font-style: italic;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-fluid {
  max-width: 100%;
  padding: 0;
}

.grid-col-1 {
  grid-column: span 1;
}
.grid-col-2 {
  grid-column: span 2;
}
.grid-col-3 {
  grid-column: span 3;
}
.grid-col-4 {
  grid-column: span 4;
}
.grid-col-5 {
  grid-column: span 5;
}
.grid-col-6 {
  grid-column: span 6;
}
.grid-col-7 {
  grid-column: span 7;
}
.grid-col-8 {
  grid-column: span 8;
}
.grid-col-9 {
  grid-column: span 9;
}
.grid-col-10 {
  grid-column: span 10;
}
.grid-col-11 {
  grid-column: span 11;
}
.grid-col-12 {
  grid-column: span 12;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-col-6 {
    grid-column: span 6;
  }
}
@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid-col-1, .grid-col-2, .grid-col-3, .grid-col-4, .grid-col-5, .grid-col-6, .grid-col-7, .grid-col-8, .grid-col-9, .grid-col-10, .grid-col-11, .grid-col-12 {
    grid-column: span 1;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 24px;
  transition: all 0.2s ease-in-out;
}
.btn--primary {
  color: #ffffff;
  background-color: #C96B4A;
  border-color: #C96B4A;
}
.btn--primary:hover {
  color: #C96B4A;
  background: transparent;
  border-color: #C96B4A;
}
.btn--secondary {
  color: #ffffff;
  background-color: #2F4F3E;
  border-color: #2F4F3E;
}
.btn--secondary:hover {
  color: #ffffff;
}
.btn--outline {
  color: #C96B4A;
  background-color: transparent;
  border-color: #C96B4A;
}
.btn--outline:hover {
  color: #ffffff;
  background-color: #C96B4A;
}
.btn--white {
  color: red;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn--white:hover {
  color: #fff !important;
  background-color: red;
}
.btn-link {
  padding: 0;
  color: #ffffff;
  background-color: transparent;
  border-color: transparent;
  font-weight: 400;
}
.btn-link:hover {
  color: #C96B4A;
  text-decoration: underline;
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5em;
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}
.btn-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.wysiwyg > *:first-child {
  margin-top: 0;
}
.wysiwyg > *:last-child {
  margin-bottom: 0;
}
.wysiwyg h2 {
  margin: 3rem 0 1rem;
}
.wysiwyg h3 {
  margin: 2rem 0 1rem;
}
.wysiwyg h4 {
  margin: 2rem 0 0.5rem;
}
.wysiwyg h5,
.wysiwyg h6 {
  margin: 1.5rem 0 0.5rem;
}
.wysiwyg p {
  margin-bottom: 1.5rem;
}
.wysiwyg a {
  color: #C96B4A;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness 0.2s ease, text-underline-offset 0.2s ease;
}
.wysiwyg a:hover {
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.wysiwyg ul,
.wysiwyg ol {
  margin: 0 0 1.5rem 1.5rem;
  padding-left: 1.5rem;
}
.wysiwyg ul {
  list-style: disc;
}
.wysiwyg ol {
  list-style: decimal;
}
.wysiwyg li + li {
  margin-top: 0.5rem;
}
.wysiwyg blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid #C96B4A;
  font-style: italic;
  color: #374151;
}
.wysiwyg hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}
.wysiwyg img,
.wysiwyg video,
.wysiwyg iframe {
  margin: 2rem 0;
  border-radius: 0.375rem;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .wysiwyg img,
  .wysiwyg video,
  .wysiwyg iframe {
    border-radius: 0 !important;
    margin-inline: -1rem;
    width: calc(100% + 2rem);
    max-width: unset;
  }
}
.wysiwyg pre,
.wysiwyg code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9em;
}
.wysiwyg code {
  background-color: #f3f4f6;
  border-radius: 0.25rem;
  padding: 0.1em 0.35em;
}
.wysiwyg pre {
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 1rem;
  margin: 2rem 0;
  overflow-x: auto;
}
.wysiwyg pre code {
  background: none;
  border-radius: 0;
  padding: 0;
}
.wysiwyg table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.wysiwyg th,
.wysiwyg td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem 1rem;
  text-align: left;
  vertical-align: top;
}
.wysiwyg th {
  background-color: #f3f4f6;
  font-weight: 600;
}
.wysiwyg strong,
.wysiwyg b {
  font-weight: 700;
}
.wysiwyg em,
.wysiwyg i {
  font-style: italic;
}
.wysiwyg figure {
  max-width: 100%;
  width: 100% !important;
}
.wysiwyg figure img {
  width: 100%;
  height: auto;
  border-radius: 0.375rem;
  margin: 0;
}
.wysiwyg figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.disclaimer-text {
  font-style: italic;
}

.gallery {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .gallery {
    gap: 0.5rem;
    margin-inline: -1rem;
    margin-bottom: 1rem;
  }
}
.gallery.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery img {
  aspect-ratio: 3/4;
  object-fit: cover;
}
@media (max-width: 768px) {
  .gallery img {
    border-radius: 0 !important;
  }
}

.content-themes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.5rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(47, 79, 62, 0.12);
}
.content-themes .content-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #C96B4A;
  flex: 0 0 auto;
}
.content-themes .content-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.content-themes .content-label {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4b5563;
  font-weight: 600;
  margin-right: 0.25rem;
}
.content-themes .content-thema {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 107, 74, 0.32);
  background-color: rgba(201, 107, 74, 0.1);
  color: #2F4F3E;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .content-themes {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
}

.spotify {
  position: absolute;
  right: 140px;
  top: -36px;
  z-index: 22;
  text-align: center;
}
@media (max-width: 640px) {
  .spotify {
    position: relative;
    top: 0;
    right: 0;
    text-align: left;
  }
}
.spotify a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  background-color: #2F4F3E;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}
.spotify a img {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}
.spotify a span {
  display: inline-block;
  vertical-align: middle;
}

body {
  background: mediumpurple;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 2.5rem;
  background-color: #e0e0e0;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.5rem;
  text-decoration: none;
}
.chip--primary {
  background-color: #C96B4A;
  color: #fff;
}
.chip--secondary {
  background-color: #2F4F3E;
  color: #fff;
}
.chip--transparent {
  background-color: transparent;
  color: #C96B4A;
}

.chip--with-icon {
  padding-left: 0.75rem;
}

.chip--with-icon .chip__icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: #e5e7eb;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.5rem;
  text-decoration: none;
  line-height: 1;
}
.tag--primary {
  background-color: #C96B4A;
  color: #ffffff;
}
.tag--secondary {
  background-color: #2F4F3E;
  color: #ffffff;
}
.tag--transparent {
  background-color: transparent;
  color: #C96B4A;
}
.tag--with-icon {
  padding-left: 0.75rem;
}
.tag__icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer {
  padding: clamp(2.25rem, 5vw, 3rem) 0;
  background-color: #FAF8F3;
  color: #2F4F3E;
  position: relative;
  overflow: hidden;
}
.footer .logo {
  display: inline-block;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(16rem, 40%) minmax(0, 1fr) fit-content(25rem);
  align-items: flex-start;
  gap: clamp(3rem, 8vw, 7rem);
}
.footer-left p {
  margin: 0;
  color: #374151;
  line-height: 1.75;
  max-width: 55ch;
}
.footer-nav {
  min-width: 0;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-nav ul li a {
  color: rgb(34, 34, 34);
}
.footer-right {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  min-width: 0;
}
.footer-right ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
.footer .socials {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}
.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  gap: 1rem;
  align-items: center;
}
.footer-bottom p {
  margin: 0;
  color: #4b5563;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-bottom ul li a {
  color: #4b5563;
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
  .footer-left {
    grid-column: 1/-1;
  }
  .footer .socials {
    padding-top: 1.5rem;
    padding-bottom: 0;
  }
  .footer-right {
    justify-self: start;
    width: 100%;
  }
  .footer-right ul {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-left, .footer-nav, .footer-right {
    width: 100%;
    padding: 0;
  }
  .footer-right ul {
    justify-content: flex-start;
  }
  .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
  }
  .footer-right ul {
    gap: 0.5rem;
  }
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer-bottom ul {
    width: 100%;
  }
  .footer-bottom::after {
    right: 1rem;
  }
}
@media (max-width: 640px) {
  .footer-nav ul {
    grid-template-columns: 1fr;
  }
  .footer-bottom p,
  .footer-bottom ul li a {
    font-size: 0.8125rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding-block: 1rem;
  backdrop-filter: blur(1px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  will-change: transform;
}
.header.is-hidden {
  transform: translateY(-100%);
}
.header.is-scrolling-up {
  transform: translateY(0);
  background-color: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}
.header.is-scrolling-up .header__nav .logo {
  color: #2F4F3E;
}
.header.is-scrolling-up .header__nav ul li a {
  color: #2F4F3E;
}
.header.is-scrolling-up .header__nav .header__search {
  color: #2F4F3E;
}
.header.is-scrolling-up .header__nav .header__search:hover {
  background: rgba(47, 79, 62, 0.08);
}
.header.is-scrolling-up .header__nav .header__search svg {
  opacity: 1;
}
.header .container {
  max-width: none;
  padding-inline: 2.5rem;
}
.header .header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header .header__nav .logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.45rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  margin-right: 2.5rem;
  font-family: "Josefin Sans", Arial, sans-serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.5px;
  margin-top: 6px;
}
.header .header__nav .logo:hover {
  transform: translateX(-50%) translateY(-2px);
  opacity: 0.85;
}
.header .header__nav .logo__icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .header__nav .logo__icon svg {
  width: 100%;
  height: 100%;
  fill: #C96B4A;
  filter: drop-shadow(0 4px 8px rgba(201, 107, 74, 0.15));
}
.header .header__nav .logo__text {
  line-height: 1;
}
.header .header__nav .logo:hover .header .header__nav .logo__icon svg {
  filter: drop-shadow(0 6px 12px rgba(201, 107, 74, 0.25));
}
.header .header__nav ul {
  justify-self: center;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.25rem;
}
.header .header__nav ul li {
  position: relative;
}
.header .header__nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.3px;
  padding: 0.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
}
.header .header__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C96B4A, #C96B4A);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .header__nav ul li a:hover {
  color: #C96B4A;
}
.header .header__nav ul li a:hover::after {
  width: 100%;
}
.header .header__nav .header__search {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
  border: 0;
  background: transparent;
  color: #ffffff;
}
.header .header__nav .header__search:hover {
  background: rgba(201, 107, 74, 0.08);
}
.header .header__nav .header__search svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
}
.header .header__nav .header__search:hover svg {
  opacity: 1;
  transform: scale(1.1);
}
.header .nav-toggle {
  display: none;
}
.header:hover::after {
  opacity: 1;
}

body.admin-bar .header {
  top: 32px;
}

@media (max-width: 1024px) {
  .header .container {
    padding-inline: 1.5rem;
  }
  .header .header__nav ul {
    gap: 1.5rem;
  }
  .header .header__nav ul li a {
    font-size: 1rem;
  }
  .header .header__nav .logo {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .header .container {
    padding-inline: 1rem;
  }
  .header .header__nav {
    flex-wrap: wrap;
    gap: 0;
  }
  .header .header__nav .logo {
    position: static;
    transform: none;
    margin-right: 0;
    margin-top: 0;
  }
  .header .header__nav .logo:hover {
    transform: translateY(-2px);
  }
  .header .header__nav ul {
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, transform 0.25s ease;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
  }
  .header .header__nav ul li {
    width: 100%;
  }
  .header .header__nav ul li a {
    display: block;
    width: 100%;
    color: #2F4F3E;
    padding: 0.75rem 0;
  }
  .header .header__nav ul li a::after {
    display: none;
  }
  .header .header__nav ul li:not(:last-child) {
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }
  .header .header__nav ul.open {
    max-height: 24rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 0.35rem 1rem;
  }
  .header .header__nav .header__search {
    margin-left: auto;
    color: #ffffff;
  }
  .header .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 0.375rem;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }
  .header .nav-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .header .mobile-menu.open ~ .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header .mobile-menu.open ~ .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .header .mobile-menu.open ~ .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .header.is-scrolling-up .header__nav .header__search {
    color: #2F4F3E;
  }
  .header.is-scrolling-up .header__nav .nav-toggle span {
    background-color: #2F4F3E;
  }
}
@media (max-width: 640px) {
  .header {
    padding-block: 0.75rem;
  }
  .header .header__nav .logo {
    font-size: 1.25rem;
  }
  .header .header__nav .header__search,
  .header .header__nav .nav-toggle {
    width: 2.25rem;
    height: 2.25rem;
  }
  body.admin-bar .header {
    top: 46px;
  }
}
@media (max-width: 640px) and (max-width: 640px) {
  body.admin-bar .header {
    position: absolute;
  }
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.navbar-nav li {
  display: block;
}
.navbar-nav li a {
  text-decoration: none;
  font-size: 3rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.1;
}

.page_title {
  background: green;
  padding: 0.5rem 2.5rem;
  margin-left: -1rem;
}
.page_title h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  text-transform: uppercase;
}

.events__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
}
.events__list .event-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  max-width: 550px;
  align-items: center;
}
.events__list .event-card .event-card__title {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  font-weight: bold;
}
.events__list .event-card .event-card__time {
  display: block;
  color: #fff;
  line-height: 1;
  font-size: 1.45rem;
  font-weight: 500;
}
.events__list .event-card .event-card__location {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  font-weight: bold;
}

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

.socials .socials__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #2F4F3E;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.socials .socials__button:hover, .socials .socials__button:focus-visible {
  color: #C96B4A;
  transform: translateY(-1px);
}
.socials .socials__button:active {
  transform: translateY(0);
}

.socials .socials__icon {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
}

.socials .socials__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.page-404 {
  position: relative;
  padding: clamp(7rem, 11vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  min-height: calc(100vh - 8rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(250, 248, 243, 0.96) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(232, 223, 201, 0.7) 100%), radial-gradient(80% 65% at 10% 15%, rgba(201, 107, 74, 0.16) 0%, rgba(201, 107, 74, 0) 72%), radial-gradient(70% 60% at 88% 82%, rgba(53, 92, 125, 0.14) 0%, rgba(53, 92, 125, 0) 72%);
}
.page-404__inner {
  max-width: 52rem;
  padding: clamp(1.75rem, 4vw, 3rem);
}
.page-404__inner h1 {
  margin-bottom: 0.9rem;
  color: #2F4F3E;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  text-wrap: balance;
}
.page-404__inner p {
  margin-bottom: 1.6rem;
  color: #374151;
  max-width: 44ch;
  text-wrap: pretty;
}
.page-404__code {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(201, 107, 74, 0.12);
  color: #C96B4A;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .page-404 {
    min-height: auto;
  }
  .page-404__inner {
    border-radius: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
