@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap");
@font-face {
  font-family: "Orange Avenue";
  src: url("../fonts/OrangeAvenueDEMO-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Orange Avenue Outline";
  src: url("../fonts/OrangeAvenueOutlineDEMO-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #FAFAFA;
  color: #1A1A1A;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: #00674F;
  color: #fff;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  padding: 0.7rem 1.2rem;
  background: #00674F;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-140%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid #00674F;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

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

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-delay-4 {
  transition-delay: 0.48s;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
@media (max-width: 900px) {
  nav {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 600px) {
  nav {
    padding: 1.2rem 1.5rem;
  }
}
nav.scrolled {
  background: rgba(250, 250, 250, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.1rem 4rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
@media (max-width: 900px) {
  nav.scrolled {
    padding: 1.1rem 2rem;
  }
}
@media (max-width: 600px) {
  nav.scrolled {
    padding: 1rem 1.5rem;
  }
}
nav .nav-mark {
  font-family: "Orange Avenue", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #1A1A1A;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
}
nav .nav-right {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
@media (max-width: 768px) {
  nav .nav-right {
    display: none;
  }
}
nav .nav-right a {
  font-size: 0.72rem;
  color: #5A5A5A;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
}
nav .nav-right a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #00674F;
  transition: width 0.3s ease;
}
nav .nav-right a:hover {
  color: #00674F;
}
nav .nav-right a:hover::after {
  width: 100%;
}
nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1A1A1A;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  nav .nav-toggle {
    display: flex;
  }
}
nav .nav-toggle .hamburger-icon {
  width: 22px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
nav .nav-toggle .hamburger-icon span {
  display: block;
  height: 1.5px;
  width: 100%;
  background-color: #1A1A1A;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
nav .nav-toggle.is-active .hamburger-icon span:nth-child(1) {
  transform: translateY(6.25px) rotate(45deg);
}
nav .nav-toggle.is-active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
nav .nav-toggle.is-active .hamburger-icon span:nth-child(3) {
  transform: translateY(-6.25px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(-10px);
}
.mobile-nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav-drawer .mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  text-align: center;
}
.mobile-nav-drawer .mobile-nav-links a {
  font-family: "Orange Avenue", serif;
  font-size: 1.7rem;
  color: #1A1A1A;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-nav-drawer .mobile-nav-links a:hover, .mobile-nav-drawer .mobile-nav-links a:focus {
  color: #00674F;
  transform: scale(1.04);
}
.mobile-nav-drawer .mobile-nav-meta {
  margin-top: 3.5rem;
  text-align: center;
  font-size: 0.7rem;
  color: #6E6E6E;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 1.5rem;
  text-align: center;
}
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #00674F, transparent);
  opacity: 0.4;
}
#hero .hero-wordmark {
  font-family: "Orange Avenue", serif;
  font-size: clamp(2.8rem, 8vw, 7rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  color: #1A1A1A;
}
#hero .hero-sub {
  margin-top: 2.2rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #5A5A5A;
  position: relative;
  z-index: 1;
}
#hero .hero-sub::before, #hero .hero-sub::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: #6E6E6E;
  vertical-align: middle;
  margin: 0 1.2rem;
}
@media (max-width: 480px) {
  #hero .hero-sub::before, #hero .hero-sub::after {
    width: 20px;
    margin: 0 0.8rem;
  }
}
#hero .hero-tagline {
  margin-top: 1.8rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5A5A5A;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  #hero .hero-tagline {
    font-size: 0.95rem;
    max-width: 26rem;
  }
}
#hero .hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
#hero .hero-scroll span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #6E6E6E;
}
#hero .hero-scroll::after {
  content: "";
  width: 1px;
  height: 38px;
  background: #00674F;
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
.section-padded {
  padding: 9rem 4rem;
}
@media (max-width: 900px) {
  .section-padded {
    padding: 7rem 2.5rem;
  }
}
@media (max-width: 600px) {
  .section-padded {
    padding: 5rem 1.5rem;
  }
}

#ethos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  border-top: 1px solid #E0E0E0;
}
@media (max-width: 900px) {
  #ethos {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
#ethos .ethos-left .ethos-heading {
  font-family: "Orange Avenue", serif;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1A1A1A;
}
#ethos .ethos-right {
  padding-top: 0.8rem;
}
#ethos .ethos-right p {
  color: #5A5A5A;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  line-height: 2;
  margin-bottom: 2rem;
}
#ethos .ethos-right .ethos-rule {
  width: 50px;
  height: 1px;
  background: #00674F;
  opacity: 0.6;
}

