:root {
  --green: #7bbd5f;
  --green-deep: #4a9e3f;
  --yellow-green: #c8e04a;
  --cream: #f9f7f2;
  --charcoal: #2b2b2b;
  --charcoal-light: #4a4a4a;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-head: 'Nunito', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 2vw, 1.25rem);
  --space-md: clamp(1.25rem, 3vw, 2rem);
  --space-lg: clamp(2rem, 5vw, 3.5rem);
  --space-xl: clamp(3rem, 8vw, 6rem);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.75em 1.6em;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  outline: none;
}

.btn:focus-visible {
  outline: 3px solid var(--yellow-green);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #3d8834;
}

.btn-secondary {
  background: var(--cream);
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--green-deep);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255,255,255,0.28);
  border-color: var(--white);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 0.85em 2em;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(123, 189, 95, 0.15);
  padding: 0.35em 1em;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.section-label.light {
  color: var(--yellow-green);
  background: rgba(200, 224, 74, 0.15);
}

.section-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--charcoal-light);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 189, 95, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-block: 0.85rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  letter-spacing: -0.03em;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  margin-left: auto;
}

.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  transition: color 0.18s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-deep);
  outline: none;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-xs);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
  }
}

.hero {
  position: relative;
  min-height: min(90vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(43, 43, 43, 0.78) 0%,
    rgba(43, 43, 43, 0.45) 55%,
    rgba(74, 158, 63, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-xl);
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-green);
  margin-bottom: var(--space-sm);
}

.hero-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 10ch;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-badge {
  position: absolute;
  bottom: var(--space-md);
  right: clamp(1rem, 5vw, 2.5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.8;
}

.trust-bar {
  background: var(--green-deep);
  padding-block: var(--space-md);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  white-space: nowrap;
}

.trust-icon {
  font-size: 1.1rem;
}

.benefits {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.benefits .section-heading,
.benefits .section-sub {
  max-width: 620px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border: 1px solid rgba(123, 189, 95, 0.18);
  transition: box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
  box-shadow: 0 10px 35px rgba(74, 158, 63, 0.1);
  transform: translateY(-3px);
}

.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-sm);
}

.benefit-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.65;
}

.products {
  padding-block: var(--space-xl);
  background: linear-gradient(180deg, #eef5e8 0%, var(--cream) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(123, 189, 95, 0.15);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(74, 158, 63, 0.13);
  transform: translateY(-4px);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8f0e3;
}

.product-img-wrap img {
  transition: transform 0.35s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--yellow-green);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: var(--radius-pill);
}

.product-info {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.product-info p {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.product-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  transition: gap 0.2s, color 0.2s;
}

.product-link::after {
  content: '\2192';
}

.product-link:hover,
.product-link:focus-visible {
  color: #3d8834;
  gap: 0.55em;
  outline: none;
}

.products-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.how-it-works {
  padding-block: var(--space-xl);
  background: var(--charcoal);
}

.how-it-works .section-label {
  color: var(--yellow-green);
  background: rgba(200, 224, 74, 0.12);
}

.how-it-works .section-heading {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 700px) {
  .steps {
    flex-direction: row;
    align-items: flex-start;
  }
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--yellow-green);
  line-height: 1;
}

.step-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.step-divider {
  flex-shrink: 0;
  background: rgba(200, 224, 74, 0.2);
}

@media (max-width: 699px) {
  .step-divider {
    width: 2px;
    height: 40px;
    margin-left: calc(clamp(2.5rem, 5vw, 3.5rem) / 2 - 1px);
    margin-block: 0.5rem;
  }
}

@media (min-width: 700px) {
  .step-divider {
    width: 40px;
    height: 2px;
    margin-top: calc(clamp(2.5rem, 5vw, 3.5rem) / 2 - 1px);
    margin-inline: var(--space-sm);
  }
}

.showcase {
  padding-block: 0;
  background: var(--cream);
  overflow: hidden;
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .showcase-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
  }
}

.showcase-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

@media (min-width: 860px) {
  .showcase-img {
    aspect-ratio: auto;
  }
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-content {
  background: #edf5e8;
  padding: var(--space-xl) clamp(1.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

.showcase-content h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--charcoal);
  line-height: 1.2;
}

.showcase-content p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  max-width: 460px;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-block: var(--space-xs);
}

.showcase-list li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.showcase-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-deep);
  flex-shrink: 0;
}

.mailing {
  background: var(--green-deep);
  padding-block: var(--space-xl);
}

.mailing-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  justify-content: space-between;
}

.mailing-text {
  flex: 1;
  min-width: min(100%, 300px);
}

