:root {
  --green-deep: #4a5d45;
  --green-soft: #7a8f72;
  --brown-warm: #6b5344;
  --brown-light: #9a7b5e;
  --cream: #f7f3eb;
  --cream-dark: #ede6d8;
  --gold: #b8944a;
  --text: #3d3830;
  --text-light: #5c5549;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
}

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

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

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 1;
  min-width: 0;
  transition: opacity 0.2s ease;
}

.logo img {
  height: clamp(76px, 12vw, 92px);
  width: auto;
  max-width: min(200px, 42vw);
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.logo:hover {
  opacity: 0.8;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.site-nav a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--green-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--green-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */

.hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-01.jpg");
  background-size: cover;
  background-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 18, 16, 0.15) 0%,
    rgba(20, 18, 16, 0.35) 55%,
    rgba(20, 18, 16, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 92%);
  color: var(--white);
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-verse {
  margin-bottom: 2.25rem;
}

.hero-verse-combined .hero-verse-line + .hero-verse-line {
  margin-top: 0.65rem;
}

.hero-verse-combined cite {
  display: block;
  margin-top: 1rem;
}

.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-scroll-cue svg {
  width: 1.6rem;
  height: 1.6rem;
  opacity: 0.95;
}

.hero-verse p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-verse cite {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.7);
}

.btn {
  display: inline-block;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  min-height: 48px;
  border-radius: 2px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold {
  margin-top: 0.5rem;
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.btn-gold:hover {
  background-color: #a6833f;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-soft);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
  transform: translateY(-1px);
}

/* Welcome */

.welcome {
  background-color: var(--cream);
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}

.welcome p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--brown-warm);
  max-width: 40rem;
  margin-inline: auto;
}

/* Home Sections */

.home-section {
  padding: 4rem 0;
}

.home-section-alt {
  background-color: var(--cream-dark);
}

.home-section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--green-deep);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-lead.centered {
  text-align: center;
  margin-inline: auto;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: var(--white);
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--gold);
  text-align: center;
}

.feature-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

.inline-verse {
  margin-top: 2rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
  max-width: 40rem;
}

.inline-verse p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.inline-verse cite {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-style: normal;
}

.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.nav-cards-four {
  grid-template-columns: repeat(4, 1fr);
}

.nav-cards-five {
  grid-template-columns: repeat(5, 1fr);
}

.nav-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.inline-ref {
  font-style: italic;
  font-size: 0.95em;
  color: var(--text-light);
  white-space: nowrap;
}

.jesus-crucifixion-figure {
  margin: 0 auto 1.5rem;
  max-width: 420px;
  text-align: center;
}

.jesus-crucifixion-figure img {
  width: 100%;
  height: auto;
  margin-inline: auto;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  padding: 0.75rem;
  box-shadow: 0 8px 28px rgba(61, 56, 48, 0.08);
}

.cabin-gallery-four {
  grid-template-columns: repeat(2, 1fr);
}

.schedule-list h3 {
  color: var(--green-deep);
}


.nav-card {
  display: block;
  padding: 1.75rem 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--cream-dark);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.nav-card:hover {
  border-color: var(--green-soft);
  transform: translateY(-2px);
}

.nav-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.nav-card p {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* Inner Pages */

.page-header {
  background-color: var(--green-deep);
  color: var(--cream);
  text-align: center;
  padding: 3.5rem 0 3rem;
}

.page-header h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.page-intro {
  font-size: 1.125rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.65;
}

.page-intro-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-intro-link:hover {
  opacity: 0.85;
}

.page-header .page-intro-link {
  color: var(--gold);
}

/* Page Hero (photo header) */

.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/cabin/sunset-clouds-dramatic.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61, 56, 48, 0.4) 0%,
    rgba(74, 93, 69, 0.55) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 4rem 0 3.5rem;
}

