:root {
  --ink: #1f2420;
  --muted: #687069;
  --forest: #254b34;
  --forest-dark: #172d20;
  --leaf: #4d7457;
  --wood: #8c643f;
  --brass: #b99052;
  --paper: #f8f6f0;
  --surface: #ffffff;
  --line: #e3ded3;
  --soft-line: #eee9df;
  --shadow: 0 16px 36px rgba(25, 35, 29, 0.11);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: var(--forest);
}

a:hover,
a:focus {
  color: var(--wood);
  text-decoration: none;
}

.header-area {
  top: 0;
  padding: 14px 0;
  background: rgba(248, 246, 240, 0.96);
  border-bottom: 1px solid rgba(37, 75, 52, 0.12);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.header-area .container,
.header-area .row,
.header-area .col-12 {
  position: static;
}

.header-area .main-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.header-area .main-nav .logo {
  display: flex;
  height: 74px;
  align-items: center;
  flex: 0 0 auto;
  float: none;
  margin: 0;
}

.header-area .main-nav .logo img {
  width: 70px;
  height: auto;
}

.header-area .main-nav .nav {
  display: flex;
  align-items: center;
  gap: 4px;
  float: none;
  margin-top: 16px;
  margin-right: 0;
}

.header-area .main-nav .nav li a {
  position: relative;
  height: 42px;
  padding: 0 16px;
  color: var(--forest-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0;
  background: transparent;
}

.header-area .main-nav .nav li a:hover,
.header-area .main-nav .nav li a.active {
  color: var(--forest);
  background: transparent;
}

.header-area .main-nav .nav li a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  background: var(--forest);
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 160ms ease, transform 160ms ease;
}

.header-area .main-nav .nav li a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-area .main-nav .menu-trigger {
  border: 0;
  background: transparent;
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-dark);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 45, 32, 0.88) 0%, rgba(23, 45, 32, 0.66) 48%, rgba(23, 45, 32, 0.18) 100%);
}

.home-hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.home-hero-content,
.page-hero-content {
  max-width: 680px;
  padding-top: 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: currentColor;
}

.home-hero h1,
.page-hero h1 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(50px, 7vw, 86px);
  font-weight: 800;
  line-height: 1.02;
}

.home-hero p,
.page-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary-site,
.btn-secondary-site,
.btn-secondary-dark,
.main-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-primary-site,
.main-button {
  color: #fff;
  background: var(--forest);
}

.home-hero .btn-primary-site,
.page-hero .btn-primary-site {
  background: var(--brass);
  color: var(--forest-dark);
}

.btn-primary-site:hover,
.btn-primary-site:focus,
.main-button:hover,
.main-button:focus {
  color: #fff;
  background: var(--forest-dark);
  transform: translateY(-1px);
}

.home-hero .btn-primary-site:hover,
.page-hero .btn-primary-site:hover {
  color: var(--forest-dark);
  background: #d2ad72;
}

