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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2c332c;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset {
  border: none;
}

address {
  font-style: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[disabled] {
  cursor: not-allowed;
}

[hidden] {
  display: none !important;
}

button,
[role="button"] {
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

h1, .h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  h1, .h1 {
    font-size: 3rem;
  }
}

h2, .h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  h2, .h2 {
    font-size: 2.25rem;
  }
}

h3, .h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

h6, .h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

.lead, .section-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a544a;
}

@media (min-width: 768px) {
  .lead, .section-subtitle {
    font-size: 1.25rem;
  }
}

.small {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

a {
  transition: color 250ms ease;
}

a:hover {
  color: #2d5a27;
}

.link {
  color: #2d5a27;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link:hover {
  color: #1e3d1a;
}

.list {
  margin-bottom: 24px;
}

.list li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #2d5a27;
  border-radius: 50%;
}

.list-check li {
  padding-left: 32px;
}

.list-check li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  background: none;
  color: #2d5a27;
  font-size: 0.875rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #2d5a27;
}

.text-accent {
  color: #722f37;
}

.text-white {
  color: #ffffff;
}

.text-muted {
  color: #4a544a;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.font-heading {
  font-family: "Playfair Display", Georgia, serif;
}

.font-body {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 64px;
  }
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2d5a27;
  margin-bottom: 8px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.container-sm {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 800px;
}

