:root {
  --cream: #fbf3e7;
  --cream-deep: #f4e4d2;
  --terracotta: #b76545;
  --terracotta-dark: #8f4630;
  --soft-brown: #8a6b55;
  --warm-charcoal: #302a25;
  --muted: #6e625b;
  --card: rgba(255, 250, 243, 0.82);
  --line: rgba(138, 107, 85, 0.22);
  --shadow: 0 24px 70px rgba(83, 54, 35, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--warm-charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 243, 231, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.button-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(138, 107, 85, 0.18);
  border-radius: 50%;
  background: #f8eee0;
  box-shadow: 0 10px 28px rgba(83, 54, 35, 0.08);
  object-fit: cover;
  mix-blend-mode: multiply;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--terracotta-dark);
}

.section {
  padding: 104px clamp(20px, 6vw, 88px);
  scroll-margin-top: 170px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  min-height: calc(100vh - 75px);
  padding-top: 70px;
}

.hero-content,
.copy-block,
.section-intro,
.cta-content,
.application-intro {
  max-width: 790px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6.2vw, 5.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.8vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.hero-subtitle,
.section-intro p,
.copy-block p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 34px;
}

.button-row {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--terracotta);
  color: #fff8ee;
  box-shadow: 0 14px 30px rgba(183, 101, 69, 0.24);
}

.button.primary:hover {
  background: var(--terracotta-dark);
}

.button.secondary {
  background: rgba(255, 250, 243, 0.62);
  border-color: var(--line);
  color: var(--warm-charcoal);
}

.hero-panel {
  position: relative;
  display: grid;
  min-height: 470px;
  align-content: end;
  gap: 12px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(183, 101, 69, 0.22), transparent 34%),
    linear-gradient(145deg, #fff8ee, var(--cream-deep));
  box-shadow: var(--shadow);
}

.hero-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(138, 107, 85, 0.18);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.74);
  color: var(--soft-brown);
  font-weight: 800;
}

.warmth-ring {
  position: absolute;
  top: 52px;
  left: 50%;
  width: min(70%, 280px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border: 1px solid rgba(183, 101, 69, 0.28);
  border-radius: 50%;
}

.warmth-ring::before,
.warmth-ring::after,
.warmth-ring span {
  position: absolute;
  inset: 15%;
  content: "";
  border: 1px solid rgba(183, 101, 69, 0.26);
  border-radius: 50%;
}

.warmth-ring::after {
  inset: 30%;
}

.warmth-ring span {
  inset: 43%;
  background: var(--terracotta);
  border: 0;
  box-shadow: 0 0 60px rgba(183, 101, 69, 0.45);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.warmth-photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream-deep);
  box-shadow: var(--shadow);
}

.warmth-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.muted-band {
  background: #f6e7d6;
}

.section-intro {
  margin-bottom: 42px;
}

.stats-grid,
.card-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat-card,
.info-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 14px 44px rgba(83, 54, 35, 0.08);
}

.stat-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.stat-card strong {
  color: var(--terracotta-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 0.95;
}

.stat-card p {
  margin: 22px 0 auto;
  color: var(--warm-charcoal);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
}

.stat-card small {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.closing-line {
  margin: 34px 0 0;
  color: var(--terracotta-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.5rem);
}

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

.info-card {
  min-height: 240px;
  padding: 30px;
}

.info-card p {
  color: var(--muted);
}

.retreat-section {
  background:
    linear-gradient(rgba(251, 243, 231, 0.92), rgba(251, 243, 231, 0.92)),
    repeating-linear-gradient(90deg, rgba(183, 101, 69, 0.12), rgba(183, 101, 69, 0.12) 1px, transparent 1px, transparent 96px);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 190px;
  padding: 26px;
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--terracotta);
  font-weight: 800;
}

.outcomes-section {
  padding-top: 82px;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.outcome {
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8ee;
  color: var(--soft-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  text-align: center;
}

.team-section {
  background: #fff8ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 243, 231, 0.68);
  box-shadow: 0 16px 42px rgba(83, 54, 35, 0.08);
}

.team-avatar {
  position: relative;
  display: grid;
  width: 108px;
  height: 108px;
  margin-bottom: 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(183, 101, 69, 0.28);
  border-radius: 50%;
  background: #f4e4d2;
  color: var(--terracotta-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.team-avatar img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar span {
  position: relative;
  z-index: 0;
}

.team-avatar img[src=""],
.team-avatar img:not([src]) {
  display: none;
}

.team-card p {
  color: var(--muted);
}

.committee-card {
  margin-top: 20px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-charcoal);
  color: #fff8ee;
  box-shadow: var(--shadow);
}

.committee-card .eyebrow {
  color: #f0b79c;
}

.committee-card h3 {
  max-width: 760px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}

.committee-card p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 248, 238, 0.76);
  font-size: 1.04rem;
}

.committee-card a {
  color: #fff8ee;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.team-link {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  color: var(--terracotta-dark);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.team-link:hover {
  transform: translateY(-1px);
  border-color: rgba(183, 101, 69, 0.42);
  background: #fffaf3;
}

.photo-section {
  padding-top: 92px;
}

.photo-section[hidden] {
  display: none;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}

.photo-card {
  overflow: hidden;
  min-height: 230px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream-deep);
  box-shadow: 0 18px 54px rgba(83, 54, 35, 0.09);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-focus, 50% 50%);
  transition: transform 600ms ease;
}

