:root {
  --bg: #edf5f7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-muted: rgba(255, 255, 255, 0.7);
  --text: #35515a;
  --text-strong: #16272f;
  --muted: #64828b;
  --border: rgba(16, 39, 49, 0.1);
  --border-strong: rgba(16, 39, 49, 0.16);
  --accent: #6fb9c8;
  --accent-strong: #3f8fa1;
  --accent-soft: rgba(111, 185, 200, 0.18);
  --header-bg: rgba(4, 16, 24, 0.84);
  --header-solid: #071a24;
  --shadow-soft: 0 20px 55px rgba(15, 34, 43, 0.12);
  --shadow-strong: 0 28px 75px rgba(11, 27, 34, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 18% 18%, rgba(111, 185, 200, 0.22), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.4), transparent 24%),
    linear-gradient(180deg, rgba(245, 251, 252, 0.8) 0%, rgba(237, 245, 247, 0.9) 45%, rgba(226, 240, 244, 0.96) 100%),
    var(--bg-image, url("https://agapepeacecenter.com/wp-content/uploads/2026/01/abstract-blurred-backdrop-with-vertical-linear-pat-2024-12-06-12-32-20-utc-scaled.jpg"));
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 35%, rgba(10, 26, 34, 0.06)),
    linear-gradient(120deg, rgba(111, 185, 200, 0.06), transparent 45%, rgba(111, 185, 200, 0.08));
  pointer-events: none;
  z-index: -1;
}

body.nav-open {
  overflow: hidden;
}

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