.page-hero-content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-hero-content .page-intro {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

/* Our Heart */

.heart-featured-verses {
  background-color: var(--cream-dark);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(107, 83, 68, 0.12);
}

.featured-verses-grid {
  max-width: 820px;
  margin-inline: auto;
}

.featured-verse {
  text-align: center;
  padding: 1.5rem;
}

.featured-verse-combined .hero-verse-line + .hero-verse-line {
  margin-top: 0.65rem;
}

.featured-verse-combined cite {
  display: block;
  margin-top: 1rem;
}

.featured-verse-combined .hero-verse-line {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 0;
}

.featured-verse-combined .hero-verse-line + .hero-verse-line {
  margin-top: 0.65rem;
}

.guide-list-nested {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
}

.heart-burnout p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
}

.featured-verse p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.featured-verse cite {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.heart-personal {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.heart-personal-text p {
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--text);
}

.heart-signature {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  color: var(--brown-warm);
  margin-top: 0.5rem;
}

.heart-personal-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.scripture-groups {
  display: grid;
  gap: 2.5rem;
}

.scripture-group-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brown-warm);
  margin-bottom: 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.heart-kindle {
  background-color: var(--cream-dark);
  padding: 2.5rem;
  margin-inline: -1rem;
  border-radius: 2px;
}

.heart-kindle-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 42rem;
}

.heart-kindle-icon {
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.heart-kindle h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0.75rem;
}

.heart-kindle h2 .greek-word {
  display: inline-block;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-left: 0.35em;
  color: var(--gold-dark, #8a6d3b);
}

.heart-kindle p {
  line-height: 1.75;
  color: var(--text);
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.mission-card {
  background-color: var(--white);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--gold);
}

.mission-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.mission-card .statement-list {
  margin-left: 1rem;
}

.mission-card p {
  line-height: 1.7;
  color: var(--text);
}

.heart-section-alt {
  background-color: var(--cream-dark);
  padding: 2.5rem;
  margin-inline: -1rem;
  border-radius: 2px;
}

.pull-quote {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.pull-quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
  color: var(--green-deep);
}

.heart-cta {
  text-align: center;
  padding: 2rem 0 1rem;
}

.heart-cta h2 {
  border-bottom: none;
  text-align: center;
  margin-bottom: 0.75rem;
}

.heart-cta > p {
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.heart-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.page-content {
  padding: 3.5rem 0 4rem;
}

.content-section {
  margin-bottom: 3.5rem;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.section-lead {
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 40rem;
}

.intro-verses {
  text-align: center;
  padding: 2.5rem 0 1rem;
}

.verse-block {
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.verse-block p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}

.verse-block cite {
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.scripture-list {
  list-style: none;
  display: grid;
  gap: 2rem;
}

.scripture-item {
  padding: 0 0 2rem 1.25rem;
  border-left: 3px solid var(--gold);
  border-bottom: 1px solid var(--cream-dark);
}

.scripture-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.scripture-item p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.scripture-ref {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.statement-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 40rem;
}

/* What We Believe */

.beliefs-intro p,
.beliefs-closing p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text);
}

.beliefs-closing {
  text-align: center;
  padding-top: 1rem;
}

.beliefs-closing a {
  color: var(--green-deep);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s ease;
}

.beliefs-closing a:hover {
  color: var(--brown-warm);
}

.belief-statement {
  margin-bottom: 1.25rem;
  line-height: 1.75;
  color: var(--text);
}

.belief-scripture {
  margin: 0;
  padding: 1.25rem 0 1.25rem 1.25rem;
  border-left: 3px solid var(--gold);
  background-color: var(--cream);
}

.belief-scripture p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.belief-scripture cite {
  display: block;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.statement-intro {
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.statement-list,
.guide-list,
.priority-list {
  margin-left: 1.25rem;
  max-width: 42rem;
}

.statement-list li,
.guide-list li,
.priority-list li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: var(--text);
}

.priority-list {
  margin-bottom: 2rem;
}

/* The Cabin */

.cabin-banner {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.cabin-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.cabin-intro {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
}

.free-badge {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: var(--green-deep);
  background-color: var(--cream-dark);
  padding: 0.6rem 1.25rem;
  margin: 1.5rem 0;
  border-left: 3px solid var(--gold);
}

.availability-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background-color: var(--cream-dark);
  font-size: 1.05rem;
  color: var(--text-light);
  border-left: 3px solid var(--green-soft);
}

.guide-promo {
  text-align: center;
  padding-top: 1rem;
}

.guide-promo p {
  margin-bottom: 1.25rem;
}

.guide-promo a:not(.btn) {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.cabin-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.cabin-highlights li {
  text-align: center;
  padding: 1.25rem 1rem;
  border-left: 3px solid var(--gold);
}

.highlight-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.highlight-value {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-deep);
}

.cabin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.cabin-split-text p {
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}

.cabin-split-text p:last-child {
  margin-bottom: 0;
}

.cabin-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.amenity-list {
  list-style: none;
  display: grid;
  gap: 1.75rem;
}

.amenity-list li {
  padding-left: 1.25rem;
  border-left: 3px solid var(--green-soft);
}

.amenity-list h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.35rem;
}

.amenity-list p {
  color: var(--text-light);
  line-height: 1.65;
}

.cabin-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cabin-gallery-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.cabin-gallery-full figure {
  margin: 0;
}

.cabin-gallery-full img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.cabin-gallery-full figcaption {
  font-size: 0.95rem;
  color: var(--brown-light);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.4;
}

.gallery-hint {
  font-size: 0.95rem;
  color: var(--brown-light);
  font-style: italic;
  margin: -0.5rem 0 1.25rem;
}

.cabin-gallery button.gallery-thumb,
.cabin-gallery-full button.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: 2px;
  overflow: hidden;
}

.cabin-gallery button.gallery-thumb:focus-visible,
.cabin-gallery-full button.gallery-thumb:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(20, 18, 16, 0.92);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: transparent;
  cursor: zoom-out;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.gallery-lightbox-nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.28);
}