.mailing-text h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.mailing-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.mailing-form-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mailing-cta-note {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.mailing-form-wrap .btn-primary {
  background: var(--yellow-green);
  color: var(--charcoal);
}

.mailing-form-wrap .btn-primary:hover,
.mailing-form-wrap .btn-primary:focus-visible {
  background: #b8d03a;
}

.mailing-fine {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.site-footer {
  background: var(--charcoal);
  padding-block: var(--space-lg) var(--space-md);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--yellow-green);
  font-weight: 400;
  transition: opacity 0.18s;
}

.footer-email:hover,
.footer-email:focus-visible {
  opacity: 0.75;
  outline: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.18s;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-copy {
  width: 100%;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  margin-top: var(--space-xs);
}



.menu-hero {
  position: relative;
  min-height: min(60vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.menu-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.menu-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(43, 43, 43, 0.82) 0%,
    rgba(43, 43, 43, 0.45) 55%,
    rgba(74, 158, 63, 0.2) 100%
  );
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-xl) var(--space-lg);
}

.menu-hero-content .hero-heading {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.menu-nav-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(123, 189, 95, 0.18);
  position: sticky;
  top: 65px;
  z-index: 50;
}

.menu-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-cat-nav::-webkit-scrollbar {
  display: none;
}

.menu-cat-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--charcoal-light);
  padding: 1rem 1.25rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}

.menu-cat-nav a:hover,
.menu-cat-nav a:focus-visible {
  color: var(--green-deep);
  border-bottom-color: var(--green-deep);
  outline: none;
}

.menu-section {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.menu-section-alt {
  background: linear-gradient(180deg, #eef5e8 0%, var(--cream) 100%);
}

.menu-section-header {
  margin-bottom: var(--space-lg);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: var(--space-md);
}

.menu-grid-shots {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(123, 189, 95, 0.15);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.menu-card:hover {
  box-shadow: 0 12px 40px rgba(74, 158, 63, 0.12);
  transform: translateY(-4px);
}

.menu-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: #e8f0e3;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-card-shot .menu-card-img {
  aspect-ratio: 1/1;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.04);
}

.menu-card-body {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.menu-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.menu-card-top h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.2;
}

.menu-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--green-deep);
  flex-shrink: 0;
}

.menu-card-body p {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.65;
  flex: 1;
}

.menu-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.menu-tags li {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(123, 189, 95, 0.14);
  color: var(--green-deep);
  padding: 0.28em 0.75em;
  border-radius: var(--radius-pill);
}

.programs-section {
  padding-block: var(--space-xl);
  background: var(--charcoal);
}

.programs-section .section-label {
  color: var(--yellow-green);
  background: rgba(200, 224, 74, 0.12);
}

.programs-section .section-heading {
  color: var(--white);
}

.programs-section .section-sub {
  color: rgba(255,255,255,0.65);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.program-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.program-card:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
  transform: translateY(-4px);
}

.program-card-featured {
  border-color: var(--yellow-green);
  background: rgba(200, 224, 74, 0.06);
}

.program-card-img {
  position: relative;
  aspect-ratio: 16/9;
  background: #1a2a18;
  overflow: hidden;
}

.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.35s ease, opacity 0.25s;
}

.program-card:hover .program-card-img img {
  transform: scale(1.04);
  opacity: 1;
}

.program-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.program-length {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-green);
}

.program-body h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.15;
}

.program-body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.program-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-block: var(--space-xs);
  flex: 1;
}

.program-includes li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.program-includes li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.program-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.program-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1;
}

.program-card-featured .program-price {
  color: var(--yellow-green);
}

.menu-cta-strip {
  background: var(--green-deep);
  padding-block: var(--space-xl);
}

.menu-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.menu-cta-inner h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.menu-cta-inner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.menu-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.menu-cta-strip .btn-ghost {
  border-color: rgba(255,255,255,0.5);
}



.about-hero {
  position: relative;
  min-height: min(70vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(43, 43, 43, 0.82) 0%,
    rgba(74, 158, 63, 0.38) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-xl);
  max-width: 640px;
}

.about-intro {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 860px) {
  .about-intro-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-intro-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-intro-text p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(74, 158, 63, 0.13);
}

.about-values {
  padding-block: var(--space-xl);
  background: linear-gradient(180deg, #eef5e8 0%, var(--cream) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border: 1px solid rgba(123, 189, 95, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.value-card:hover {
  box-shadow: 0 10px 35px rgba(74, 158, 63, 0.1);
  transform: translateY(-3px);
}

.value-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--yellow-green);
  line-height: 1;
}

.value-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.65;
}

.about-split {
  background: var(--cream);
  overflow: hidden;
}

.about-split-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .about-split-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }
}

.about-split-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

@media (min-width: 860px) {
  .about-split-img {
    aspect-ratio: auto;
  }
}

.about-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split-content {
  background: #edf5e8;
  padding: var(--space-xl) clamp(1.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

.about-split-content h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--charcoal);
  line-height: 1.2;
}

.about-split-content p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  max-width: 460px;
}

.about-mission {
  padding-block: var(--space-xl);
  background: var(--charcoal);
}

.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 860px) {
  .about-mission-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-mission-quote {
  border-left: 4px solid var(--yellow-green);
  padding-left: var(--space-md);
}

.about-mission-quote blockquote {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--white);
  line-height: 1.45;
  quotes: none;
}

.about-mission .section-label {
  color: var(--yellow-green);
  background: rgba(200, 224, 74, 0.12);
}

.about-mission .section-heading {
  color: var(--white);
}

