:root {
  --bg: #f7f1e8;
  --bg-alt: #efe4d3;
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: #fff9f1;
  --text: #2e241c;
  --muted: #655549;
  --line: rgba(76, 54, 35, 0.12);
  --primary: #6a8c4f;
  --primary-deep: #4d6739;
  --accent: #c88c52;
  --shadow: 0 24px 60px rgba(46, 36, 28, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.55), transparent 32%),
    linear-gradient(180deg, #f5ede1 0%, var(--bg) 35%, #f3ebdf 100%);
  line-height: 1.7;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 241, 232, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.brand,
.hero h1,
.section h2,
.feature-card h3,
.share-box h3,
.footer-title {
  font-family: "Cormorant Garamond", serif;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(76, 54, 35, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.4rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.75rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--primary);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(76, 54, 35, 0.16);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights li {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(76, 54, 35, 0.1);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  min-height: 24rem;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
  border: 1px solid rgba(76, 54, 35, 0.08);
}

.hero-card img {
  height: 100%;
  object-fit: cover;
}

.hero-card-large {
  inset: 1.5rem 0 0 3rem;
}

.hero-card-small {
  width: 38%;
  height: 37%;
  right: 0;
}

.hero-card-small.top {
  top: 0;
}

.hero-card-small.bottom {
  bottom: 0;
}

.section {
  padding: 4.5rem 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
  border-block: 1px solid rgba(76, 54, 35, 0.08);
}

.section-grid,
.mission-grid,
.shares-layout {
  display: grid;
  gap: 1.5rem;
}

.section h2 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  max-width: 12ch;
}

.section h2.experience-heading {
  max-width: none;
}

.stack > * + * {
  margin-top: 1rem;
}

.mission-card,
.feature-card,
.share-box {
  background: var(--surface);
  border: 1px solid rgba(76, 54, 35, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.mission-card {
  padding: 1.5rem;
}

blockquote {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.scripture-text {
  margin-top: 0;
  font-size: 1.05rem;
}

.scripture-reference {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--primary-deep);
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading.compact {
  margin-bottom: 1.2rem;
}

.experience-image-strip {
  display: flex;
  gap: 1rem;
  width: 100%;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 0.35rem;
}

.experience-image-strip figure {
  margin: 0;
  flex: 0 0 auto;
}

.experience-image img {
  display: block;
  height: auto;
}

.experience-image-wide img {
  width: min(708px, 92vw);
}

.experience-image-tall img {
  width: min(408px, 58vw);
}

.sheep-image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.sheep-image-strip figure {
  margin: 0;
  flex: 1 1 334px;
  max-width: 334px;
}

.sheep-image-strip img {
  display: block;
  width: 100%;
  height: auto;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-copy {
  padding: 1.4rem;
}

.feature-card h3,
.share-box h3,
.footer-title {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  line-height: 1;
}

.steps-list {
  margin: 1.25rem 0;
  padding-left: 1.15rem;
}

.steps-list li + li {
  margin-top: 0.45rem;
}

.shares-panel {
  display: grid;
  gap: 1rem;
}

.share-box {
  padding: 1.35rem;
}

.accent-box {
  background: linear-gradient(135deg, rgba(200, 140, 82, 0.18), rgba(106, 140, 79, 0.16));
}

.pricing-heading h2 {
  max-width: 11ch;
}

.pricing-intro {
  max-width: 36rem;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.88);
  border: 1px solid rgba(76, 54, 35, 0.1);
  box-shadow: var(--shadow);
}

.pricing-card::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 6.5rem;
  height: 6.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.18;
  pointer-events: none;
}

.accent-pricing-card {
  background: linear-gradient(135deg, rgba(200, 140, 82, 0.2), rgba(106, 140, 79, 0.16));
}

.milk-card::after {
  width: 5.75rem;
  height: 5.75rem;
  background-image: url("assets/milk-bottle-milk-svgrepo-com.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.egg-card::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128' fill='none' stroke='%23c88c52' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M64 20c-10 0-19 8-24 18-5 9-8 20-8 30 0 22 14 40 32 40s32-18 32-40c0-10-3-21-8-30-5-10-14-18-24-18Z'/%3E%3Cpath d='M51 63c4-6 9-9 13-9' opacity='.8'/%3E%3Cpath d='M77 72c-3 8-10 14-18 16' opacity='.8'/%3E%3C/svg%3E");
}

.pricing-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.pricing-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.pricing-amount {
  position: relative;
  z-index: 1;
  margin: 0.8rem 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 0.95;
  color: var(--primary-deep);
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  background: var(--surface-strong);
  box-shadow: 0 10px 30px rgba(46, 36, 28, 0.08);
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

.contact-section {
  padding-top: 2rem;
}

.contact-shell {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    radial-gradient(circle at top right, rgba(200, 140, 82, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(106, 140, 79, 0.14), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(76, 54, 35, 0.1);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  max-width: 10ch;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.86);
  border: 1px solid rgba(76, 54, 35, 0.1);
  box-shadow: 0 16px 35px rgba(46, 36, 28, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(46, 36, 28, 0.12);
  border-color: rgba(106, 140, 79, 0.3);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(106, 140, 79, 0.22);
}

.contact-label {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.contact-value {
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  font-weight: 700;
  word-break: break-word;
}

.contact-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(76, 54, 35, 0.12);
}

.footer-title {
  font-size: 1.9rem;
}

@media (min-width: 720px) {
  .hero {
    padding: 5rem 0 4rem;
  }

  .section-grid,
  .mission-grid,
  .cards-grid,
  .shares-layout,
  .pricing-grid,
  .contact-shell,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid .wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }

  .footer-layout {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .shares-layout {
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
  }

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

@media (max-width: 719px) {
  .nav-shell {
    align-items: center;
  }

  .brand {
    max-width: calc(100% - 4rem);
    font-size: 1.35rem;
    line-height: 1.1;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    order: 3;
    padding: 0.8rem;
    font-size: 0.95rem;
    background: rgba(255, 249, 241, 0.96);
    border: 1px solid rgba(76, 54, 35, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 40px rgba(46, 36, 28, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: rgba(106, 140, 79, 0.12);
  }

  .hero-media {
    min-height: 18rem;
  }

  .hero-card-large {
    inset: 1rem 0 0 1rem;
  }

  .hero-card-small {
    width: 42%;
  }
}
