:root {
  --olive: #4b5425;
  --olive-dark: #303917;
  --olive-soft: #e6ead1;
  --olive-pale: #f3f5e8;
  --orange: #f47b36;
  --orange-dark: #d95e1f;
  --cream: #fff8ec;
  --ink: #202020;
  --muted: #5c5c4a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--olive-pale);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: var(--olive);
  color: var(--white);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 18px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.wordmark .ki {
  color: var(--orange);
  animation: warm-pulse 5.5s ease-in-out infinite;
}

.wordmark .cafe {
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  padding: 0 0 20px;
  font-size: 1rem;
  font-weight: 900;
}

.main-nav a {
  color: var(--white);
}

.main-nav a.active {
  color: var(--orange);
}

.main-nav .donate {
  padding: 13px 18px;
  background: var(--orange);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.main-nav .donate:hover,
.main-nav .donate:focus-visible {
  transform: translateY(-2px);
  background: var(--orange-dark);
}

.page-hero {
  background: var(--olive);
  color: var(--white);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 48px;
  align-items: stretch;
  min-height: 500px;
  padding: 54px 0 78px;
}

.page-hero-inner > div {
  animation: rise-in 720ms ease both;
}

.page-hero h1 {
  margin: 0 0 26px;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.page-hero p {
  max-width: 660px;
  margin: 0;
  font-size: 1.24rem;
  font-weight: 500;
}

.page-hero img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  animation: slide-in-right 820ms ease both;
}

.cta-row {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -52px;
}

.cta-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.cta-row a:hover,
.cta-row a:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.04);
}

.cta-row a:nth-child(2) {
  background: var(--orange-dark);
}

.cta-row a:nth-child(3) {
  background: #c56b2f;
}

.section {
  padding: 98px 0;
}

.soft {
  background: var(--olive-soft);
}

.cream {
  background: var(--cream);
}

.band {
  background: var(--olive);
  color: var(--white);
}

.section-title {
  margin: 0 0 48px;
  color: var(--olive);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.band .section-title {
  color: var(--white);
}

.section-intro {
  max-width: 840px;
  margin: -26px 0 46px;
  color: var(--muted);
  font-size: 1.25rem;
  font-weight: 500;
}

.band .section-intro {
  color: rgba(255, 255, 255, 0.84);
}

.tile-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.content-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-tile {
  position: relative;
  min-height: 345px;
  overflow: hidden;
  background: var(--white);
}

.image-tile img {
  width: 100%;
  height: 345px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.image-tile:hover img,
.image-tile:focus-within img {
  transform: scale(1.045);
}

.image-tile .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px 30px;
  background: rgba(244, 123, 54, 0.92);
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.05;
  transition: background 220ms ease, transform 220ms ease;
}

.image-tile:hover .caption,
.image-tile:focus-within .caption {
  background: rgba(217, 94, 31, 0.96);
  transform: translateY(-6px);
}

.image-tile .caption small {
  display: block;
  margin-top: 9px;
  font-size: 1rem;
  line-height: 1.28;
  font-weight: 500;
}

.content-card {
  min-height: 250px;
  padding: 34px 30px;
  background: var(--white);
  border-top: 8px solid var(--orange);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.content-card:hover {
  transform: translateY(-6px);
  border-color: var(--olive);
  box-shadow: 0 18px 0 rgba(48, 57, 23, 0.14);
}

.content-card h2,
.content-card h3 {
  margin: 0 0 16px;
  color: var(--olive);
  font-size: 1.65rem;
  line-height: 1.1;
  font-weight: 900;
}

.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 500;
}

.content-card ul {
  margin: 0;
  padding-left: 20px;
}

.wide-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 42px;
  align-items: start;
}

.wide-panel > * {
  min-width: 0;
}

.orange-panel {
  padding: 48px;
  background: var(--orange);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.orange-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.04;
  font-weight: 900;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.orange-panel p {
  margin: 0 0 28px;
  font-size: 1.22rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  background: var(--olive);
  color: var(--white);
  font-weight: 900;
  transition: transform 180ms ease, filter 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn.light {
  background: var(--white);
  color: var(--olive);
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(48, 57, 23, 0.22);
  color: var(--olive-dark);
  font-size: 1.1rem;
  font-weight: 800;
}

.wa-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: 34px;
  align-items: stretch;
}

.wa-map {
  min-height: 430px;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(75, 84, 37, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(75, 84, 37, 0.18) 1px, transparent 1px),
    var(--cream);
  background-size: 44px 44px;
  border: 12px solid var(--olive);
}

.wa-room {
  display: inline-flex;
  min-width: 180px;
  min-height: 78px;
  margin: 10px;
  padding: 18px;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  animation: room-drift 4.5s ease-in-out infinite;
  transition: transform 180ms ease, filter 180ms ease;
}

.wa-room:nth-child(2),
.wa-room:nth-child(5) {
  background: var(--olive);
  animation-delay: 500ms;
}

.wa-room:nth-child(3),
.wa-room:nth-child(6) {
  animation-delay: 900ms;
}

.wa-room:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.06);
}

.calendar-box {
  padding: 34px 30px;
  background: var(--white);
  border-top: 8px solid var(--orange);
}

.calendar-box h3 {
  margin: 0 0 20px;
  color: var(--olive);
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 900;
}

.calendar-slot {
  display: block;
  margin: 12px 0;
  padding: 15px 18px;
  background: var(--olive-soft);
  color: var(--olive-dark);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.calendar-slot:hover,
.calendar-slot:focus-visible {
  transform: translateX(8px);
  background: #dce2bd;
}

.footer {
  padding: 62px 0;
  background: var(--olive-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(120px, auto));
  gap: 42px;
}

.footer strong {
  display: block;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 1.3rem;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.narrow-flow {
  width: min(860px, 100%);
}

.legal-card {
  padding: 32px;
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(75, 84, 37, 0.12);
}

.legal-card p {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.faq-accordion {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-top: 8px solid var(--orange);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 24px 56px 24px 28px;
  color: var(--olive);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.12;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 2rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 28px 28px;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 500;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes room-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes warm-pulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .wrap {
    width: min(100% - 30px, 760px);
  }

  .header-top,
  .page-hero-inner,
  .wide-panel,
  .wa-stage {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .cta-row,
  .tile-grid,
  .content-grid,
  .content-grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    margin-top: 0;
  }

  .orange-panel {
    padding: 34px 28px;
  }
}

@media (max-width: 560px) {
  .header-top {
    padding-top: 28px;
  }

  .wordmark {
    font-size: clamp(2.1rem, 14vw, 3.4rem);
  }

  .main-nav {
    font-size: 0.96rem;
  }

  .search {
    width: 100%;
    max-width: 220px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .page-hero-inner {
    gap: 24px;
    min-height: auto;
    padding: 34px 0 46px;
  }

  .page-hero img {
    min-height: 260px;
  }

  .cta-row a {
    min-height: 82px;
    padding: 20px 18px;
    font-size: 1rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-title {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .orange-panel {
    padding: 30px 24px;
  }

  .section-intro {
    margin: -10px 0 28px;
    font-size: 1.08rem;
  }

  .faq-item summary {
    padding: 20px 52px 20px 20px;
    font-size: 1.18rem;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}
