:root {
  --bg: #f6f4ee;
  --bg-soft: #fbfaf6;
  --text: #1d241f;
  --text-soft: #4c564f;
  --white: #ffffff;
  --dark: #101612;
  --dark-soft: #18211b;
  --line: rgba(16, 22, 18, 0.12);
  --gold: #cbb88a;
  --green-deep: #24372b;
  --green-soft: #dfe7de;
  --shadow: 0 18px 60px rgba(18, 28, 21, 0.08);
  --shadow-soft: 0 10px 30px rgba(18, 28, 21, 0.06);
  --radius: 24px;
  --container: 1200px;
  --container-narrow: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(to bottom, #f7f5f0 0%, #f4f1ea 100%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: var(--container-narrow);
}

.center-text {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 1rem;
}

.lead {
  font-size: 1.16rem;
}

.subtle-copy {
  color: #5b655e;
}

.luxury-line {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #2f3e34;
  margin-top: 12px;
}

.section-label,
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 600;
  color: #6a766d;
}

.light-label {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: 0.3s ease;
  background: transparent;
}

.site-header:not(.scrolled)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(10, 14, 11, 0.60) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.site-header:not(.scrolled) .site-logo-text {
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(8, 12, 9, 0.45));
}

.site-header:not(.scrolled) .menu-toggle span {
  background: #ffffff;
}

.site-header:not(.scrolled) .header-inner,
.site-header:not(.scrolled) .logo,
.site-header:not(.scrolled) .logo img,
.site-header:not(.scrolled) .site-logo-sphere {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.site-header.scrolled {
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 24, 19, 0.08);
  padding: 12px 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

.site-logo-sphere {
  display: block;
  height: 44px;
  width: auto;
  background: transparent;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  filter: none;
}

.site-logo-text {
  display: block;
  height: 34px;
  width: auto;
  transition: filter 0.3s ease;
}

.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2d4637, #18241d);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 1rem;
  color: var(--text);
}

.logo-text small {
  margin-top: 4px;
  color: #6b746d;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.site-header.scrolled .main-nav a {
  color: #223029;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(28, 37, 31, 0.14);
  border-radius: 999px;
}

.lang-flag {
  display: inline-block;
  width: 16px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: linear-gradient(
    to bottom,
    #ae1c28 0%,
    #ae1c28 33.333%,
    #ffffff 33.333%,
    #ffffff 66.666%,
    #21468b 66.666%,
    #21468b 100%
  );
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(16, 22, 18, 0.62), rgba(16, 22, 18, 0.28)),
    url("images/peace-garden-international-magical-landscape.webp") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 14, 11, 0.18), rgba(10, 14, 11, 0.38)),
    radial-gradient(circle at top right, rgba(203, 184, 138, 0.18), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  color: var(--white);
}

.hero .eyebrow,
.hero h1,
.hero p {
  color: var(--white);
}

.hero-text {
  max-width: 720px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #f6f1df, #d9c393);
  color: #182019;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.btn-dark-outline {
  border-color: rgba(18, 24, 20, 0.15);
  color: var(--text);
  background: transparent;
}