#alliance {
  border-top: 1px solid #E0E0E0;
}
#alliance .alliance-header {
  max-width: 780px;
  margin-bottom: 4.5rem;
}
#alliance .alliance-header .alliance-heading {
  font-family: "Orange Avenue", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.2;
  color: #1A1A1A;
  letter-spacing: 0.01em;
  margin-bottom: 1.8rem;
}
#alliance .alliance-header .alliance-intro {
  color: #5A5A5A;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  line-height: 2;
}
#alliance .alliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 860px) {
  #alliance .alliance-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
#alliance .alliance-card {
  background: #F0F0F0;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
@media (max-width: 600px) {
  #alliance .alliance-card {
    padding: 2.2rem 1.8rem;
  }
}
#alliance .alliance-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 103, 79, 0.45);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.03);
}
#alliance .alliance-card .alliance-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
#alliance .alliance-card .alliance-card-top .card-num {
  font-family: "Orange Avenue", serif;
  font-size: 1.4rem;
  color: #00674F;
  line-height: 1;
}
#alliance .alliance-card .alliance-card-top .card-tier {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #6E6E6E;
}
#alliance .alliance-card .alliance-title {
  font-family: "Orange Avenue", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #1A1A1A;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}
#alliance .alliance-card .alliance-desc {
  color: #5A5A5A;
  font-size: 0.88rem;
  line-height: 1.9;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}
#alliance .alliance-card .alliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
#alliance .alliance-card .alliance-tags span {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5A5A5A;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
}

#apply {
  border-top: 1px solid #E0E0E0;
}
#apply .apply-header {
  max-width: 720px;
  margin-bottom: 4.5rem;
}
#apply .apply-header .apply-heading {
  font-family: "Orange Avenue", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.2;
  margin-bottom: 1.8rem;
  color: #1A1A1A;
}
#apply .apply-header .apply-intro {
  color: #5A5A5A;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  line-height: 2;
}
#apply .apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4.5rem;
}
@media (max-width: 900px) {
  #apply .apply-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}
#apply .apply-section-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #1A1A1A;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #E0E0E0;
}
#apply .apply-windows .window {
  padding: 1.6rem 0;
  border-bottom: 1px solid #E0E0E0;
}
#apply .apply-windows .window .window-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
#apply .apply-windows .window .window-name {
  font-family: "Orange Avenue", serif;
  font-size: 1.35rem;
  color: #1A1A1A;
}
#apply .apply-windows .window .window-status {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
}
#apply .apply-windows .window .window-status--closed {
  color: #5A5A5A;
  border: 1px solid #6E6E6E;
}
#apply .apply-windows .window .window-status--open {
  color: #00674F;
  border: 1px solid #00674F;
}
#apply .apply-windows .window .window-dates {
  font-size: 0.85rem;
  color: #5A5A5A;
  letter-spacing: 0.02em;
}
#apply .apply-windows .window .window-note {
  font-size: 0.68rem;
  color: #6E6E6E;
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}
#apply .apply-requirements .requirements-list {
  list-style: none;
}
#apply .apply-requirements .requirements-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid #E0E0E0;
  color: #5A5A5A;
  font-size: 0.85rem;
  line-height: 1.8;
  padding-left: 1.4rem;
  position: relative;
}
#apply .apply-requirements .requirements-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 5px;
  height: 1px;
  background: #00674F;
}
#apply .apply-requirements .requirements-note {
  margin-top: 1.8rem;
  font-size: 0.75rem;
  color: #6E6E6E;
  line-height: 1.8;
  font-style: italic;
}
#apply .apply-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 3rem 0 1rem;
  text-align: center;
  border-top: 1px solid #E0E0E0;
}
#apply .apply-cta-wrap .btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #00674F;
  background: transparent;
  min-height: 48px;
  min-width: 280px;
  padding: 0.75rem 1.5rem;
  border: 1px solid #00674F;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