.about-mission-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-mission-body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.mission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.about-process {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(123, 189, 95, 0.15);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.process-step:hover {
  box-shadow: 0 12px 40px rgba(74, 158, 63, 0.12);
  transform: translateY(-4px);
}

.process-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e8f0e3;
}

.process-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.process-step:hover .process-img-wrap img {
  transform: scale(1.04);
}

.process-step-body {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.process-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--yellow-green);
  line-height: 1;
}

.process-step-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--charcoal);
}

.process-step-body p {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.65;
}



.contact-hero {
  position: relative;
  min-height: min(55vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.contact-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(43, 43, 43, 0.82) 0%,
    rgba(74, 158, 63, 0.4) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-xl);
}

.contact-hero-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-sm);
  max-width: 14ch;
}

.contact-hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
  font-weight: 300;
}

.contact-body {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.contact-body-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: var(--space-md);
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg) clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-card-primary {
  background: var(--white);
  border: 1px solid rgba(123, 189, 95, 0.2);
  box-shadow: 0 4px 30px rgba(74, 158, 63, 0.07);
}

.contact-card-secondary {
  background: linear-gradient(135deg, #edf5e8 0%, var(--cream) 100%);
  border: 1px solid rgba(123, 189, 95, 0.2);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--charcoal);
  line-height: 1.15;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  max-width: 380px;
}

.contact-btn {
  align-self: flex-start;
  word-break: break-all;
}

.contact-note {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  opacity: 0.7;
  font-style: italic;
}

.contact-faq {
  max-width: 780px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(123, 189, 95, 0.2);
}

.faq-item {
  background: var(--white);
  border-bottom: 1px solid rgba(123, 189, 95, 0.15);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--space-md) clamp(1rem, 3vw, 1.75rem);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  user-select: none;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-deep);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question {
  color: var(--green-deep);
  background: rgba(123, 189, 95, 0.05);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--green-deep);
  background: rgba(123, 189, 95, 0.06);
  outline: none;
}

.faq-answer {
  padding: 0 clamp(1rem, 3vw, 1.75rem) var(--space-md);
  border-top: 1px solid rgba(123, 189, 95, 0.1);
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  padding-top: var(--space-sm);
}

.contact-cta-strip {
  background: var(--green-deep);
  overflow: hidden;
}

.contact-cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .contact-cta-strip-inner {
    grid-template-columns: 420px 1fr;
    min-height: 420px;
  }
}

.contact-cta-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

@media (min-width: 800px) {
  .contact-cta-img {
    aspect-ratio: auto;
  }
}

.contact-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cta-content {
  padding: var(--space-xl) clamp(1.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.contact-cta-content h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  line-height: 1.15;
}

.contact-cta-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 420px;
}

.contact-cta-content .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-cta-content .btn-secondary:hover,
.contact-cta-content .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}



.shop-hero {
  background: linear-gradient(135deg, #eef5e8 0%, var(--cream) 100%);
  padding-block: var(--space-xl);
  overflow: hidden;
}

.shop-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 820px) {
  .shop-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.shop-hero-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.shop-hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--charcoal-light);
  max-width: 480px;
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.shop-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(74, 158, 63, 0.15);
}

.shop-programs {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-md);
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(123, 189, 95, 0.18);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.program-card:hover {
  box-shadow: 0 14px 45px rgba(74, 158, 63, 0.13);
  transform: translateY(-4px);
}

.program-card--featured {
  border-color: var(--green-deep);
  box-shadow: 0 8px 30px rgba(74, 158, 63, 0.15);
}

.program-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e8f0e3;
}

.program-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.program-card:hover .program-img-wrap img {
  transform: scale(1.04);
}

.program-duration {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35em 0.9em;
  border-radius: var(--radius-pill);
}

.program-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-sm);
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.program-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.program-tagline {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--green-deep);
  letter-spacing: 0.01em;
}

.program-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--green-deep);
  white-space: nowrap;
  flex-shrink: 0;
}

.program-desc {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.program-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.program-includes li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.program-includes li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow-green);
  border: 2px solid var(--green-deep);
  flex-shrink: 0;
}

.shop-individual {
  padding-block: var(--space-xl);
  background: linear-gradient(180deg, #eef5e8 0%, var(--cream) 100%);
}

.bottles-grid {
  margin-bottom: var(--space-md);
}

.bottle-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--green-deep);
  margin-bottom: var(--space-xs);
}

.product-info .btn {
  width: 100%;
  justify-content: center;
}

.bottles-note {
  background: var(--white);
  border: 1px solid rgba(123, 189, 95, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  justify-content: space-between;
}

.bottles-note p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  max-width: 520px;
}

.shop-how {
  padding-block: var(--space-xl);
  background: var(--charcoal);
}

.shop-how .section-label {
  color: var(--yellow-green);
  background: rgba(200, 224, 74, 0.12);
}

.shop-how .section-heading {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.shop-faq {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(123, 189, 95, 0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 0 6px 24px rgba(74, 158, 63, 0.08);
}

.faq-q {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--charcoal);
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.18s;
}

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

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--green-deep);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-q:hover,
.faq-q:focus-visible {
  color: var(--green-deep);
  outline: none;
}

.faq-a {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  padding: 0 1.4rem 1.2rem;
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