.intro-block,
.concept-preview,
.momentum-section,
.audience-section,
.final-cta {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 46px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.audience-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(28, 37, 31, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}

.partner-card-premium .partner-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  background: transparent;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.partner-card-premium h3 {
  margin: 0;
  text-align: center;
}

.partner-card-premium .partner-card-symbol {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
  background: transparent;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.partner-card-premium .partner-card-divider {
  width: min(220px, 100%);
  height: 1px;
  margin: 0 auto 16px;
  background: linear-gradient(
    90deg,
    rgba(203, 184, 138, 0),
    rgba(160, 137, 82, 0.52),
    rgba(203, 184, 138, 0)
  );
}

.faq-section {
  padding: 0 0 110px;
}

.faq-list {
  padding: 8px 0;
  border-top: 1px solid rgba(28, 37, 31, 0.08);
}

.faq-item {
  padding: 4px 0;
  border-bottom: 1px solid rgba(28, 37, 31, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 24px;
  margin: -30px -24px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 14px;
  transition: background-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.faq-question:hover {
  background-color: transparent;
  box-shadow: none;
  transform: none;
}

.faq-question[aria-expanded="true"] {
  background-color: transparent;
  box-shadow: none;
}

.faq-question span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.22rem, 1.9vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.faq-indicator {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-indicator::before,
.faq-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.2px;
  background: rgba(36, 55, 43, 0.68);
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.faq-indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-indicator::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.38s ease, opacity 0.28s ease;
}

.faq-answer-inner {
  padding: 8px 24px 34px 0;
}

.faq-item p {
  margin: 0;
  color: #56625a;
  font-size: 1rem;
  line-height: 1.74;
}

.card-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #f6f1df, #d9c393);
  color: #182019;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  font-weight: 700;
  font-size: 0.9rem;
}

.trust-section {
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(17, 24, 19, 0.97), rgba(28, 40, 31, 0.96));
  color: var(--white);
}

.trust-section p,
.trust-section h2 {
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 42px;
  align-items: start;
}

.trust-points {
  display: grid;
  gap: 14px;
}

.trust-point {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.04);
}

.founding-section {
  padding: 0 0 110px;
}

.founding-panel {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #f8f4e7, #f2ecdd);
  border: 1px solid rgba(25, 34, 27, 0.08);
  border-radius: 32px;
  padding: 40px 34px;
  box-shadow: var(--shadow);
}

.next-step-panel .container.narrow.center-text {
  background: linear-gradient(135deg, #f8f4e7, #f2ecdd);
  border: 1px solid rgba(25, 34, 27, 0.08);
  border-radius: 32px;
  padding: 40px 34px;
  box-shadow: var(--shadow);
}

.final-cta {
  padding-top: 0;
}

.site-footer {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(18, 24, 20, 0.08);
  background: linear-gradient(135deg, #f8f4e7, #f2ecdd);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) auto auto;
  justify-content: space-between;
  gap: 36px;
  align-items: start;
}

.site-footer h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.footer-logo {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
  text-align: left;
}

.footer-block-title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.footer-contact-details {
  display: grid;
  gap: 10px;
}

.footer-contact-link {
  color: #23352a;
  font-weight: 500;
}

.footer-contact-link:hover {
  color: #1d5b3c;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 24, 20, 0.08);
  text-align: center;
}

.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.35;
  color: #24332b;
  margin: 0;
}

.footer-powered {
  margin: 10px 0 0;
  font-size: 0.92rem;
  color: #5f6963;
}

.footer-powered a {
  color: #1d5b3c;
  font-weight: 600;
  text-decoration: none;
}

.footer-powered a:hover {
  text-decoration: underline;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 14, 0);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: opacity 0.36s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.36s cubic-bezier(0.16, 1, 0.3, 1), -webkit-backdrop-filter 0.36s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.menu-backdrop.visible {
  background: rgba(4, 7, 6, 0.34);
  opacity: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: auto;
}

@media (max-width: 980px) {
  .three-col,
  .trust-grid,
  .founding-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 26px;
  }

  .footer-links {
    text-align: left;
  }

  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .site-logo-sphere {
    height: 36px;
  }

  .site-logo-text {
    height: 28px;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    right: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 18px 16px;
    border-radius: 32px;
    background:
      linear-gradient(180deg, rgba(37, 44, 40, 0.96), rgba(8, 12, 10, 0.96));
    backdrop-filter: blur(30px) saturate(155%);
    -webkit-backdrop-filter: blur(30px) saturate(155%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
      0 42px 96px rgba(2, 5, 4, 0.56),
      0 20px 38px rgba(2, 5, 4, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.11),
      inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    transform: translateY(-18px) scale(0.975);
    transform-origin: top center;
    filter: blur(8px);
    visibility: hidden;
    pointer-events: none;
    will-change: opacity, transform, filter;
    transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s linear 0.38s;
    z-index: 1001;
  }

  .main-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%);
    pointer-events: none;
    z-index: -1;
  }

  .main-nav::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(203, 184, 138, 0.18);
    opacity: 0.55;
    pointer-events: none;
    mix-blend-mode: screen;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a,
  .site-header.scrolled .main-nav a {
    position: relative;
    width: 100%;
    padding: 16px 12px 16px 18px;
    display: block;
    background: transparent;
    color: rgba(242, 245, 243, 0.96);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.42rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.12;
    border-radius: 8px;
    border-bottom: 0;
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(7px);
    transition: opacity 0.34s cubic-bezier(0.16, 1, 0.3, 1),
          transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
          filter 0.34s cubic-bezier(0.16, 1, 0.3, 1),
          background-color 0.24s ease,
          color 0.24s ease,
          border-color 0.24s ease,
          box-shadow 0.24s ease;
    transition-delay: 0s;
  }

  .main-nav a + a,
  .site-header.scrolled .main-nav a + a {
    border-top: 1px solid rgba(203, 184, 138, 0.16);
  }

  .main-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(203, 184, 138, 1), rgba(239, 222, 172, 0.86));
    transform: translateY(-50%);
    opacity: 0;
    transition: height 0.26s ease, opacity 0.26s ease;
  }

  .main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.02);
    color: #ffffff;
  }

  .main-nav a.active {
    background-color: rgba(255, 255, 255, 0.018);
    color: #ffffff;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  }

  .main-nav a.active::before {
    height: 42px;
    opacity: 1;
  }

  .main-nav a:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .main-nav .lang-switch {
    margin-top: 12px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    justify-content: flex-start;
    gap: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(218, 226, 222, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
  }

  .main-nav .lang-switch .lang-flag {
    margin-right: 2px;
    width: 18px;
    height: 13px;
  }

  .main-nav .lang-switch:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
  }

  .main-nav .lang-switch::after {
    display: none;
  }

  .main-nav.open a:nth-child(1) {
    transition-delay: 0.04s;
  }
  
  .main-nav.open a:nth-child(2) {
    transition-delay: 0.08s;
  }
  
  .main-nav.open a:nth-child(3) {
    transition-delay: 0.12s;
  }
  
  .main-nav.open a:nth-child(4) {
    transition-delay: 0.16s;
  }

  .main-nav.open a:nth-child(5) {
    transition-delay: 0.2s;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s linear 0s;
  }

  .main-nav.open a {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .menu-toggle span {
    width: 22px;
    margin: 4px auto;
    transform-origin: center;
    transition: background-color 0.2s ease, 
                transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.24s ease-in-out;
  }

  .menu-toggle.active {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(203, 184, 138, 0.44);
    box-shadow:
      inset 0 0 0 1px rgba(203, 184, 138, 0.34),
      0 8px 20px rgba(7, 11, 9, 0.24);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .logo-text small {
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: auto;
    padding-top: 160px;
    padding-bottom: 90px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (hover: none) and (pointer: coarse) {
  .main-nav a:hover {
    background-color: transparent;
    border-color: rgba(27, 37, 30, 0.03);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .intro-block,
  .concept-preview,
  .momentum-section,
  .audience-section,
  .final-cta,
  .trust-section {
    padding: 80px 0;
  }

  .site-header {
    padding: 14px 0;
  }

  .logo-mark {
    width: 44px;
    height: 44px;
  }

  .founding-panel {
    padding: 30px 22px;
    border-radius: 24px;
  }
}

.page-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
}

.page-hero-background {
  position: absolute;
  inset: 0;
  background-color: #111816;
  background-image:
    linear-gradient(to right, rgba(16, 22, 18, 0.66), rgba(16, 22, 18, 0.34)),
    url("images/map-peace-gardens.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 14, 11, 0.14), rgba(10, 14, 11, 0.36)),
    radial-gradient(circle at top right, rgba(203, 184, 138, 0.16), transparent 28%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--white);
}

.page-hero-content .eyebrow,
.page-hero-content h1,
.page-hero-content p {
  color: var(--white);
}

.image-split-section,
.governance-section,
.facilities-section {
  padding: 110px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 42px;
  align-items: center;
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 37, 31, 0.08);
}

.governance-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(28, 37, 31, 0.08);
  border-radius: 32px;
  padding: 40px 34px;
  box-shadow: var(--shadow-soft);
}

.governance-list {
  display: grid;
  gap: 14px;
}

.governance-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: #f1f3ec;
  color: #2b382f;
  border: 1px solid rgba(28, 37, 31, 0.06);
}

@media (max-width: 980px) {
  .split-layout,
  .governance-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-hero {
    min-height: auto;
    padding: 150px 0 80px;
  }

  .image-split-section,
  .governance-section,
  .facilities-section {
    padding: 80px 0;
  }

  .split-visual img {
    min-height: 280px;
  }
}

.contact-hero-background {
  background:
    linear-gradient(to right, rgba(16, 22, 18, 0.68), rgba(16, 22, 18, 0.36)),
    url("images/founder-of-peace-gardens-international-on-the-phone.webp") center center / cover no-repeat;
}

.contact-section {
  padding: 40px 0 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(28, 37, 31, 0.08);
  border-radius: 32px;
  padding: 38px 34px;
  box-shadow: var(--shadow);
}

.contact-form {
  margin-top: 24px;
}

.form-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.form-row.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #243129;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(28, 37, 31, 0.12);
  border-radius: 18px;
  background: #fcfbf8;
  color: var(--text);
  font: inherit;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(36, 55, 43, 0.45);
  box-shadow: 0 0 0 4px rgba(36, 55, 43, 0.08);
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 170px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: #667168;
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(28, 37, 31, 0.08);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
}

.sidebar-card h3 {
  margin-bottom: 12px;
}

.sidebar-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.sidebar-list li + li {
  margin-top: 10px;
}

.sidebar-card-dark {
  background: linear-gradient(135deg, rgba(22, 31, 25, 0.98), rgba(32, 45, 36, 0.98));
  color: var(--white);
}

.sidebar-card-dark h3,
.sidebar-card-dark p {
  color: var(--white);
}

.sidebar-contact-details {
  display: grid;
  gap: 10px;
}

.sidebar-contact-link {
  color: #26372d;
  font-weight: 600;
}

.sidebar-contact-link:hover {
  color: #1d5b3c;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .contact-grid,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-section {
    padding: 20px 0 80px;
  }

  .contact-panel,
  .sidebar-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

.mobile-call-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  background: linear-gradient(135deg, #f6f1df, #d9c393);
  box-shadow: 0 12px 26px rgba(10, 14, 11, 0.34);
  z-index: 1200;
  overflow: hidden;
}

.mobile-call-cta::before {
  content: "";
  width: 24px;
  height: 24px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230b0f0d' d='M6.62 10.79a15.07 15.07 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1v3.5a1 1 0 0 1-1 1C11.85 22 2 12.15 2 4a1 1 0 0 1 1-1H6.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.24 1.01z'/%3E%3C/svg%3E");
}

@media (max-width: 820px) {
  body {
    padding-bottom: 0;
  }

  .site-footer {
    padding-bottom: 132px;
  }

  .mobile-call-cta {
    display: inline-flex;
  }
}

/* -- SUCCESS MODAL -- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 14, 11, 0.72);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 48px 44px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.modal-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.modal-box p {
  color: #4a5450;
  line-height: 1.7;
  margin-bottom: 32px;
}