iframe {
  border: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.c244a66 {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.c244a46,
.c244a52 {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  white-space: nowrap;
}

.c244a46:focus,
.c244a52:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  left: 14px;
  top: 14px;
  padding: 12px 14px;
  background: #ffffff;
  color: #000000;
  z-index: 5000;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.site {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition);
}

.site-header.scrolled .site-header-main {
  background: rgba(4, 16, 24, 0.94);
  box-shadow: 0 18px 45px rgba(7, 24, 32, 0.2);
}

.site-header-main {
  background: var(--header-bg);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.c244a59 {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  gap: 26px;
  min-height: 92px;
}

.c244a15 {
  min-width: 0;
}

.site-title {
  margin: 0;
  font-size: clamp(22px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  text-wrap: balance;
}

.site-title a {
  color: #ffffff;
}

.site-title a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.c244a1 {
  display: contents;
}

.main-navigation {
  justify-self: center;
}

.main-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  position: relative;
  background: transparent;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 9px;
  height: 2px;
  background: linear-gradient(90deg, rgba(111, 185, 200, 0.1), rgba(111, 185, 200, 0.92), rgba(111, 185, 200, 0.1));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity var(--transition), transform var(--transition);
}

.main-navigation .c244a48 a,
.main-navigation a:hover,
.main-navigation a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.main-navigation .c244a48 a::after,
.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.c244a30 {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle,
.search-toggle,
.search-submit,
.c244a50,
.c244a49 a,
.quick-actions button,
.back-to-top {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}

.menu-toggle,
.search-toggle {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.search-toggle {
  font-size: 0;
}

.menu-toggle {
  display: none;
  font-size: 0;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: top var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.menu-toggle::before {
  top: 18px;
  box-shadow: 0 8px 0 currentColor;
}

.menu-toggle::after {
  top: 34px;
}

.site-header.menu-open .menu-toggle::before {
  top: 26px;
  box-shadow: none;
  transform: translateX(-50%) rotate(45deg);
}

.site-header.menu-open .menu-toggle::after {
  top: 26px;
  transform: translateX(-50%) rotate(-45deg);
}

.search-toggle::before,
.search-submit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-56%, -58%);
}

.search-toggle::after,
.search-submit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(42%, 140%) rotate(45deg);
}

.search-toggle:hover,
.menu-toggle:hover,
.search-submit:hover,
.c244a50:hover,
.c244a49 a:hover,
.quick-actions button:hover,
.back-to-top:hover {
  transform: translateY(-1px);
}

.header-search[hidden] {
  display: block !important;
}

.header-search {
  background: rgba(2, 12, 19, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.32s ease, opacity var(--transition), border-color var(--transition);
}

.site-header.search-open .header-search {
  max-height: 136px;
  opacity: 1;
  pointer-events: auto;
}

.c244a2 {
  padding: 18px 0 22px;
}

.search-form {
  position: relative;
}

.search-field {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 16px 82px 16px 18px;
  outline: none;
  box-shadow: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.search-field::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.search-field:focus {
  border-color: rgba(111, 185, 200, 0.6);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(111, 185, 200, 0.12);
}

.search-submit {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 42px;
  bottom: 8px;
  background: linear-gradient(135deg, rgba(111, 185, 200, 0.36), rgba(63, 143, 161, 0.62));
  color: #ffffff;
}

.custom-header {
  position: relative;
  min-height: clamp(520px, 76vh, 780px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-header::before,
.custom-header::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 1;
}

.custom-header::before {
  width: min(540px, 52vw);
  height: min(540px, 52vw);
  right: -140px;
  top: -120px;
  background: radial-gradient(circle, rgba(111, 185, 200, 0.24), transparent 65%);
}

.custom-header::after {
  width: min(460px, 46vw);
  height: min(460px, 46vw);
  left: -140px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 68%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 24, 34, 0.72) 0%, rgba(8, 24, 32, 0.5) 42%, rgba(7, 22, 29, 0.24) 100%),
    linear-gradient(180deg, rgba(9, 30, 39, 0.14) 0%, rgba(9, 30, 39, 0.08) 100%),
    var(--hero-image, var(--bg-image, url("https://agapepeacecenter.com/wp-content/uploads/2026/01/cropped-abstract-blurred-backdrop-with-vertical-linear-pat-2024-12-06-12-32-20-utc-scaled-1.jpg")));

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.hero-content {
  position: absolute;
  left: clamp(20px, 7vw, 86px);
  bottom: clamp(88px, 14vh, 118px);
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.c244a35 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.c244a35::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8f0ff;
  box-shadow: 0 0 0 6px rgba(184, 240, 255, 0.14);
}

.c244a14 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.c244a67 {
  margin: 18px 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.c244a11 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.c244a11 span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  font-weight: 700;
}

.c244a49 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.c244a49 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.c244a49 .c244a61 {
  background: linear-gradient(135deg, #82d9e9, #4aa7ba);
  color: #07212a;
  box-shadow: 0 16px 30px rgba(74, 167, 186, 0.28);
}

.c244a49 .c244a36 {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.c244a47 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  margin-top: -10px;
  border-left: 2px solid rgba(255, 255, 255, 0.88);
  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
  transform: rotate(-45deg);
  animation: scrollDown 1.6s infinite;
}

@keyframes scrollDown {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-12px, 12px);
    opacity: 0.15;
  }
}

.c244a45 {
  position: relative;
  padding: clamp(50px, 7vw, 88px) 0 96px;
}

.c244a34 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: start;
}

.c244a7 {
  min-width: 0;
}

.hentry,
.sidebar .widget,
.contact-card,
.contact-sidebar .widget {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hentry,
.contact-card {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
}

.c244a40 {
  margin-bottom: 28px;
}

.entry-title {
  margin: 0;
  max-width: 16ch;
  color: var(--text-strong);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.entry-content {
  color: var(--text);
}

.entry-content p {
  margin: 0 0 1.35em;
}

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

.entry-content h2 {
  margin: 1.45em 0 0.48em;
  color: var(--text-strong);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  scroll-margin-top: 110px;
}

.entry-content h2::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(63, 143, 161, 0.2));
}

.c244a33 {
  margin: 34px 0;
}

.c244a33 img,
.entry-content img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 22px 48px rgba(16, 34, 43, 0.18);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.c244a33 img:hover,
.entry-content img:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(16, 34, 43, 0.2);
  filter: saturate(1.04);
}

.c244a21 {
  margin-left: auto;
  margin-right: auto;
}

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

.sidebar .widget,
.contact-sidebar .widget {
  border-radius: 28px;
  padding: 28px;
}

.widget-title {
  margin: 0 0 14px;
  color: var(--text-strong);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.c244a19 {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.widget li,
.toc-list li,
.c244a56 li {
  margin-bottom: 12px;
}

.widget li:last-child,
.toc-list li:last-child,
.c244a56 li:last-child {
  margin-bottom: 0;
}

.widget li a,
.toc-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  text-decoration: none;
}

.widget li a::before,
.toc-list a::before,
.c244a56 li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 6px rgba(111, 185, 200, 0.12);
}

.widget li a:hover,
.toc-list a:hover {
  color: var(--accent-strong);
}

.widget-video .c244a18 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(10, 24, 31, 0.16);
}

