@charset "UTF-8";
@font-face {
  font-family: "Garet";
  src: url("/assets/fonts/Garet-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Garet";
  src: url("/assets/fonts/Garet-Heavy.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Garet", sans-serif;
  font-weight: 400;
  color: #101010;
  background-color: #FFFFFF;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

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

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

ul {
  list-style: none;
}

.fpo-image {
  background-color: #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
}
.fpo-image::after {
  content: "PHOTO COMING SOON";
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #999;
}

.site-header {
  background-color: #52885C;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  max-height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #FCC861;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded=true] .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded=true] .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #315137;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FCC861;
  }
  .nav-links.nav-open {
    max-height: 400px;
  }
}
@media (max-width: 560px) {
  .nav-logo img {
    height: 52px;
  }
}
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  transition: color 0.2s ease;
}
.nav-dropdown-toggle:hover {
  color: #FCC861;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}
.dropdown-arrow path {
  stroke: currentColor;
}

.nav-dropdown.is-open .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background-color: #315137;
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.nav-dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-dropdown-menu li:last-child {
  border-bottom: none;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #FCC861;
}

@media (max-width: 768px) {
  .nav-dropdown-toggle {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    justify-content: space-between;
  }
  .nav-dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FCC861;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown-menu a {
    padding-left: 3.5rem;
    font-size: 0.9rem;
  }
  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #315137;
  background-image: url("/assets/images/hero-home.jpg");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16, 16, 16, 0.75) 0%, rgba(16, 16, 16, 0.2) 100%);
}
@media (max-width: 768px) {
  .hero {
    background-position: 35% center;
    background-size: 150%;
  }
}
@media (max-width: 560px) {
  .hero {
    background-position: 35% center;
    background-size: 200%;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 2rem;
}
.hero-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.hero-content p {
  font-family: "Garet", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid #FCC861;
  color: #FCC861;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn:hover {
  background-color: #FCC861;
  color: #101010;
}
.btn.btn-solid {
  background-color: #52885C;
  border-color: #52885C;
  color: #FFFFFF;
}
.btn.btn-solid:hover {
  background-color: #315137;
  border-color: #315137;
}

.section {
  padding: 8rem 2rem;
}
.section--green {
  background-color: #52885C;
  color: #FFFFFF;
}
.section--dark {
  background-color: #101010;
  color: #FFFFFF;
}
.section--cream {
  background-color: #f7f5f0;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FCC861;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.narrative p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
}
.narrative strong {
  color: #315137;
}

.narrative--with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .narrative--with-image {
    grid-template-columns: 1fr;
  }
}

.narrative-text {
  max-width: 100%;
}

.narrative-image {
  min-height: 380px;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .narrative-image {
    min-height: 240px;
    order: -1;
  }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  padding: 2rem;
  border-top: 3px solid #FCC861;
}
.pillar h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.pillar p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* ─── The Process ─────────────────────────────────────────────────────────────

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: v.$spacing-md;
  margin-top: v.$spacing-lg;

  @media (max-width: v.$bp-tablet) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: v.$bp-mobile) {
    grid-template-columns: 1fr;
  }
}

.process-step {
  padding: v.$spacing-md;
  background-color: v.$color-white;
  border-bottom: 3px solid v.$color-green;

  .step-number {
    font-family: v.$font-heading;
    font-size: 3.5rem;
    color: v.$color-green;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  h3 {
    font-family: v.$font-heading;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: v.$color-black;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }
}*/
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .includes-grid {
    grid-template-columns: 1fr;
  }
}

.includes-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.includes-list li strong {
  display: block;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-block {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.pricing-block .price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: #FCC861;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-block p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  padding: 2rem;
  background-color: #FFFFFF;
  border-top: 4px solid #52885C;
}
.audience-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  color: #315137;
  margin-bottom: 1rem;
}
.audience-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  padding: 2rem;
  background-color: #FFFFFF;
  position: relative;
}
.testimonial::before {
  content: "“";
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  color: #52885C;
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: 1rem;
  line-height: 1;
}
.testimonial p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial cite {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #315137;
  font-style: normal;
}

.final-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.final-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .paths-grid {
    grid-template-columns: 1fr;
  }
}

.path-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 16, 16, 0.85) 0%, rgba(16, 16, 16, 0.2) 100%);
}
.path-card--online {
  background-image: url("/assets/images/glacier-np-view.jpg");
  background-position: center 30%;
}
.path-card--inperson {
  background-image: url("/assets/images/hero-gwinnett.jpg");
  justify-content: flex-end;
}