@media (max-width: 480px) {
  #apply .apply-cta-wrap .btn-apply {
    width: 100%;
    min-width: 0;
  }
}
#apply .apply-cta-wrap .btn-apply:hover:not(:disabled) {
  background: #00674F;
  color: #fff;
  transform: translateY(-1px);
}
#apply .apply-cta-wrap .btn-apply:disabled, #apply .apply-cta-wrap .btn-apply[aria-disabled=true] {
  opacity: 0.4;
  cursor: not-allowed;
  border: 1px dashed #6E6E6E;
  color: #6E6E6E;
  background: rgba(110, 110, 110, 0.05);
  transform: none;
  pointer-events: none;
  box-shadow: none;
}
#apply .apply-cta-wrap .apply-cta-note {
  font-size: 0.7rem;
  color: #6E6E6E;
  letter-spacing: 0.1em;
}

#faq {
  border-top: 1px solid #E0E0E0;
}
#faq .faq-header {
  max-width: 720px;
  margin-bottom: 4rem;
}
#faq .faq-header .faq-heading {
  font-family: "Orange Avenue", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 1.2rem;
}
#faq .faq-header .faq-intro {
  color: #5A5A5A;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  line-height: 2;
}
#faq .faq-list {
  max-width: 860px;
}
#faq .faq-list .faq-item {
  border-bottom: 1px solid #E0E0E0;
  padding: 1.4rem 0;
}
#faq .faq-list .faq-item summary {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-right: 2.4rem;
  cursor: pointer;
  list-style: none;
  font-family: "Orange Avenue", serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #1A1A1A;
  letter-spacing: 0.02em;
  line-height: 1.5;
  transition: color 0.3s ease;
}
#faq .faq-list .faq-item summary::-webkit-details-marker {
  display: none;
}
#faq .faq-list .faq-item summary:hover {
  color: #00674F;
}
#faq .faq-list .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  color: #00674F;
  transition: transform 0.3s ease;
}
#faq .faq-list .faq-item[open] summary {
  color: #00674F;
}
#faq .faq-list .faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
#faq .faq-list .faq-item .faq-answer {
  padding: 1.2rem 2.6rem 0.2rem 0;
  color: #5A5A5A;
  font-size: 0.88rem;
  line-height: 1.9;
}
#faq .faq-list .faq-item .faq-answer p {
  margin-bottom: 0.8rem;
}
#faq .faq-list .faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}

#endowment {
  border-top: 1px solid #E0E0E0;
}
#endowment .endowment-section {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}
#endowment .endowment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00674F, rgba(0, 103, 79, 0.25));
  opacity: 0.8;
}
#endowment .endowment-section .endowment-header {
  padding: 3.5rem 3rem 2.2rem;
  text-align: center;
}
@media (max-width: 600px) {
  #endowment .endowment-section .endowment-header {
    padding: 2.8rem 1.5rem 1.8rem;
  }
}
#endowment .endowment-section .endowment-header .endowment-badge {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #00674F;
  padding: 0.35rem 1.1rem;
  border: 1px solid rgba(0, 103, 79, 0.25);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  background: rgba(0, 103, 79, 0.03);
}
#endowment .endowment-section .endowment-header .endowment-heading {
  font-family: "Orange Avenue", serif;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  color: #1A1A1A;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