@media (min-width: 768px) {
  .container-sm {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.container-lg {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1400px;
}

@media (min-width: 768px) {
  .container-lg {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.container-fluid {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (min-width: 992px) {
  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.section-sm {
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .section-sm {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.section-lg {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .section-lg {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.grid, .grid-auto-fill, .grid-auto-fit, .grid-4, .grid-3, .grid-2 {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid, .grid-auto-fill, .grid-auto-fit, .grid-4, .grid-3, .grid-2 {
    gap: 32px;
  }
}

@media (min-width: 576px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 576px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 480px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.gap-xs {
  gap: 8px;
}

.gap-sm {
  gap: 16px;
}

.gap-md {
  gap: 24px;
}

.gap-lg {
  gap: 32px;
}

.gap-xl {
  gap: 48px;
}

.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: 8px;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 32px;
}

.mt-xl {
  margin-top: 48px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: 8px;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 24px;
}

.mb-lg {
  margin-bottom: 32px;
}

.mb-xl {
  margin-bottom: 48px;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-sm {
  margin-top: 16px;
  margin-bottom: 16px;
}

.my-md {
  margin-top: 24px;
  margin-bottom: 24px;
}

.my-lg {
  margin-top: 32px;
  margin-bottom: 32px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pt-0 {
  padding-top: 0;
}

.pt-sm {
  padding-top: 16px;
}

.pt-md {
  padding-top: 24px;
}

.pt-lg {
  padding-top: 32px;
}

.pt-xl {
  padding-top: 48px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-sm {
  padding-bottom: 16px;
}

.pb-md {
  padding-bottom: 24px;
}

.pb-lg {
  padding-bottom: 32px;
}

.pb-xl {
  padding-bottom: 48px;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-sm {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-md {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-lg {
  padding-top: 32px;
  padding-bottom: 32px;
}

.p-sm {
  padding: 16px;
}

.p-md {
  padding: 24px;
}

.p-lg {
  padding: 32px;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
}

@media (max-width: 767px) {
  .d-mobile-none {
    display: none;
  }
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.w-100 {
  width: 100%;
}

.max-w-sm {
  max-width: 400px;
}

.max-w-md {
  max-width: 600px;
}

.max-w-lg {
  max-width: 800px;
}

.bg-white {
  background-color: #ffffff;
}

.bg-off-white {
  background-color: #f7f9f7;
}

.bg-gray-100 {
  background-color: #f1f3f1;
}

.bg-primary {
  background-color: #2d5a27;
  color: #ffffff;
}

.bg-primary-dark {
  background-color: #1e3d1a;
  color: #ffffff;
}

.bg-accent {
  background-color: #722f37;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 250ms ease;
}

.btn:focus {
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid #2d5a27;
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 250ms ease;
  background-color: #2d5a27;
  color: #ffffff;
  border-color: #2d5a27;
}

.btn-primary:focus {
  outline: none;
}

.btn-primary:focus-visible {
  outline: 2px solid #2d5a27;
  outline-offset: 2px;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary:hover:not(:disabled) {
  background-color: #1e3d1a;
  border-color: #1e3d1a;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 250ms ease;
  background-color: #722f37;
  color: #ffffff;
  border-color: #722f37;
}

.btn-secondary:focus {
  outline: none;
}

.btn-secondary:focus-visible {
  outline: 2px solid #2d5a27;
  outline-offset: 2px;
}

.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary:hover:not(:disabled) {
  background-color: #5a252c;
  border-color: #5a252c;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 250ms ease;
  background-color: #c9a227;
  color: #2c332c;
  border-color: #c9a227;
}

.btn-cta:focus {
  outline: none;
}

.btn-cta:focus-visible {
  outline: 2px solid #2d5a27;
  outline-offset: 2px;
}

.btn-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-cta:hover:not(:disabled) {
  background-color: #b89220;
  border-color: #b89220;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 250ms ease;
  background-color: transparent;
  color: #2d5a27;
  border-color: #2d5a27;
}

.btn-outline:focus {
  outline: none;
}

.btn-outline:focus-visible {
  outline: 2px solid #2d5a27;
  outline-offset: 2px;
}

.btn-outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-outline:hover:not(:disabled) {
  background-color: #2d5a27;
  color: #ffffff;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 250ms ease;
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-white:focus {
  outline: none;
}

.btn-outline-white:focus-visible {
  outline: 2px solid #2d5a27;
  outline-offset: 2px;
}

.btn-outline-white:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-outline-white:hover:not(:disabled) {
  background-color: #ffffff;
  color: #2d5a27;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  padding: 12px;
}

.btn-icon i, .btn-icon svg {
  width: 20px;
  height: 20px;
}

.card, .portfolio-card, .service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.card:hover, .portfolio-card:hover, .service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

@media (min-width: 768px) {
  .card-body {
    padding: 32px;
  }
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card-text {
  color: #4a544a;
  margin-bottom: 16px;
}

.service-card {
  text-align: center;
}

.service-card .card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.service-card .card-text {
  flex: 1;
}

.service-card .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background-color: #f7f9f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .card-icon i {
  font-size: 28px;
  color: #2d5a27;
}

.portfolio-card {
  position: relative;
}

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

.portfolio-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #ffffff;
}

.portfolio-card .card-title {
  color: #ffffff;
  margin-bottom: 0;
}

.portfolio-gallery {
  columns: 1;
  column-gap: 24px;
}

@media (min-width: 640px) {
  .portfolio-gallery {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .portfolio-gallery {
    columns: 3;
  }
}

.portfolio-gallery .portfolio-card {
  break-inside: avoid;
  margin-bottom: 24px;
}

.portfolio-gallery .portfolio-card .card-img {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  display: block;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  z-index: 10001;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 64px;
  cursor: pointer;
  padding: 16px;
  line-height: 1;
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 0.7;
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 4 / 3;
}

.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  z-index: 3;
  transform: translateX(-50%);
}

.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.ba-handle::before {
  content: '\f053\00a0\00a0\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  font-size: 10px;
  color: #2d5a27;
  line-height: 1;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  pointer-events: none;
}

.ba-label-before {
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

.ba-label-after {
  right: 12px;
  background: rgba(201, 162, 39, 0.95);
  color: #1e3d1a;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.photo-collage img {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.photo-collage .collage-1 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  aspect-ratio: 4 / 3;
}

.photo-collage .collage-2 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  aspect-ratio: 4 / 3;
}

.photo-collage .collage-3 {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
  aspect-ratio: 16 / 7;
}

.photo-collage.collage-2up {
  grid-template-rows: auto;
}

.photo-collage.collage-2up .collage-1,
.photo-collage.collage-2up .collage-2 {
  grid-row: 1 / 2;
  aspect-ratio: 3 / 4;
}

.photo-collage.collage-2up .collage-1 {
  grid-column: 1 / 2;
}

.photo-collage.collage-2up .collage-2 {
  grid-column: 2 / 3;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  z-index: 300;
  transition: all 250ms ease;
}

.header.scrolled {
  height: 64px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 768px) {
  .header-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d5a27;
}

.logo img {
  height: 48px;
  width: auto;
}

@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    padding: 32px;
    transform: translateX(100%);
    transition: transform 250ms ease;
    z-index: 300;
  }
  .nav.active {
    transform: translateX(0);
  }
}

@media (min-width: 768px) {
  .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.nav-link {
  font-weight: 500;
  color: #2c332c;
  transition: color 250ms ease;
}

.nav-link:hover, .nav-link.active {
  color: #2d5a27;
}

@media (max-width: 767px) {
  .nav-link {
    font-size: 1.125rem;
    padding: 8px 0;
    display: block;
  }
}

.nav-cta {
  display: none;
}

@media (max-width: 767px) {
  .nav-cta {
    display: block;
    margin-top: 24px;
  }
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .header-cta-mobile {
    display: none;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
  width: 32px;
  height: 32px;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2c332c;
  transition: all 250ms ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 48px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 61, 26, 0.85), rgba(30, 61, 26, 0.6));
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero {
    min-height: 700px;
    padding-bottom: 64px;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero--home::before {
  display: none;
}

.hero--home .container {
  margin-left: 0;
}

.hero--home .hero-content {
  background: rgba(0, 0, 0, 0.55);
  padding: 32px;
  border-radius: 12px;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 1.125rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .hero-text {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-split .hero-content {
  flex: 1;
}

.hero-split .hero-image {
  display: none;
}

@media (min-width: 768px) {
  .hero-split .hero-image {
    display: block;
    flex: 1;
  }
  .hero-split .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  }
}

.footer {
  background-color: #1e3d1a;
  color: #ffffff;
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer-brand .logo {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand p {
  opacity: 0.8;
  max-width: 300px;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  opacity: 0.8;
  transition: opacity 250ms ease;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  opacity: 0.8;
  transition: opacity 250ms ease;
}

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

.footer-contact a i {
  width: 20px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease;
}

.footer-social a:hover {
  background-color: #2d5a27;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.7;
  font-size: 0.875rem;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background-color: #ffffff;
  border: 1px solid #c5cbc5;
  border-radius: 8px;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #2d5a27;
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
  color: #9ca69c;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #c0392b;
}

.form-input.error:focus,
.form-textarea.error:focus,
.form-select.error:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-textarea {
  height: auto;
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b786b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-error {
  color: #c0392b;
  font-size: 0.875rem;
  margin-top: 8px;
}

.form-hint {
  color: #4a544a;
  font-size: 0.875rem;
  margin-top: 8px;
}

.alert {
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.alert.alert-success {
  background-color: rgba(45, 90, 39, 0.1);
  border: 1px solid #2d5a27;
  color: #2d5a27;
}

.alert.alert-error {
  background-color: rgba(192, 57, 43, 0.1);
  border: 1px solid #c0392b;
  color: #c0392b;
}

.alert.alert-warning {
  background-color: rgba(243, 156, 18, 0.1);
  border: 1px solid #f39c12;
  color: #b06f09;
}

.alert.alert-info {
  background-color: rgba(52, 152, 219, 0.1);
  border: 1px solid #3498db;
  color: #3498db;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  background-color: #2d5a27;
  color: #ffffff;
}

.badge.badge-accent {
  background-color: #722f37;
}

.badge.badge-cta {
  background-color: #c9a227;
  color: #2c332c;
}

.badge.badge-outline {
  background-color: transparent;
  border: 1px solid #2d5a27;
  color: #2d5a27;
}

.divider {
  height: 1px;
  background-color: #e2e6e2;
  margin: 32px 0;
}

.divider-lg {
  margin: 48px 0;
}

.ba-carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
  overflow: hidden;
}

.ba-carousel-track {
  display: flex;
  transition: transform 400ms ease;
}

.ba-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 8px;
}

.ba-carousel-prev,
.ba-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e6e2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: #2c332c;
  transition: all 250ms ease;
}

.ba-carousel-prev:hover,
.ba-carousel-next:hover {
  background-color: #2d5a27;
  border-color: #2d5a27;
  color: #ffffff;
}

.ba-carousel-prev {
  left: 0;
}

.ba-carousel-next {
  right: 0;
}

.ba-carousel-counter {
  text-align: center;
  margin-top: 16px;
  font-size: 0.875rem;
  color: #4a544a;
  font-weight: 500;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 500ms ease;
}

.review-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 32px;
  margin: 0 8px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (min-width: 992px) {
  .review-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.review-stars {
  color: #f5b731;
  font-size: 0.875rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.review-text {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4a544a;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2d5a27;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #2c332c;
}

.review-source {
  font-size: 0.8125rem;
  color: #9ca69c;
}

.review-source i {
  color: #4285f4;
}

.reviews-prev,
.reviews-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e6e2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #2c332c;
  transition: all 250ms ease;
}

.reviews-prev:hover,
.reviews-next:hover {
  background-color: #2d5a27;
  border-color: #2d5a27;
  color: #ffffff;
}

@media (max-width: 767px) {
  .reviews-prev,
.reviews-next {
    display: none;
  }
}

.reviews-prev {
  left: 0;
}

.reviews-next {
  right: 0;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c5cbc5;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 250ms ease;
}

.reviews-dot.active {
  background: #2d5a27;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 16px 24px;
  background-color: #2d5a27;
  color: #ffffff;
  z-index: 9999;
  clip: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

.img-rounded {
  border-radius: 8px;
}

.img-circle {
  border-radius: 50%;
}

.shadow-none {
  box-shadow: none;
}

.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.shadow-lg {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-full {
  border-radius: 50%;
}

.border {
  border: 1px solid #e2e6e2;
}

.border-primary {
  border-color: #2d5a27;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.transition {
  transition: all 250ms ease;
}

.transition-fast {
  transition: all 150ms ease;
}

.transition-slow {
  transition: all 400ms ease;
}

.hover-lift {
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.hover-scale {
  transition: transform 250ms ease;
}

.hover-scale:hover {
  transform: scale(1.02);
}

.hover-opacity {
  transition: opacity 250ms ease;
}

.hover-opacity:hover {
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 250ms ease forwards;
}

.animate-slide-up {
  animation: slideUp 400ms ease forwards;
}

.animate-slide-down {
  animation: slideDown 400ms ease forwards;
}

@media print {
  .no-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
}

.print-only {
  display: none;
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.no-select {
  user-select: none;
}

.pointer-events-none {
  pointer-events: none;
}

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