.photo-card:hover img {
  transform: scale(1.03);
}

.photo-large {
  grid-row: 1 / 3;
}

.photo-large img {
  object-position: var(--photo-focus, 50% 82%);
}

.photo-detail img {
  object-position: var(--photo-focus, 50% 78%);
}

.photo-room img {
  object-position: var(--photo-focus, 50% 18%);
}

.photo-empty {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed rgba(138, 107, 85, 0.34);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
}

.cta-section {
  padding-top: 78px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.cta-content {
  margin: 0;
  padding: clamp(36px, 7vw, 76px);
  border: 1px solid rgba(255, 248, 238, 0.24);
  border-radius: 32px;
  background: var(--warm-charcoal);
  color: #fff8ee;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-content p:not(.eyebrow) {
  color: rgba(255, 248, 238, 0.74);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.cta-content .eyebrow {
  color: #f0b79c;
}

.cta-content .button {
  margin-top: 12px;
}

.cta-content .button.secondary {
  background: transparent;
  border-color: rgba(255, 248, 238, 0.28);
  color: #fff8ee;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 54px rgba(83, 54, 35, 0.09);
}

.contact-form-header {
  margin-bottom: 8px;
}

.contact-form-header h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-form-header p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-form[hidden] {
  display: none;
}

.contact-form .form-actions {
  padding-top: 0;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.inquiry-success {
  grid-column: 2;
  padding: clamp(28px, 4vw, 44px);
}

.inquiry-success[hidden] {
  display: none;
}

.inquiry-success h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--warm-charcoal);
}

.site-footer p {
  max-width: 560px;
  margin: 4px 0;
}

.site-footer a {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.application-hero {
  padding-bottom: 56px;
}

.application-hero h1 {
  max-width: 920px;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
}

.back-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  color: var(--soft-brown);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.back-link:hover {
  transform: translateY(-1px);
  border-color: rgba(183, 101, 69, 0.4);
  background: #fffaf3;
}

.intro-note {
  display: inline-flex;
  margin: 4px 0 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.78);
  color: var(--terracotta-dark);
  font-weight: 800;
}

.application-section {
  padding-top: 18px;
}

.application-form {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  gap: 22px;
}

.application-form[hidden] {
  display: none;
}

.form-card,
.success-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 54px rgba(83, 54, 35, 0.09);
}

.form-card {
  min-width: 0;
  margin: 0;
  padding: clamp(24px, 4vw, 36px);
}

.form-card legend {
  padding: 0 0 10px;
  color: var(--warm-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span,
.question-text {
  color: var(--soft-brown);
  font-weight: 800;
}

.field em,
.field small {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(138, 107, 85, 0.28);
  border-radius: 16px;
  background: #fffaf3;
  color: var(--warm-charcoal);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 52px;
  padding: 0 16px;
}

textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--terracotta) 50%),
    linear-gradient(135deg, var(--terracotta) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--terracotta);
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(183, 101, 69, 0.14);
}

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

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

.choice {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(138, 107, 85, 0.22);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.68);
  color: var(--warm-charcoal);
  cursor: pointer;
  font-weight: 700;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.choice:hover {
  transform: translateY(-1px);
  border-color: rgba(183, 101, 69, 0.42);
  background: #fffaf3;
  box-shadow: 0 12px 26px rgba(83, 54, 35, 0.07);
}

.choice input {
  display: grid;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  place-content: center;
  appearance: none;
  border: 2px solid rgba(138, 107, 85, 0.42);
  border-radius: 7px;
  background: #fffdf8;
}

.choice input[type="radio"] {
  border-radius: 50%;
}

.choice input::before {
  width: 10px;
  height: 10px;
  content: "";
  transform: scale(0);
  transition: transform 140ms ease;
  background: var(--terracotta);
}

.choice input[type="checkbox"]::before {
  border-radius: 3px;
}

.choice input[type="radio"]::before {
  border-radius: 50%;
}

.choice input:checked {
  border-color: var(--terracotta);
  background: #fff3e7;
}

.choice input:checked::before {
  transform: scale(1);
}

.choice:has(input:checked) {
  border-color: rgba(183, 101, 69, 0.56);
  background: #fff4e9;
  box-shadow: 0 12px 30px rgba(183, 101, 69, 0.12);
}

.short-field {
  margin-top: 18px;
}

.guideline-stack {
  display: grid;
  gap: 12px;
}

.required-choice {
  align-items: flex-start;
}

.required-choice input {
  margin-top: 2px;
}

.trust-note,
.form-hint,
.character-count {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-note {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 8px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.success-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 68px);
  text-align: center;
}

.success-card[hidden] {
  display: none;
}

.success-card h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
}

.success-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .outcome-list,
  .team-grid,
  .radio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .inquiry-success {
    grid-column: auto;
  }

  .photo-large {
    grid-row: auto;
  }

  .photo-card {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
    scroll-margin-top: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 62px;
  }

  .hero-panel {
    min-height: 380px;
  }

  .split-section,
  .card-grid.three,
  .team-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .warmth-photo {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .stats-grid,
  .feature-grid,
  .outcome-list,
  .choice-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 245px;
  }

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

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}