#endowment .endowment-section .endowment-header .endowment-philosophy {
  font-size: 0.85rem;
  line-height: 1.9;
  color: #5A5A5A;
  max-width: 440px;
  margin: 0 auto;
}
#endowment .endowment-section .endowment-fields {
  padding: 0 3rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  border-top: 1px solid #E0E0E0;
  padding-top: 2.2rem;
}
@media (max-width: 600px) {
  #endowment .endowment-section .endowment-fields {
    padding: 1.8rem 1.4rem 1.4rem;
  }
}
#endowment .endowment-section .endowment-fields .fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 480px) {
  #endowment .endowment-section .endowment-fields .fields-row {
    grid-template-columns: 1fr;
  }
}
#endowment .endowment-section .endowment-fields .field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
#endowment .endowment-section .endowment-fields .field-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6E6E6E;
}
#endowment .endowment-section .endowment-fields .field-input {
  background: #FAFAFA;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #1A1A1A;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  width: 100%;
}
#endowment .endowment-section .endowment-fields .field-input::placeholder {
  color: #6E6E6E;
  opacity: 0.5;
}
#endowment .endowment-section .endowment-fields .field-input:focus {
  background: #fff;
  border-color: #00674F;
  box-shadow: 0 0 0 3px rgba(0, 103, 79, 0.08);
}
#endowment .endowment-section .endowment-fields .field-input[aria-invalid=true] {
  border-color: rgba(180, 40, 40, 0.6);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(180, 40, 40, 0.08);
}
#endowment .endowment-section .endowment-fields .field-input:disabled {
  background: #F0F0F0;
  color: #6E6E6E;
  cursor: not-allowed;
  opacity: 0.7;
}
#endowment .endowment-section .endowment-amount-wrap {
  padding: 1.8rem 3rem 2.2rem;
  border-top: 1px solid #E0E0E0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 600px) {
  #endowment .endowment-section .endowment-amount-wrap {
    padding: 1.5rem 1.4rem 1.8rem;
  }
}
#endowment .endowment-section .endowment-amount-wrap .amount-presets {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}
#endowment .endowment-section .endowment-amount-wrap .amount-presets .btn-preset {
  flex: 1;
  background: #F0F0F0;
  border: 1px solid #E0E0E0;
  border-radius: 3px;
  min-height: 40px;
  padding: 0.5rem 0.35rem;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  color: #5A5A5A;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
#endowment .endowment-section .endowment-amount-wrap .amount-presets .btn-preset:hover {
  border-color: rgba(0, 103, 79, 0.4);
  color: #1A1A1A;
}
#endowment .endowment-section .endowment-amount-wrap .amount-presets .btn-preset.active {
  background: #00674F;
  border-color: #00674F;
  color: #fff;
}
#endowment .endowment-section .endowment-amount-wrap .amount-input-wrap {
  display: inline-flex;
  align-items: center;
  background: #FAFAFA;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 0 1.4rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  max-width: 280px;
  width: 100%;
}
#endowment .endowment-section .endowment-amount-wrap .amount-input-wrap:focus-within {
  background: #fff;
  border-color: #00674F;
  box-shadow: 0 0 0 3px rgba(0, 103, 79, 0.08);
}
#endowment .endowment-section .endowment-amount-wrap .amount-input-wrap:has(.amount-input[aria-invalid=true]) {
  border-color: rgba(180, 40, 40, 0.6);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(180, 40, 40, 0.08);
}
#endowment .endowment-section .endowment-amount-wrap .amount-input-wrap .amount-currency {
  font-family: "Orange Avenue", serif;
  font-size: 1.5rem;
  color: #6E6E6E;
  margin-right: 0.5rem;
  line-height: 1;
}
#endowment .endowment-section .endowment-amount-wrap .amount-input-wrap .amount-input {
  border: none;
  background: transparent;
  font-family: "Orange Avenue", serif;
  font-size: 1.5rem;
  color: #1A1A1A;
  padding: 1rem 0;
  width: 100%;
  outline: none;
  line-height: 1;
}
#endowment .endowment-section .endowment-amount-wrap .amount-input-wrap .amount-input::placeholder {
  color: #6E6E6E;
  opacity: 0.4;
}
#endowment .endowment-section .endowment-amount-wrap .amount-input-wrap .amount-input::-webkit-outer-spin-button, #endowment .endowment-section .endowment-amount-wrap .amount-input-wrap .amount-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#endowment .endowment-section .endowment-amount-wrap .amount-input-wrap .amount-input {
  -moz-appearance: textfield;
}
#endowment .endowment-section .endowment-cta {
  padding: 0 3rem 2.2rem;
}
@media (max-width: 600px) {
  #endowment .endowment-section .endowment-cta {
    padding: 0 1.4rem 1.8rem;
  }
}
#endowment .endowment-section .endowment-cta .paypal-button-container {
  min-height: 48px;
}
#endowment .endowment-section .endowment-cta .payment-status {
  margin-top: 1.2rem;
  padding: 1.1rem 1.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #5A5A5A;
  border: 1px solid #E0E0E0;
  animation: panelFadeIn 0.3s ease;
}
#endowment .endowment-section .endowment-cta .payment-status strong {
  font-weight: 500;
  color: #1A1A1A;
}
#endowment .endowment-section .endowment-cta .payment-status--success {
  background: rgba(0, 103, 79, 0.06);
  border-color: rgba(0, 103, 79, 0.25);
  color: #004D3B;
}
#endowment .endowment-section .endowment-cta .payment-status--error {
  background: rgba(180, 40, 40, 0.05);
  border-color: rgba(180, 40, 40, 0.2);
  color: #7a2020;
}
#endowment .endowment-section .endowment-cta .payment-status--processing {
  background: rgba(0, 0, 0, 0.02);
  border-color: #E0E0E0;
  color: #5A5A5A;
}
#endowment .endowment-section .endowment-cta .payment-status--cancelled {
  background: rgba(0, 0, 0, 0.02);
  border-color: #E0E0E0;
  color: #6E6E6E;
}
#endowment .endowment-section .endowment-footer {
  padding: 1.4rem 3rem 2.2rem;
  text-align: center;
  border-top: 1px solid #E0E0E0;
  background: #FAFAFA;
}
@media (max-width: 600px) {
  #endowment .endowment-section .endowment-footer {
    padding: 1.2rem 1.4rem 1.8rem;
  }
}
#endowment .endowment-section .endowment-footer .payment-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  color: #6E6E6E;
  letter-spacing: 0.06em;
}
#endowment .endowment-section .endowment-footer .payment-secure svg {
  flex-shrink: 0;
  opacity: 0.7;
}
#endowment .endowment-section .endowment-footer .endowment-discretion {
  font-size: 0.72rem;
  line-height: 1.8;
  color: #6E6E6E;
  margin-top: 0.8rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