.gallery-lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-lightbox-prev {
  left: max(0.75rem, calc(50% - min(550px, 48vw) - 3.5rem));
}

.gallery-lightbox-next {
  right: max(0.75rem, calc(50% - min(550px, 48vw) - 3.5rem));
}

.gallery-lightbox-image-wrap {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 96vw);
  max-height: 78vh;
}

.gallery-lightbox-image-wrap img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-caption {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  max-width: 40rem;
}

.cabin-gallery figure {
  margin: 0;
}

.cabin-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.cabin-gallery figcaption {
  font-size: 1rem;
  color: var(--brown-light);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Inquire */

.container-narrow {
  width: min(560px, 92%);
}

[hidden] {
  display: none !important;
}

.inquiry-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}

.form-check input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--green-deep);
}

.form-check label {
  font-weight: 300;
  line-height: 1.5;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--green-deep);
}

.required {
  color: var(--gold);
}

.inquiry-form input,
.inquiry-form textarea {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  background-color: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--green-soft);
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  justify-self: start;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-error {
  color: #8b3a3a;
  font-size: 0.9rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* Footer */

.site-footer {
  background-color: var(--green-deep);
  color: var(--cream);
  padding: 3.5rem 0 0;
  font-size: 1.05rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 243, 235, 0.15);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: opacity 0.2s ease;
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-logo img {
  width: auto;
  height: clamp(76px, 12vw, 98px);
  max-width: min(260px, 58vw);
  display: block;
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.85;
  max-width: 22rem;
}

.footer-social {
  margin-top: 0.85rem;
}

.footer-social a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-verse blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.footer-verse blockquote + blockquote {
  margin-top: 1.1rem;
}

.footer-verse cite {
  display: block;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
  font-size: 1rem;
  opacity: 0.75;
}

/* Mobile */

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .site-nav.open {
    max-height: 320px;
    padding: 1rem 0 1.5rem;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 3.5rem 1rem;
  }

  .hero-verse {
    margin-bottom: 1.75rem;
  }

  .welcome {
    padding: 2.5rem 0;
  }

  .page-header {
    padding: 2.5rem 0 2rem;
  }

  .page-content {
    padding: 2.5rem 0 3rem;
  }

  .content-section {
    margin-bottom: 2.5rem;
  }

  .scripture-item {
    padding: 0 0 1.5rem 1rem;
  }

  .cabin-banner img {
    height: 260px;
  }

  .cabin-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cabin-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cabin-gallery {
    grid-template-columns: 1fr;
  }

  .feature-cards,
  .nav-cards,
  .nav-cards-four,
  .nav-cards-five {
    grid-template-columns: 1fr;
  }

  .cabin-gallery-four {
    grid-template-columns: 1fr;
  }

  .featured-verses-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .heart-personal {
    grid-template-columns: 1fr;
  }

  .heart-personal-image {
    order: -1;
  }

  .mission-cards {
    grid-template-columns: 1fr;
  }

  .heart-kindle,
  .heart-section-alt {
    margin-inline: 0;
    padding: 1.75rem 1.25rem;
  }

  .page-hero {
    min-height: 220px;
  }

  .site-nav ul {
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-tagline {
    margin-inline: auto;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .home-section {
    padding: 3rem 0;
  }

  .logo {
    gap: 0.65rem;
  }

  .logo img {
    height: clamp(56px, 14vw, 64px);
    max-width: 120px;
  }

  .logo-text {
    font-size: clamp(1rem, 4vw, 1.15rem);
    max-width: 6.5rem;
  }

  .heart-cta-links {
    flex-direction: column;
    align-items: stretch;
  }

  .heart-cta-links .btn {
    width: 100%;
    text-align: center;
  }

  .site-nav a {
    font-size: 1.05rem;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .nav-cards-four,
  .nav-cards-five {
    grid-template-columns: repeat(2, 1fr);
  }

  .cabin-gallery-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-cards {
    grid-template-columns: 1fr;
  }

  .featured-verses-grid {
    grid-template-columns: 1fr;
  }

  .site-nav ul {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }

  .logo img {
    height: clamp(64px, 12vw, 72px);
    max-width: 160px;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}
/* Cabin page — owner copy only (KAM Edits) */
.cabin-owner-copy p {
  margin-bottom: 1.25rem;
}

.cabin-owner-copy h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--green-deep);
}

.cabin-gallery-four figcaption {
  font-size: 0.95rem;
  line-height: 1.35;
}

.page-header-sub {
  margin-top: 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.page-header-body {
  max-width: 40rem;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  text-align: center;
}

/* Simple Who / What / Why / Where / When tiles */
.nav-cards-simple .nav-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  text-align: center;
  padding: 1.5rem 1rem;
}

.nav-cards-simple .nav-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: 0.04em;
}

/* Homepage: Who / What / Why / Where / When — elegant text links, no boxes */
.nav-cards-text-only {
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-items: center;
  margin-top: 1.25rem;
}

.nav-cards-text-only .nav-card {
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: 0;
  padding: 0.6rem 0.4rem;
}

.nav-cards-text-only .nav-card:hover {
  border: none;
  transform: none;
}

.nav-cards-text-only .nav-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--green-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-cards-text-only .nav-card:hover h3 {
  color: var(--gold);
}

.mission-cards-two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .mission-cards-two {
    grid-template-columns: 1fr;
  }
}

.guest-quote {
  margin: 0;
}

.guest-quote + .guest-quote {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.guest-quote p {
  margin-bottom: 1rem;
  font-style: italic;
}

.guest-quote cite {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}


/* Guest testimonials carousel */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.guest-carousel {
  outline: none;
}

.guest-carousel:focus-visible {
  box-shadow: 0 0 0 2px var(--gold);
  border-radius: 4px;
}

.guest-carousel-viewport {
  min-height: 1em;
}

.guest-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.guest-carousel-controls[hidden] {
  display: none;
}

.guest-carousel-nav {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--cream);
  color: var(--text);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.guest-carousel-nav:hover:not(:disabled) {
  background: var(--cream-dark);
  border-color: var(--gold);
  color: var(--gold);
}

.guest-carousel-nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.guest-carousel-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.guest-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.guest-carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.guest-carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.guest-carousel-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
