:root {
  --sand-50: #ffffff;
  --sand-100: #f8f9f8;
  --olive-700: #616b62;
  --olive-600: #717a72;
  --olive-500: #848c85;
  --charcoal-900: #3f4340;
  --charcoal-700: #666b67;
  --accent: #8a908a;
  --accent-soft: #eef1ee;
  --white: #ffffff;
  --shadow-soft: none;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--charcoal-900);
  background: #fcfdfc;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--olive-700);
  letter-spacing: 0.2px;
}

a {
  color: var(--olive-600);
  text-decoration: none;
}

a:hover {
  color: var(--charcoal-900);
}

.topbar {
  background: #e9eee9;
  color: #4f5651;
  font-size: 0.92rem;
}

.topbar a {
  color: #4f5651;
}

.topbar a:hover {
  color: var(--charcoal-900);
}

.navbar-brand {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--olive-700);
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: #edf1ed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-700);
  font-weight: 700;
}

.site-nav {
  backdrop-filter: none;
  background: transparent;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-nav.is-scrolled {
  background: rgba(248, 251, 248, 0.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-nav .dropdown-menu {
  background: rgba(248, 251, 248, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  padding: 0.5rem;
}

.site-nav .dropdown-item {
  color: var(--charcoal-900);
}

.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus {
  background: rgba(237, 241, 237, 0.9);
  color: var(--charcoal-900);
}

.banner-split {
  min-height: 410px;
}

.hero-header {
  width: 100%;
}

.banner-main,
.banner-side {
  box-shadow: none;
  overflow: hidden;
  position: relative;
}

.banner-main {
  min-height: 410px;
  background: linear-gradient(130deg, rgba(35, 39, 35, 0.14), rgba(35, 39, 35, 0.3)),
    url("https://images.unsplash.com/photo-1528909514045-2fa4ac7a08ba?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.banner-side {
  min-height: 410px;
  background: linear-gradient(180deg, rgba(100, 107, 101, 0.16), rgba(100, 107, 101, 0.4)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=800&q=80") center/cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.75rem;
}

.header-contact-strip {
  background: transparent;
  color: var(--charcoal-700);
}

.header-contact-strip a {
  color: var(--charcoal-700);
  font-weight: 600;
}

main section:nth-of-type(even):not(.fullscreen-slider-wrap) {
  background: #f3f6f3;
}

.section-head {
  max-width: 760px;
}

.about-split {
  border-top: none;
  border-bottom: none;
}

.about-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #8a918b;
  font-weight: 700;
}

.link-tile {
  background: transparent;
  border: none;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.link-tile:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.link-tile img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.fullscreen-slider-wrap {
  overflow: hidden;
  margin-top: 1rem;
}

.hero-slide {
  min-height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(24, 28, 24, 0.5), rgba(24, 28, 24, 0.2));
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: end;
}

.hero-slide-content h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.advantage-box {
  background: transparent;
  border: none;
  box-shadow: none;
  height: 100%;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.check-list i {
  color: var(--olive-500);
  margin-top: 0.2rem;
}

.review-card {
  background: transparent;
  border: none;
  height: 100%;
}

.reviews-slider .slide-item {
}

.reviews-slider .slick-dots li button:before {
  color: #7f8780;
}

.cta-strip {
  background: linear-gradient(115deg, #6f7a70 0%, #808b81 55%, #9aa399 100%);
  color: #ffffff;
  box-shadow: none;
}

.cta-strip h3,
.cta-strip p {
  color: #ffffff;
}

.footer {
  background: transparent;
  color: var(--charcoal-700);
}

.footer a {
  color: var(--charcoal-700);
}

.page-hero {
  background: transparent;
}

.sidebar-page-banner {
  min-height: 340px;
  background: linear-gradient(130deg, rgba(30, 36, 31, 0.34), rgba(30, 36, 31, 0.18)),
    url("https://images.unsplash.com/photo-1510798831971-661eb04b3739?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.sidebar-stick {
  position: sticky;
  top: 95px;
}

.reviews-slider-single .slick-dots li button:before {
  color: #7f8780;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.82);
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--charcoal-700);
}

.download-card {
  background: transparent;
  border: none;
}

.border,
.border-top,
.border-bottom,
.border-start,
.border-end,
.border-light-subtle,
.table,
.table > :not(caption) > * > * {
  border: none !important;
}

.shadow,
.shadow-sm,
.shadow-lg {
  box-shadow: none !important;
}

.bg-white,
.text-bg-success,
.text-bg-warning,
.text-bg-danger,
.text-bg-dark,
.accordion-button,
.accordion-body,
.accordion-item,
.alert,
.table-striped > tbody > tr:nth-of-type(odd) > * {
  background: transparent !important;
}

.form-control,
.form-select,
.btn,
.page-link,
.badge {
  border: none !important;
  box-shadow: none !important;
}

.btn-success,
.btn-dark,
.btn-light,
.btn-outline-secondary {
  background: #edf1ed !important;
  color: var(--charcoal-900) !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 0.8s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.14s; }
.reveal.delay-2 { animation-delay: 0.24s; }
.reveal.delay-3 { animation-delay: 0.34s; }

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .banner-main,
  .banner-side {
    min-height: 300px;
  }

  .hero-slide-content {
    padding-bottom: 4.5rem;
  }
}