footer {
  border-top: 1px solid #E0E0E0;
  padding: 5rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 768px) {
  footer {
    padding: 4rem 2rem 2.5rem;
  }
}
footer .footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
}
@media (max-width: 768px) {
  footer .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.8rem;
  }
}
footer .footer-left .footer-wordmark {
  font-family: "Orange Avenue", serif;
  font-size: 1.3rem;
  color: #1A1A1A;
}
footer .footer-left .footer-tagline {
  font-size: 0.7rem;
  color: #6E6E6E;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
footer .footer-center {
  text-align: center;
}
footer .footer-center a {
  font-size: 0.75rem;
  color: #5A5A5A;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
footer .footer-center a:hover {
  color: #00674F;
}
footer .footer-right {
  text-align: right;
}
@media (max-width: 768px) {
  footer .footer-right {
    text-align: center;
  }
}
footer .footer-right .footer-copy {
  font-size: 0.65rem;
  color: #6E6E6E;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
footer .footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
footer .footer-legal .legal-trigger {
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  color: #6E6E6E;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  padding: 0.2rem 0;
  transition: color 0.3s ease;
}
footer .footer-legal .legal-trigger:hover {
  color: #00674F;
}

.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 560px;
  z-index: 900;
  background: #004D3B;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 1.4rem 1.6rem 1.2rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 600px) {
  .cookie-consent {
    bottom: 1rem;
    width: calc(100% - 2rem);
    padding: 1.2rem 1.2rem 1rem;
  }
}
.cookie-consent .cookie-consent-text {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
.cookie-consent .cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.cookie-consent .cookie-consent-actions .cookie-btn {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.cookie-consent .cookie-consent-actions .cookie-btn--accept {
  background: #fff;
  color: #004D3B;
  border: 1px solid #fff;
}
.cookie-consent .cookie-consent-actions .cookie-btn--accept:hover {
  background: #008C6A;
  color: #fff;
  border-color: #008C6A;
}
.cookie-consent .cookie-consent-actions .cookie-btn--details, .cookie-consent .cookie-consent-actions .cookie-btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.cookie-consent .cookie-consent-actions .cookie-btn--details:hover, .cookie-consent .cookie-consent-actions .cookie-btn--decline:hover {
  border-color: #fff;
  color: #fff;
}

.legal-modal,
.app-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
@media (max-width: 600px) {
  .legal-modal,
  .app-modal {
    padding: 1rem;
  }
}
.legal-modal.is-open,
.app-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.legal-modal.is-open .legal-modal-dialog,
.legal-modal.is-open .app-modal-dialog,
.app-modal.is-open .legal-modal-dialog,
.app-modal.is-open .app-modal-dialog {
  transform: translateY(0) scale(1);
}
.legal-modal .modal-backdrop,
.legal-modal .legal-modal-backdrop,
.app-modal .modal-backdrop,
.app-modal .legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.legal-modal .legal-modal-dialog,
.legal-modal .app-modal-dialog,
.app-modal .legal-modal-dialog,
.app-modal .app-modal-dialog {
  position: relative;
  z-index: 1;
  background: #FAFAFA;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  width: 100%;
  max-width: 860px;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.legal-modal .legal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.2rem 2.8rem 1.4rem;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 600px) {
  .legal-modal .legal-modal-header {
    padding: 1.6rem 1.4rem 1.1rem;
  }
}
.legal-modal .legal-modal-header .legal-modal-badge {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #00674F;
  margin-bottom: 0.3rem;
}
.legal-modal .legal-modal-header .legal-modal-heading {
  font-family: "Orange Avenue", serif;
  font-size: 1.7rem;
  color: #1A1A1A;
  letter-spacing: 0.01em;
}
.legal-modal .legal-modal-header .legal-modal-close {
  background: none;
  border: 1px solid #E0E0E0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5A5A;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.legal-modal .legal-modal-header .legal-modal-close:hover {
  background: #00674F;
  color: #fff;
  border-color: #00674F;
}
.legal-modal .legal-modal-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 2.8rem;
  background: #F0F0F0;
  border-bottom: 1px solid #E0E0E0;
  overflow-x: auto;
  scrollbar-width: none;
}
.legal-modal .legal-modal-nav::-webkit-scrollbar {
  display: none;
}
@media (max-width: 600px) {
  .legal-modal .legal-modal-nav {
    padding: 0.5rem 1.4rem;
  }
}
.legal-modal .legal-modal-nav .legal-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  padding: 0.55rem 1.1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5A5A5A;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.legal-modal .legal-modal-nav .legal-nav-btn:hover {
  color: #1A1A1A;
  background: rgba(0, 0, 0, 0.03);
}
.legal-modal .legal-modal-nav .legal-nav-btn.active {
  background: #ffffff;
  color: #00674F;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.legal-modal .legal-modal-body {
  padding: 2.2rem 2.8rem;
  overflow-y: auto;
  flex: 1;
}
@media (max-width: 600px) {
  .legal-modal .legal-modal-body {
    padding: 1.6rem 1.4rem;
  }
}
.legal-modal .legal-modal-body .legal-panel {
  display: none;
}
.legal-modal .legal-modal-body .legal-panel.active {
  display: block;
  animation: panelFadeIn 0.3s ease;
}
.legal-modal .legal-modal-body .legal-article-header {
  margin-bottom: 2.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #E0E0E0;
}
.legal-modal .legal-modal-body .legal-article-header h3 {
  font-family: "Orange Avenue", serif;
  font-size: 1.5rem;
  color: #1A1A1A;
  margin-bottom: 0.3rem;
}
.legal-modal .legal-modal-body .legal-article-header .legal-article-meta {
  font-size: 0.68rem;
  color: #6E6E6E;
  letter-spacing: 0.08em;
}
.legal-modal .legal-modal-body .legal-section {
  margin-bottom: 2rem;
}
.legal-modal .legal-modal-body .legal-section h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #00674F;
  margin-bottom: 0.7rem;
}
.legal-modal .legal-modal-body .legal-section p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: #5A5A5A;
  margin-bottom: 0.8rem;
}
.legal-modal .legal-modal-body .legal-section p:last-child {
  margin-bottom: 0;
}
.legal-modal .legal-modal-body .legal-section .legal-contact-line {
  margin-top: 1rem;
  font-size: 0.85rem;
}
.legal-modal .legal-modal-body .legal-section .legal-contact-line a {
  color: #00674F;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 103, 79, 0.4);
}
.legal-modal .legal-modal-body .legal-section .legal-contact-line a:hover {
  border-color: #00674F;
}

.app-modal .app-modal-dialog {
  max-width: 640px;
}
.app-modal .app-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.2rem 2.8rem 1.4rem;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 600px) {
  .app-modal .app-modal-header {
    padding: 1.6rem 1.4rem 1.1rem;
  }
}
.app-modal .app-modal-header .app-modal-badge {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #00674F;
  margin-bottom: 0.3rem;
}
.app-modal .app-modal-header .app-modal-heading {
  font-family: "Orange Avenue", serif;
  font-size: 1.7rem;
  color: #1A1A1A;
  letter-spacing: 0.01em;
}
.app-modal .app-modal-header .app-modal-close {
  background: none;
  border: 1px solid #E0E0E0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5A5A;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.app-modal .app-modal-header .app-modal-close:hover {
  background: #00674F;
  color: #fff;
  border-color: #00674F;
}
.app-modal .app-modal-body {
  padding: 2.2rem 2.8rem;
  overflow-y: auto;
  flex: 1;
}
@media (max-width: 600px) {
  .app-modal .app-modal-body {
    padding: 1.6rem 1.4rem;
  }
}
.app-modal .app-modal-body .app-form-intro {
  font-size: 0.82rem;
  line-height: 1.8;
  color: #5A5A5A;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #E0E0E0;
}
.app-modal .app-modal-body .form-role-panel {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 103, 79, 0.18);
  border-left: 2px solid #00674F;
  background: rgba(0, 103, 79, 0.035);
}
.app-modal .app-modal-body .form-role-panel[hidden] {
  display: none;
}
.app-modal .app-modal-body .form-role-panel .form-role-note {
  color: #5A5A5A;
  font-size: 0.76rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.app-modal .app-modal-body .form-role-panel .form-group {
  margin-top: 0.9rem;
}
.app-modal .app-modal-body [data-role-field][hidden] {
  display: none;
}
.app-modal .app-modal-body .app-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.app-modal .app-modal-body .honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.app-modal .app-modal-body .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.app-modal .app-modal-body .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 480px) {
  .app-modal .app-modal-body .form-row {
    grid-template-columns: 1fr;
  }
}
.app-modal .app-modal-body .form-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6E6E6E;
}
.app-modal .app-modal-body .form-input,
.app-modal .app-modal-body .form-textarea {
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #1A1A1A;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}
.app-modal .app-modal-body .form-input::placeholder,
.app-modal .app-modal-body .form-textarea::placeholder {
  color: #6E6E6E;
  opacity: 0.5;
}
.app-modal .app-modal-body .form-input:focus,
.app-modal .app-modal-body .form-textarea:focus {
  border-color: #00674F;
  box-shadow: 0 0 0 3px rgba(0, 103, 79, 0.08);
}
.app-modal .app-modal-body .form-input[aria-invalid=true],
.app-modal .app-modal-body .form-textarea[aria-invalid=true] {
  border-color: rgba(180, 40, 40, 0.6);
  box-shadow: 0 0 0 3px rgba(180, 40, 40, 0.08);
}
.app-modal .app-modal-body .form-input:disabled,
.app-modal .app-modal-body .form-textarea:disabled {
  background: #F0F0F0;
  color: #6E6E6E;
  cursor: not-allowed;
  opacity: 0.7;
}
.app-modal .app-modal-body .form-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.7;
}
.app-modal .app-modal-body .role-toggle {
  display: flex;
  gap: 0.6rem;
}
.app-modal .app-modal-body .role-toggle .btn-role {
  flex: 1;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  line-height: 1.35;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  color: #5A5A5A;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.app-modal .app-modal-body .role-toggle .btn-role:hover {
  border-color: rgba(0, 103, 79, 0.4);
  color: #1A1A1A;
}
.app-modal .app-modal-body .role-toggle .btn-role.active {
  border-color: #00674F;
  background: rgba(0, 103, 79, 0.05);
  color: #004D3B;
  font-weight: 400;
}
.app-modal .app-modal-body .role-toggle .btn-role:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.app-modal .app-modal-body .form-submit-wrap {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.app-modal .app-modal-body .form-submit-wrap .btn-submit-app {
  width: 100%;
  background: #00674F;
  color: #fff;
  border: 1px solid #00674F;
  border-radius: 4px;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.app-modal .app-modal-body .form-submit-wrap .btn-submit-app:hover:not(:disabled) {
  background: #008C6A;
  transform: translateY(-1px);
}
.app-modal .app-modal-body .form-submit-wrap .btn-submit-app:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.app-modal .app-modal-body .form-submit-wrap .btn-submit-app[aria-busy=true] {
  position: relative;
  cursor: wait;
}
.app-modal .app-modal-body .form-submit-wrap .form-discretion-note {
  font-size: 0.7rem;
  color: #6E6E6E;
  text-align: center;
  line-height: 1.7;
}
.app-modal .app-modal-body .app-status {
  padding: 1rem 1.2rem;
  border-radius: 4px;
  font-size: 0.82rem;
  line-height: 1.7;
  border: 1px solid #E0E0E0;
  display: none;
  animation: panelFadeIn 0.3s ease;
}
.app-modal .app-modal-body .app-status--success {
  display: block;
  background: rgba(0, 103, 79, 0.06);
  border-color: rgba(0, 103, 79, 0.25);
  color: #004D3B;
}
.app-modal .app-modal-body .app-status--error {
  display: block;
  background: rgba(180, 40, 40, 0.05);
  border-color: rgba(180, 40, 40, 0.2);
  color: #7a2020;
}
.app-modal .app-modal-body .app-status--loading {
  display: block;
  background: rgba(0, 0, 0, 0.02);
  border-color: #E0E0E0;
  color: #5A5A5A;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
@media (max-width: 600px) {
  .feedback-modal {
    padding: 1rem;
  }
}
.feedback-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.feedback-modal.is-open .feedback-modal-dialog {
  transform: translateY(0) scale(1);
}
.feedback-modal .feedback-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.feedback-modal .feedback-modal-dialog {
  position: relative;
  z-index: 1;
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: none;
  border-radius: 2px;
  width: 100%;
  max-width: 480px;
  padding: 3.5rem 3rem;
  text-align: center;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.feedback-modal .feedback-modal-dialog .feedback-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #6E6E6E;
  cursor: pointer;
  transition: color 0.3s ease;
}
.feedback-modal .feedback-modal-dialog .feedback-modal-close:hover {
  color: #1A1A1A;
}
.feedback-modal .feedback-modal-dialog .luxury-card-title {
  font-family: "Orange Avenue", serif;
  font-size: 2.2rem;
  color: #1A1A1A;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.feedback-modal .feedback-modal-dialog .luxury-card-message {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  line-height: 1.8;
  color: #5A5A5A;
}
.feedback-modal .feedback-modal-dialog .luxury-card-message strong {
  display: block;
  font-weight: 500;
  color: #1A1A1A;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.feedback-modal .feedback-modal-dialog.status-success {
  border-top: 2px solid #00674F;
}
.feedback-modal .feedback-modal-dialog.status-success .luxury-card-title {
  color: #004D3B;
}
.feedback-modal .feedback-modal-dialog.status-error {
  border-top: 2px solid rgba(180, 40, 40, 0.8);
}
.feedback-modal .feedback-modal-dialog.status-error .luxury-card-title {
  color: #7a2020;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4 {
    transition-delay: 0s !important;
  }
  .mobile-nav-drawer {
    transition: opacity 0.01ms !important;
    transform: none !important;
  }
  .mobile-nav-drawer.is-open {
    transform: none !important;
  }
  .legal-modal,
  .app-modal {
    transition: opacity 0.01ms !important;
  }
  .legal-modal .legal-modal-dialog,
  .legal-modal .app-modal-dialog,
  .app-modal .legal-modal-dialog,
  .app-modal .app-modal-dialog {
    transition: none !important;
    transform: none !important;
  }
  .legal-modal.is-open .legal-modal-dialog,
  .legal-modal.is-open .app-modal-dialog,
  .app-modal.is-open .legal-modal-dialog,
  .app-modal.is-open .app-modal-dialog {
    transform: none !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FAFAFA;
  z-index: 1000;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner .cookie-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 900px;
  width: 100%;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-content p {
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(250, 250, 250, 0.8);
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content p {
    text-align: left;
  }
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.cookie-banner .cookie-banner-actions button {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.cookie-banner .cookie-banner-actions .btn-cookie-link {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(250, 250, 250, 0.6);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cookie-banner .cookie-banner-actions .btn-cookie-link:hover {
  color: #FAFAFA;
}
.cookie-banner .cookie-banner-actions .btn-cookie-accept {
  background: #00674F;
  border: 1px solid #00674F;
  color: #fff;
}
.cookie-banner .cookie-banner-actions .btn-cookie-accept:hover {
  background: #008C6A;
}

*:focus-visible {
  outline: 2px solid #00674F;
  outline-offset: 3px;
}