.path-card-body {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.path-card-body h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #FFFFFF;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.path-card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}
.path-card-body .btn-solid {
  background-color: #FCC861;
  color: #101010;
  border-color: #FCC861;
}
.path-card-body .btn-solid:hover {
  background-color: rgb(251.2397515528, 186.0621118012, 56.9602484472);
  border-color: rgb(251.2397515528, 186.0621118012, 56.9602484472);
}

.path-card-label {
  display: block;
  font-family: "Garet", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FCC861;
  margin-bottom: 0.75rem;
}

.site-footer {
  background-color: #52885C;
  color: #FFFFFF;
  padding-top: 4rem;
  overflow-x: hidden;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  box-sizing: border-box;
}
@media (max-width: 560px) {
  .footer-inner {
    padding: 2rem 1rem;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand .footer-logo img {
  max-height: 64px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand .footer-tagline {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.footer-brand .footer-sub {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer-nav h4,
.footer-social h4,
.footer-newsletter h4 {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FCC861;
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: #FCC861;
}

.footer-newsletter p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.newsletter-form .newsletter-fields {
  display: flex;
  gap: 0;
}
.newsletter-form input[type=email] {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: "Garet", sans-serif;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  outline: none;
}
.newsletter-form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input[type=email]:focus {
  border-color: #FCC861;
  background-color: rgba(255, 255, 255, 0.15);
}
.newsletter-form button {
  padding: 0.75rem 1.25rem;
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: #FCC861;
  color: #101010;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background-color: rgb(251.049689441, 182.5776397516, 46.950310559);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-social a {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer-social a:hover {
  color: #FCC861;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 560px) {
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.page-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: #315137;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, var(--banner-overlay-opacity, 0.85)) 0%, rgba(0, 0, 0, calc(var(--banner-overlay-opacity, 0.85) * 0.25)) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}
.page-banner-content .section-label {
  display: block;
  margin-bottom: 0.75rem;
}
.page-banner-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.page-banner-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.6;
}

.process-steps {
  max-width: 1100px;
  margin: 0 auto;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 8rem;
  align-items: start;
}
@media (max-width: 768px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.process-step-full {
  display: flex;
  gap: 1rem;
  align-items: start;
}
.process-step-full .process-step-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #52885C;
  opacity: 0.25;
  flex-shrink: 0;
  width: 4rem;
}
.process-step-full .process-step-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: #101010;
}
.process-step-full .process-step-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 0.75rem;
}
.process-step-full .process-step-content p:last-child {
  margin-bottom: 0;
}

.process-step-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  color: #52885C;
  opacity: 0.3;
  line-height: 1;
  padding-top: 0.25rem;
}
@media (max-width: 560px) {
  .process-step-number {
    font-size: 3rem;
  }
}

.process-step-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #101010;
  margin-bottom: 1rem;
  line-height: 1;
}
.process-step-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}
.process-step-content p:last-child {
  margin-bottom: 0;
}

.page-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.page-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.page-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: #52885C;
  opacity: 0.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder span {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #101010;
  opacity: 0.5;
}

.about-intro,
.about-story,
.about-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-intro,
  .about-story,
  .about-approach {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-story .about-story-photo {
    order: 2;
  }
}
@media (max-width: 768px) {
  .about-story .about-story-text {
    order: 1;
  }
}

.about-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #315137;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-intro-text p,
.about-story-text p,
.about-approach-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
}
.about-intro-text p:last-child,
.about-story-text p:last-child,
.about-approach-text p:last-child {
  margin-bottom: 0;
}
.about-intro-text .section-heading,
.about-story-text .section-heading,
.about-approach-text .section-heading {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 560px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

.credential {
  padding: 2rem;
  border-top: 3px solid #FCC861;
  background-color: rgba(255, 255, 255, 0.08);
}
.credential h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.credential p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.contact-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-intro {
    grid-template-columns: 1fr;
  }
}

.contact-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
}
.contact-intro-text .section-heading {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-booking {
  margin-top: 2rem;
  padding: 2rem;
  border-top: 3px solid #52885C;
  background-color: #f7f5f0;
}
.contact-booking h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  color: #315137;
  margin-bottom: 0.75rem;
}
.contact-booking p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

.contact-form-wrap {
  background-color: #f7f5f0;
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #315137;
}
.form-group input,
.form-group textarea {
  font-family: "Garet", sans-serif;
  font-size: 1rem;
  color: #101010;
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #52885C;
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.hidden-field {
  display: none;
}

.not-found {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .not-found {
    grid-template-columns: 1fr;
  }
}

.not-found-text h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 8rem;
  color: #52885C;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}
.not-found-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

.not-found-illustration img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .not-found-illustration {
    order: -1;
  }
}

.not-found-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.not-found-links .btn:not(.btn-solid) {
  border-color: #52885C;
  color: #52885C;
}
.not-found-links .btn:not(.btn-solid):hover {
  background-color: #52885C;
  color: #FFFFFF;
}

