:root {
  --ink: #13261f;
  --forest: #1e5e4a;
  --forest-dark: #0f2e23;
  --gold: #c2a74e;
  --cream: #f6f1e4;
  --paper: #fffcf7;
  --muted: #5d6b64;
  --line: rgba(30, 94, 74, 0.14);
  --shadow: 0 18px 40px rgba(15, 46, 35, 0.08);
  --radius: 18px;
  --text: "Plus Jakarta Sans", sans-serif;
  --display: "Cormorant", serif;
  --script: "Alex Brush", cursive;
}

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

html { scroll-behavior: smooth; }

body.theme-body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--text);
  line-height: 1.7;
}

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

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--gold); }

.container,
.auto-container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 84px;
}

.site-logo img { width: 170px; height: auto; display: block; }

.site-nav { justify-self: start; }
.site-header__actions { justify-self: end; display: flex; align-items: center; gap: 12px; }

.site-nav__list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item { position: relative; }
.site-nav__item > a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-dark);
}

.site-nav__item.is-current > a,
.site-nav__item > a:hover { color: var(--gold); }

.site-nav__sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.site-nav__item.has-sub:hover > .site-nav__sub,
.site-nav__item.has-sub:focus-within > .site-nav__sub { display: block; }

.site-nav__sub a {
  display: block;
  padding: 8px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.site-nav__item--mobile { display: none; }

.btn,
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-family: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn--gold,
.btn-style-two,
.btn-style-one {
  background: var(--gold);
  color: #fff !important;
}

.btn--forest { background: var(--forest); color: #fff !important; }
.btn:hover,
.theme-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  height: 2px;
  margin: 6px auto;
  background: var(--forest-dark);
}

.hero,
.page-title,
.page-title-section,
.breadcumb-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    linear-gradient(120deg, rgba(15, 46, 35, 0.88), rgba(30, 94, 74, 0.72)),
    var(--page-title-bg, url("../images/background/page-title-bg.png")) center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.hero__title,
.page-title .title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
}

.hero__kicker,
.page-title .large-title,
.sec-title .sub-title {
  font-family: var(--script);
  color: var(--gold);
  font-size: 28px;
}

.page-breadcrumb,
.theme-crumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.theme-section,
.about-section-eight,
.services-section,
.services-details,
.contact-details,
.blog-section-two,
.testimonial-section-three,
.packages-section-four { padding: 72px 0; }

.sec-title h2,
.words-slide-up,
.theme-heading {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--forest-dark);
  margin: 8px 0 16px;
}

.theme-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

.theme-layout--single { grid-template-columns: 1fr; }
.theme-layout--right-sidebar,
.theme-layout--left-sidebar { grid-template-columns: minmax(0, 1fr) 280px; }
.theme-layout--left-sidebar { grid-template-columns: 280px minmax(0, 1fr); }
.theme-layout--two-sidebar { grid-template-columns: 240px minmax(0, 1fr) 240px; }

.theme-aside,
.service-sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.theme-aside a,
.sidebar-service-list a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.prose,
.services-details__content,
.wrap-paragrahp { color: var(--muted); }
.prose h2, .prose h3, .prose h4,
.heading h4, .heading h5 { color: var(--forest-dark); font-family: var(--display); }

.theme-grid,
.service-slider .swiper-wrapper { display: grid; gap: 20px; }
.theme-grid--4 { grid-template-columns: repeat(4, 1fr); }
.theme-grid--3 { grid-template-columns: repeat(3, 1fr); }

.theme-card,
.service-block,
.package-block-four .inner-box,
.blog-block .inner-box,
.testimonial-block-three .inner-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}

.service-block .inner-box,
.package-block-four .content-box,
.blog-block .content-box,
.testimonial-block-three .inner-box { padding: 20px; }

.service-block .title a,
.blog-block .title a,
.package-block-four .name a {
  font-family: var(--display);
  font-size: 24px;
  color: var(--forest-dark);
}

.banner-section-three,
.slide-item {
  padding: 80px 0 48px;
  background: linear-gradient(180deg, #eef6f1 0%, var(--paper) 100%);
}

.banner-section-three .title,
.float-text {
  font-family: var(--display);
  color: var(--forest-dark);
}

.site-footer {
  margin-top: auto;
  background: #31380f;
  color: rgba(255,255,255,0.84);
  padding: 64px 0 0;
}

.site-footer a { color: rgba(255,255,255,0.84); }
.site-footer a:hover { color: #fff; }
.site-footer h3 {
  font-family: var(--display);
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list li { margin: 0 0 8px; }

.site-footer__bottom {
  margin-top: 40px;
  background: #798057;
  color: #31380f;
  border-radius: 16px 16px 0 0;
  padding: 24px;
  text-align: center;
}

.theme-error { min-height: 50vh; display: grid; place-items: center; text-align: center; padding: 80px 16px; }
.theme-error h1 { font-family: var(--display); font-size: 96px; margin: 0; color: var(--forest); }

.site-drawer {
  display: none;
  padding: 8px 16px 20px;
}

.site-drawer.is-open { display: block; }
.site-drawer .site-nav__list { display: block; }
.site-drawer .site-nav__sub { position: static; display: block; box-shadow: none; border: 0; padding-left: 12px; }

.impersonation-bar {
  background: #721c24;
  color: #f8d7da;
  padding: 12px;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .site-header__bar { grid-template-columns: auto 1fr auto; }
  .site-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .site-nav__item--mobile { display: block; }
  .theme-layout--right-sidebar,
  .theme-layout--left-sidebar,
  .theme-layout--two-sidebar { grid-template-columns: 1fr; }
  .site-footer__grid,
  .theme-grid--4,
  .theme-grid--3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-footer__grid,
  .theme-grid--4,
  .theme-grid--3 { grid-template-columns: 1fr; }
  .hero, .page-title { padding: 48px 0 36px; }
}