.widget-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.quick-actions button {
  min-height: 48px;
  padding: 0 18px;
  background: linear-gradient(180deg, rgba(111, 185, 200, 0.12), rgba(111, 185, 200, 0.08));
  border: 1px solid rgba(111, 185, 200, 0.24);
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.quick-actions button:hover {
  background: linear-gradient(180deg, rgba(111, 185, 200, 0.18), rgba(111, 185, 200, 0.12));
}

.c244a56 li {
  position: relative;
  padding-left: 0;
  color: var(--text-strong);
  font-weight: 600;
}

.c244a56 li span {
  display: block;
  margin-top: 6px;
  margin-left: 19px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.site-footer {
  margin-top: 8px;
  padding: 28px 20px 34px;
  background: rgba(4, 16, 24, 0.9);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-page .c244a45 {
  padding-top: clamp(42px, 7vw, 82px);
}

.c244a26 {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
}

.contact-card {
  position: relative;
}

.c244a31 {
  margin-bottom: 30px;
}

.c244a28 {
  max-width: none;
  font-size: clamp(42px, 5vw, 64px);
}

.contact-form {
  width: 100%;
}

.contact-form .c244a55 {
  margin: 0 0 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 9px;
  color: var(--text-strong);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.c244a54,
.c244a44 {
  width: 100%;
  border: 1px solid rgba(22, 39, 47, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-strong);
  padding: 18px 18px;
  outline: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.c244a54 {
  min-height: 62px;
}

.c244a44 {
  min-height: 260px;
  resize: vertical;
}

.c244a54:focus,
.c244a44:focus {
  border-color: rgba(111, 185, 200, 0.55);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 4px rgba(111, 185, 200, 0.12);
}

.c244a50 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 54px;
  padding: 0 26px;
  margin-top: 10px;
  background: linear-gradient(135deg, #86dbe8, #4aa7ba);
  color: #06232c;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(74, 167, 186, 0.26);
}

.contact-sidebar .widget li a {
  text-decoration: none;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, #86dbe8, #4aa7ba, #c6f0f8);
  box-shadow: 0 0 22px rgba(111, 185, 200, 0.36);
  z-index: 1400;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 26, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1200;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 88px;
  display: grid;
  gap: 10px;
  width: min(340px, calc(100% - 32px));
  z-index: 1500;
}

.toast {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(7, 26, 36, 0.94);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: opacity var(--transition), transform var(--transition);
}

.toast strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.toast span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.c244a42 {
  border-color: rgba(111, 185, 200, 0.3);
}

.c244a74 {
  border-color: rgba(255, 131, 131, 0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.c244a13 {
  transition-delay: 0.08s;
}

.reveal.c244a41 {
  transition-delay: 0.16s;
}

.reveal.c244a68 {
  transition-delay: 0.24s;
}

@media (max-width: 1180px) {
  .c244a34,
  .c244a26 {
    grid-template-columns: 1fr;
  }

  .sidebar,
  .contact-sidebar {
    position: static;
    max-width: 640px;
    width: 100%;
  }
}

@media (max-width: 920px) {
  .c244a59 {
    gap: 18px;
  }

  .site-title {
    letter-spacing: 0.1em;
    font-size: 20px;
  }

  .hero-content {
    left: 18px;
    width: calc(100% - 36px);
  }

  .entry-title {
    max-width: none;
  }
}

@media (max-width: 799px) {
  body {
    font-size: 16px;
    background-attachment: scroll;
  }

  .c244a66 {
    width: min(calc(100% - 24px), var(--max));
  }

  .c244a59 {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    min-height: 84px;
    padding: 14px 0;
  }

  .site-title {
    max-width: 12ch;
    font-size: 17px;
    line-height: 1.24;
    letter-spacing: 0.08em;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3 / 4;
    justify-self: end;
  }

  .c244a30 {
    grid-column: 2 / 3;
    justify-self: end;
  }

  .main-navigation {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: max-height 0.32s ease, opacity var(--transition), transform var(--transition);
  }

  .site-header.menu-open .main-navigation {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-navigation .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(5, 18, 27, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .main-navigation a {
    width: 100%;
    justify-content: flex-start;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .main-navigation a::after {
    left: 16px;
    right: 16px;
  }

  .c244a30 {
    justify-self: end;
  }

  .custom-header {
    min-height: 76vh;
  }

  .hero-content {
    bottom: 94px;
    padding: 20px 18px 22px;
    border-radius: 26px;
  }

  .c244a14 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .c244a67 {
    font-size: 16px;
  }

  .c244a49 {
    gap: 10px;
  }

  .c244a49 a {
    flex: 1 1 180px;
  }

  .c244a45,
  .contact-page .c244a45 {
    padding: 34px 0 82px;
  }

  .hentry,
  .contact-card,
  .sidebar .widget,
  .contact-sidebar .widget {
    border-radius: 24px;
    padding: 22px 18px;
  }

  .c244a40,
  .c244a31 {
    margin-bottom: 22px;
  }

  .entry-title,
  .c244a28 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .entry-content h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .quick-actions {
    flex-direction: column;
  }

  .quick-actions button,
  .c244a50 {
    width: 100%;
  }

  .c244a44 {
    min-height: 220px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }

  .toast-stack {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 80px;
  }
}

@media (max-width: 560px) {
  .site-title {
    max-width: 10ch;
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  .menu-toggle,
  .search-toggle {
    width: 48px;
    height: 48px;
  }

  .c244a2 {
    padding: 14px 0 18px;
  }

  .search-field {
    min-height: 54px;
  }

  .custom-header {
    min-height: 72vh;
  }

  .hero-content {
    width: calc(100% - 24px);
    left: 12px;
    bottom: 84px;
  }

  .c244a35,
  .c244a11 span {
    font-size: 12px;
  }

  .scroll-down {
    width: 50px;
    height: 50px;
    bottom: 24px;
  }

  .entry-content p,
  .contact-form label,
  .c244a19,
  .toast span {
    font-size: 15px;
  }

  .site-footer {
    padding: 24px 16px 28px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 799px) {
  .c244a59 {
    grid-template-columns: minmax(0, 1fr) 46px 46px;
    gap: 8px;
    min-height: auto;
    padding: 12px 0;
    align-items: start;
  }

  .c244a15 {
    min-width: 0;
  }

  .site-title {
    max-width: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: 0.04em;
    word-break: break-word;
    text-wrap: balance;
  }

  .c244a30,
  .menu-toggle {
    align-self: start;
    justify-self: end;
  }

  .menu-toggle,
  .search-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle::before {
    top: 15px;
    box-shadow: 0 7px 0 currentColor;
  }

  .menu-toggle::after {
    top: 29px;
  }

  .site-header.menu-open .menu-toggle::before,
  .site-header.menu-open .menu-toggle::after {
    top: 22px;
  }

  .search-toggle::before,
  .search-submit::before {
    width: 14px;
    height: 14px;
  }

  .search-toggle::after,
  .search-submit::after {
    width: 7px;
  }
}

@media (max-width: 560px) {
  .c244a59 {
    grid-template-columns: minmax(0, 1fr) 42px 42px;
    gap: 8px;
    padding: 10px 0;
  }

  .site-title {
    font-size: 23px;
    line-height: 1.08;
    letter-spacing: 0.03em;
  }

  .menu-toggle,
  .search-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-toggle::before {
    top: 14px;
    box-shadow: 0 6px 0 currentColor;
  }

  .menu-toggle::after {
    top: 28px;
  }

  .site-header.menu-open .menu-toggle::before,
  .site-header.menu-open .menu-toggle::after {
    top: 21px;
  }
}


/* Generated theme override */
:root{
  --wf-accent:#6b7c36;
  --wf-panel-bg:linear-gradient(145deg,rgba(33,44,32,0.9),rgba(20,31,28,0.96));
  --wf-panel-border:rgba(134,148,90,0.32);
  --wf-panel-shadow:0 20px 56px rgba(11,12,5,0.34);
  --wf-site-title-bg:rgba(27,31,14,0.44);
  --wf-site-title-border:rgba(134,148,90,0.28);
  --wf-search-bg:rgba(34,40,17,0.42);
  --wf-scroll-start:rgba(107,124,54,0.96);
  --wf-scroll-end:rgba(131,145,86,0.58);
}
body{color:#3e4334;background-color:#f0f4e6 !important;}
body.custom-background{background-color:#f0f4e6 !important;}
#page.site,.site-header{background:transparent !important;}
#main.c244a66{background:#fff !important;border-color:#e6e9dd !important;box-shadow:0 18px 42px rgba(107,124,54,0.12);}
#primary.c244a45,#content,article.page.hentry{background:transparent !important;}
.c244a22 a,.entry-title,.widget-title,.c244a53,h1,h2,h3,h4{color:#292e19;}
a{color:#6b7c36;}
a:hover,.nav-menu li a:hover,.nav-menu li.c244a48 a{color:#58662c;}
.c244a32,.c244a12,.c244a63{background:#515e29;color:#ffffff;}
.c244a63:hover,.c244a12:hover{background:#6b7c36;}
.widget{border-color:#e6e9dd;background:#fbfcf8 !important;box-shadow:0 12px 28px rgba(107,124,54,0.1);}
#colophon,.c244a73{background:#475224;color:#ffffff;}
.entry-content h2{border-left:4px solid #6b7c36;padding-left:12px;}
.entry-content .c244a33{margin:24px 0 28px;}
.entry-content .c244a33 figure{margin:0 auto;max-width:1024px;}
.entry-content .c244a33 img{display:block;width:100%;max-width:1024px;height:auto;aspect-ratio:1024 / 683;object-fit:cover;border:4px solid #ffffff;box-shadow:0 8px 22px rgba(0,0,0,.08);}
.c244a17{display:block;width:100%;max-width:100%;aspect-ratio:560 / 315;height:auto;min-height:240px;border:0;border-radius:8px;background:#000;}
.c244a58 .c244a17{margin:0 auto;}
.c244a64{margin:12px 0 0;font-size:14px;}
.c244a64 a{font-weight:700;text-decoration:underline;}