.btn-secondary-site {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary-site:hover,
.btn-secondary-site:focus {
  color: var(--forest-dark);
  background: #fff;
  border-color: #fff;
}

.btn-secondary-dark {
  color: var(--forest);
  background: transparent;
  border-color: var(--forest);
}

.btn-secondary-dark:hover,
.btn-secondary-dark:focus {
  color: #fff;
  background: var(--forest);
}

.trust-section {
  margin-top: -72px;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-grid div {
  padding: 28px 30px;
  border-right: 1px solid var(--soft-line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  color: var(--forest);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.trust-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.content-section {
  padding: 92px 0;
  background: var(--paper);
}

.subtle-section {
  background: #fff;
}

.section-header {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header .eyebrow {
  justify-content: center;
}

.section-header h2 {
  margin: 14px 0 0;
  color: var(--forest-dark);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.16;
}

.section-header p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.service-grid {
  margin-top: 8px;
}

.service-item {
  min-height: 265px;
  padding: 34px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-item span {
  display: block;
  color: var(--brass);
  font-size: 15px;
  font-weight: 800;
}

.service-item h3 {
  margin: 22px 0 12px;
  color: var(--forest-dark);
  font-size: 24px;
  font-weight: 800;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.catalog-grid > div,
.gallery-grid > div {
  margin-bottom: 30px;
}

.catalog-card {
  display: block;
  height: 100%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(25, 35, 29, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-card:hover,
.catalog-card:focus {
  color: var(--ink);
  border-color: rgba(37, 75, 52, 0.35);
  box-shadow: 0 18px 38px rgba(25, 35, 29, 0.13);
  transform: translateY(-3px);
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.catalog-card-body {
  padding: 24px;
}

.catalog-card-body h3 {
  min-height: 58px;
  margin: 0;
  color: var(--forest-dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.28;
}

.catalog-card-body p {
  min-height: 58px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.catalog-card-body span {
  display: inline-block;
  margin-top: 18px;
  color: var(--wood);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-cta {
  margin-top: 8px;
  text-align: center;
}

.detail-layout {
  align-items: flex-start;
}

.detail-summary {
  position: sticky;
  top: 120px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.detail-summary h2 {
  margin: 14px 0 22px;
  color: var(--forest-dark);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.18;
}

.detail-copy {
  margin-bottom: 28px;
  color: #303832;
  font-size: 17px;
  line-height: 1.9;
}

.detail-copy strong {
  color: var(--forest-dark);
}

.gallery-grid figure {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #ddd;
  border: 1px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.empty-state {
  min-height: 520px;
  padding: 180px 0 100px;
  text-align: center;
}

.empty-state h1 {
  color: var(--forest-dark);
  font-weight: 800;
}

.section.colored {
  padding: 92px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.center-heading {
  margin-bottom: 14px;
  text-align: center;
}

.center-heading .section-kicker,
.section-kicker {
  display: inline-block;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.center-heading .section-title {
  margin: 12px 0 0;
  color: var(--forest-dark);
  font-size: clamp(31px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
}

.center-text p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

#contact-us h5 {
  color: var(--forest-dark);
  font-size: 24px;
  font-weight: 800;
}

.contact-text p {
  color: #3d443f;
  font-size: 16px;
  line-height: 1.8;
}

.contact-phone {
  margin-top: 24px;
}

.contact-phone a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-dark);
  font-size: 20px;
  font-weight: 800;
}

.contact-phone .fa {
  color: #25d366;
  font-size: 26px;
}

.contact-form {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-form .form-control {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  font-size: 16px;
  box-shadow: none;
}

.contact-form textarea.form-control {
  min-height: 150px;
}

.contact-form .form-control:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(77, 116, 87, 0.12);
}

footer {
  padding: 24px 0;
  background: var(--forest-dark);
}

footer .copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(21, 33, 25, 0.24);
}

.float .fa,
.float .my-float {
  display: flex;
  width: 1em;
  height: 1em;
  align-items: center;
  justify-content: center;
  margin: 0;
  line-height: 1;
  text-align: center;
}

.float:hover,
.float:focus {
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .header-area {
    height: auto;
    padding: 8px 15px;
    text-align: left;
  }

  .header-area .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .header-area .main-nav {
    min-height: 66px;
    overflow: visible;
  }

  .header-area .main-nav .logo,
  .header-area.header-sticky .logo {
    width: auto;
    height: 66px;
    margin: 0 !important;
  }

  .header-area .main-nav .logo img {
    width: 56px;
  }

  .header-area .main-nav .menu-trigger {
    top: 50%;
    right: 0;
    display: block !important;
    transform: translateY(-50%);
  }

  .header-area .main-nav .nav,
  .header-area.header-sticky .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    margin: 0 !important;
    padding: 8px 12px 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .header-area .main-nav .nav.open {
    display: block;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    padding: 0 !important;
    background: transparent;
    border: 0;
  }

  .header-area .main-nav .nav li a {
    height: 42px !important;
    padding: 0 4px !important;
    color: var(--forest-dark) !important;
    line-height: 42px !important;
    background: transparent !important;
  }

  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    color: var(--forest) !important;
    background: transparent !important;
  }

  .home-hero,
  .page-hero {
    min-height: 610px;
  }

  .trust-section {
    margin-top: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--soft-line);
  }

  .detail-summary {
    position: static;
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .header-area .main-nav {
    min-height: 62px;
  }

  .header-area .main-nav .logo {
    height: 62px;
  }

  .header-area .main-nav .logo img {
    width: 54px;
  }

  .header-area .main-nav .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 15px;
    right: 15px;
    margin: 0;
    padding: 8px 12px 12px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .header-area .main-nav .nav.open {
    display: block;
  }

  .header-area .main-nav .nav li {
    display: block;
    width: 100%;
  }

  .header-area .main-nav .nav li a {
    display: block;
    width: 100%;
    margin: 0;
    height: 42px;
    padding: 0 4px;
    color: var(--forest-dark);
    line-height: 42px;
    background: transparent;
  }

  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    color: var(--forest);
    background: transparent;
  }

  .header-area .main-nav .nav li a::after {
    left: 0;
    right: auto;
    bottom: 8px;
    width: 32px;
  }

  .home-hero,
  .page-hero {
    min-height: 560px;
  }

  .home-hero::before,
  .page-hero::before {
    background: linear-gradient(180deg, rgba(23, 45, 32, 0.84) 0%, rgba(23, 45, 32, 0.78) 100%);
  }

  .home-hero-content,
  .page-hero-content {
    padding-top: 72px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .home-hero p,
  .page-hero p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions,
  .btn-primary-site,
  .btn-secondary-site,
  .btn-secondary-dark,
  .main-button {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .content-section,
  .section.colored {
    padding: 52px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2,
  .center-heading .section-title {
    font-size: 30px;
  }

  .section-header p,
  .center-text p {
    font-size: 16px;
  }

  .service-item,
  .catalog-card,
  .contact-form,
  .detail-summary {
    margin-bottom: 20px;
  }

  .catalog-card-body h3,
  .catalog-card-body p {
    min-height: 0;
  }

  .contact-form {
    padding: 20px;
  }

  .float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
}