.gwinnett-offering {
  max-width: 760px;
  margin: 0 auto;
}
.gwinnett-offering h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1.25rem;
  color: #101010;
}
.section--dark .gwinnett-offering h2 {
  color: #FFFFFF;
}
.gwinnett-offering p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
}
.section--dark .gwinnett-offering p {
  color: rgba(255, 255, 255, 0.85);
}
.gwinnett-offering p a {
  color: #52885C;
  text-decoration: underline;
}
.gwinnett-offering p a:hover {
  color: #315137;
}
.section--dark .gwinnett-offering p a {
  color: #FCC861;
}
.section--dark .gwinnett-offering p a:hover {
  color: rgba(252, 200, 97, 0.8);
}

.gwinnett-pricing {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.gwinnett-pricing--light .gwinnett-price-label {
  color: rgba(255, 255, 255, 0.6);
}
.gwinnett-pricing--light .gwinnett-price-value {
  color: #FCC861;
}
.gwinnett-pricing--light .gwinnett-price-location {
  color: rgba(255, 255, 255, 0.5);
}

.gwinnett-price-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 2rem;
  border-left: 3px solid #52885C;
}
.section--dark .gwinnett-price-item {
  border-left-color: #FCC861;
}

.gwinnett-price-label {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #52885C;
}

.gwinnett-price-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: #101010;
}
.gwinnett-price-value span {
  font-size: 1rem;
  opacity: 0.6;
}

.gwinnett-price-location {
  font-size: 0.8rem;
  color: #999;
}

.final-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1rem;
  color: #101010;
}
.section--dark .final-cta h2 {
  color: #FFFFFF;
}
.final-cta p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #444;
}
.section--dark .final-cta p {
  color: rgba(255, 255, 255, 0.85);
}
.final-cta .btn {
  border-color: #52885C;
  color: #52885C;
}
.final-cta .btn:hover {
  background-color: #52885C;
  color: #FFFFFF;
}
.section--dark .final-cta .btn {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.section--dark .final-cta .btn:hover {
  background-color: #FFFFFF;
  color: #101010;
}

.post-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: #315137;
}
.post-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, var(--banner-overlay-opacity, 0.75)) 0%, rgba(0, 0, 0, calc(var(--banner-overlay-opacity, 0.75) * 0.25)) 100%);
}

.post-banner-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}
.post-banner-content .section-label {
  display: block;
  margin-bottom: 0.75rem;
}
.post-banner-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.post-banner-content time {
  font-family: "Garet", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.post-banner:not([style]) {
  min-height: 30vh;
  background-color: #315137;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.post-body h2, .post-body h3, .post-body h4 {
  font-family: "Bebas Neue", sans-serif;
  color: #101010;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.post-body h2 {
  font-size: 2.5rem;
}
.post-body h3 {
  font-size: 2rem;
}
.post-body h4 {
  font-size: 1.5rem;
}
.post-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}
.post-body a {
  color: #52885C;
  text-decoration: underline;
}
.post-body a:hover {
  color: #315137;
}
.post-body ul, .post-body ol {
  margin: 0 0 1.5rem 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}
.post-body ul li, .post-body ol li {
  margin-bottom: 0.5rem;
}
.post-body ul li {
  list-style: disc;
}
.post-body ol li {
  list-style: decimal;
}
.post-body blockquote {
  border-left: 4px solid #52885C;
  margin: 2rem 0;
  padding: 1rem 2rem;
  background-color: #f7f5f0;
}
.post-body blockquote p {
  font-size: 1.2rem;
  color: #315137;
  font-style: italic;
  margin-bottom: 0;
}
.post-body img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}
.post-body hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 2rem 0;
}

.post-footer {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.currents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .currents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .currents-grid {
    grid-template-columns: 1fr;
  }
}

.currents-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-bottom: 3px solid #52885C;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.currents-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.currents-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.currents-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.currents-card-image:hover img {
  transform: scale(1.03);
}
.currents-card-image--placeholder {
  background-color: #52885C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.currents-card-image--placeholder span {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.currents-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.currents-card-category {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FCC861;
  margin-bottom: 0.5rem;
  display: block;
}

.currents-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.currents-card-title a {
  color: #101010;
  transition: color 0.2s ease;
}
.currents-card-title a:hover {
  color: #52885C;
}

.currents-card-date {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.75rem;
  display: block;
}

.currents-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
  flex: 1;
}

.currents-read-more {
  font-family: "Garet", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52885C;
  transition: color 0.2s ease;
}
.currents-read-more:hover {
  color: #315137;
}

.currents-empty {
  text-align: center;
  padding: 8rem 0;
}
.currents-empty h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: #52885C;
  opacity: 0.3;
  margin-bottom: 1rem;
}
.currents-empty p {
  font-size: 1.1rem;
  color: #999;
}

/*# sourceMappingURL=main.css.map */