@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #171717;
  --muted: #6d6a66;
  --line: #e7e0d8;
  --paper: #ffffff;
  --soft: #f5f1ed;
  --brown: #a07b58;
  --brown-dark: #7d5d3f;
  --charcoal: #0b0d0e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
}

p {
  color: var(--muted);
}

.center-head {
  text-align: center;
  margin-bottom: 48px;
}

.center-head h2 {
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  background-color: #151311;
  background-image: linear-gradient(rgba(11, 13, 14, 0.72), rgba(11, 13, 14, 0.72)), var(--page-hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  margin-top: 0;
}

.page-hero h1 {
  font-size: clamp(30px, 5vw, 52px) !important;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  flex-wrap: wrap;
}

.page-hero .breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255, 255, 255, .48);
}

.theme-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
}

.theme-pagination a,
.theme-pagination span {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(160, 123, 88, 0.24);
  border-radius: 4px;
  background: #ffffff;
  color: #5d5349;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.theme-pagination a:hover,
.theme-pagination .current {
  background: var(--brown);
  border-color: var(--brown);
  color: #ffffff;
}

.theme-pagination a:hover {
  transform: translateY(-1px);
}

.theme-pagination span:not(.current) {
  color: #b4aaa0;
  background: #f7f3ee;
  cursor: not-allowed;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .85);
}

.page-hero .breadcrumb .active {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  font-weight: 700;
}

.btn--brown {
  background: var(--brown);
  color: #fff;
}

.round-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #cbb9a6;
  border-radius: 50%;
  color: var(--brown);
  background: #fff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.top-strip {
  background: #080a0b;
  color: #c9c2ba;
  font-size: 13px;
}

.top-strip__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.top-strip i {
  color: var(--brown);
  margin-right: 7px;
}

.top-strip__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-strip__right i {
  margin-right: 0;
}

.navbar {
  background: #fff;
  border-bottom: 1px solid #eee7df;
  position: relative;
  z-index: 20;
  transition: box-shadow .25s ease, transform .25s ease;
}

.site-header.is-fixed .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(15, 12, 9, .12);
}

.site-header.is-fixed {
  padding-bottom: 76px;
}

.navbar__inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 24px;
}

.logo img {
  display: block;
  width: 168px;
  height: 48px;
  object-fit: contain;
}

.logo i {
  color: var(--brown);
  font-size: 30px;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  color: #5f5b55;
  font-size: 15px;
  font-weight: 600;
}

.nav-link,
.nav-submenu-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.nav-submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
}

.nav-submenu-toggle i,
.nav-submenu button i {
  font-size: 11px;
}

.nav-links .active,
.nav-link:hover,
.nav-submenu a:hover,
.nav-submenu button:hover {
  color: var(--brown);
}

.nav-item {
  position: relative;
}

.nav-item__top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-item__top .nav-submenu-toggle {
  color: inherit;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 30;
  width: 230px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(15, 12, 9, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.nav-item:hover > .nav-submenu,
.nav-submenu .has-submenu:hover > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu--child {
  top: -10px;
  left: calc(100% + 10px);
}

.nav-submenu li {
  position: relative;
}

.nav-submenu a,
.nav-submenu button {
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  border: 0;
  background: transparent;
  color: #5f5b55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.nav-drawer-head,
.nav-backdrop {
  display: none;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.inquiry-modal.active {
  opacity: 1;
  visibility: visible;
}

.site-search-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 24px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.site-search-modal.active {
  opacity: 1;
  visibility: visible;
}

.site-search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 12, 9, .62);
  backdrop-filter: blur(4px);
}

.site-search-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 44px;
  background: #fff;
  box-shadow: 0 28px 72px rgba(15, 12, 9, .26);
}

.site-search-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f6f1ec;
  color: var(--brown);
  display: inline-grid;
  place-items: center;
}

.site-search-form__label {
  display: block;
  margin-bottom: 18px;
  color: #221d18;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
}

.site-search-form__row {
  display: flex;
  gap: 12px;
}

.site-search-form input {
  flex: 1;
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  border: 1px solid #d9d1c8;
  color: #28221c;
  font: inherit;
  outline: 0;
}

.site-search-form input:focus {
  border-color: var(--brown);
}

.site-search-form button {
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  background: var(--brown);
  color: #fff;
  font-weight: 700;
}

/* ----------------------------------------------------
   Inquiry Modal Premium Styling
---------------------------------------------------- */
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1), visibility .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.inquiry-modal.active {
  opacity: 1;
  visibility: visible;
}

.inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 9, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity .35s ease;
}

.inquiry-modal__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: scale(0.92) translateY(16px);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.inquiry-modal.active .inquiry-modal__content {
  transform: scale(1) translateY(0);
}

.inquiry-modal__content::before {
  content: '';
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #c78d52, var(--brown, #8c532b), #d4a373);
  z-index: 10;
}

.inquiry-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 12;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f6f2ec;
  color: var(--brown, #8c532b);
  font-size: 16px;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: all .25s ease;
}

.inquiry-modal__close:hover {
  background: var(--brown, #8c532b);
  color: #ffffff;
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 4px 12px rgba(140, 83, 43, 0.3);
}

.global-inquiry-modal .minimal-form-wrap {
  padding: 38px 44px 44px;
}

.minimal-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(140, 83, 43, 0.08);
  color: var(--brown, #8c532b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.minimal-form-badge i {
  font-size: 11px;
}

.minimal-form-head {
  margin-bottom: 28px;
}

.minimal-form-head h2 {
  margin: 0 0 8px;
  color: #1f1a16;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.minimal-form-head p {
  margin: 0;
  color: #6a6259;
  font-size: 14.5px;
  line-height: 1.6;
}

.minimal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.minimal-form-group {
  position: relative;
}

.minimal-form-group--full {
  grid-column: 1 / -1;
}

.minimal-form-input,
.minimal-form-textarea {
  width: 100%;
  border: 1.5px solid #eae4dc;
  /* border-radius: 10px; */
  background: #fdfcfb;
  color: #241e18;
  font: inherit;
  font-size: 14.5px;
  padding: 0 16px;
  outline: 0;
  transition: all .25s ease;
}

.minimal-form-input {
  height: 52px;
}

.minimal-form-textarea {
  min-height: 120px;
  padding-top: 18px;
  padding-bottom: 14px;
  resize: vertical;
}

.minimal-form-label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #8c8378;
  font-size: 14px;
  pointer-events: none;
  transition: transform .2s ease, color .2s ease, font-size .2s ease, background .2s ease, padding .2s ease;
}

.minimal-form-input:focus,
.minimal-form-textarea:focus {
  border-color: var(--brown, #8c532b);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(140, 83, 43, 0.12);
}

.minimal-form-input:focus ~ .minimal-form-label,
.minimal-form-input:not(:placeholder-shown) ~ .minimal-form-label,
.minimal-form-textarea:focus ~ .minimal-form-label,
.minimal-form-textarea:not(:placeholder-shown) ~ .minimal-form-label {
  transform: translateY(-26px);
  color: var(--brown, #8c532b);
  font-size: 12px;
  font-weight: 600;
  background: #ffffff;
  padding: 0 6px;
  border-radius: 4px;
}

.minimal-form-bar {
  display: none;
}

.minimal-form-submit {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-tip {
  color: #787066;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-tip i {
  color: #2b9348;
  font-size: 15px;
}

.minimal-form-submit button {
  min-height: 52px;
  padding: 0 32px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brown, #8c532b) 0%, #6d3f1f 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(140, 83, 43, 0.28);
  transition: all .25s ease;
}

.minimal-form-submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(140, 83, 43, 0.38);
  background: linear-gradient(135deg, #9b5c30 0%, #7d4924 100%);
}

.minimal-form-submit button i {
  transition: transform .25s ease;
}

.minimal-form-submit button:hover i {
  transform: translateX(5px);
}

@media (max-width: 640px) {
  .global-inquiry-modal .minimal-form-wrap {
    padding: 28px 20px 24px;
  }
  .minimal-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .minimal-form-submit {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 16px;
  }
  .minimal-form-submit button {
    justify-content: center;
    width: 100%;
  }
  .form-tip {
    text-align: center;
    justify-content: center;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-search-btn,
.nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #5c5852;
}

.nav-toggle {
  display: none;
  margin-left: auto;
}

.footer {
  background: #090b0c;
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr .7fr 1fr;
  gap: 70px;
  padding: 70px 0 56px;
}

.logo--light small,
.footer p,
.footer a {
  color: #a9a8a6;
}

.footer h3 {
  margin-bottom: 22px;
}

.footer a {
  display: block;
  margin: 10px 0;
}

.subscribe {
  margin-top: 28px;
  width: min(360px, 100%);
  display: flex;
  border: 1px solid #282b2c;
}

.subscribe input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #fff;
}

.subscribe button {
  width: 52px;
  border: 0;
  background: transparent;
  color: var(--brown);
}

.footer__bottom {
  min-height: 72px;
  border-top: 1px solid #222526;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8f8d8a;
  font-size: 13px;
}

.footer__bottom div {
  display: flex;
  gap: 9px;
}

.footer__bottom a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  background: #151819;
  color: #fff;
  margin: 0;
}

.floating-actions {
  position: fixed;
  right: 26px;
  bottom: 30px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.floating-actions.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-actions__item {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(160, 123, 88, .34);
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  display: inline-grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(16, 13, 10, .16);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.floating-actions__item:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-3px);
}

.floating-actions__item--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.floating-actions__item--whatsapp:hover {
  background: #1fb95a;
}

@media (max-width: 1080px) {
  .top-strip__inner {
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    position: fixed;
    z-index: 60;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 360px);
    height: 100vh;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    box-shadow: -24px 0 54px rgba(15, 12, 9, .2);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity .25s ease, visibility .25s ease, transform .3s ease;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 58;
    display: block;
    background: rgba(10, 9, 8, .54);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .navbar.open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .navbar.open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-drawer-head {
    min-height: 74px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }

  .nav-drawer-head img {
    width: 132px;
    height: 40px;
    object-fit: contain;
  }

  .nav-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f6f1ec;
    color: var(--brown);
    display: inline-grid;
    place-items: center;
  }

  .nav-link,
  .nav-submenu a,
  .nav-submenu button {
    width: 100%;
    min-height: 48px;
    padding: 13px 20px;
    border-bottom: 1px solid #eee8e1;
    color: #332f2a;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-item__top {
    width: 100%;
    gap: 0;
    border-bottom: 1px solid #eee8e1;
  }

  .nav-item__top .nav-link {
    flex: 1;
    border-bottom: 0;
  }

  .nav-item__top .nav-submenu-toggle {
    width: 54px;
    min-height: 48px;
    border-bottom: 0;
    justify-content: center;
  }

  .nav-submenu,
  .nav-submenu--child {
    position: static;
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #fbf8f4;
  }

  .has-submenu.is-open > .nav-submenu {
    display: block;
  }

  .nav-submenu .nav-submenu {
    background: #f3eee8;
  }

  .nav-submenu a,
  .nav-submenu button {
    min-height: 44px;
    padding-left: 34px;
    font-size: 14px;
    font-weight: 600;
  }

  .nav-submenu--child a {
    padding-left: 48px;
    color: #625b53;
  }

  .has-submenu.is-open > button i,
  .has-submenu.is-open > .nav-item__top button i {
    transform: rotate(180deg);
  }

  .nav-submenu button i,
  .nav-submenu-toggle i {
    transition: transform .2s ease;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .minimal-form-grid {
    grid-template-columns: 1fr;
  }

  .minimal-form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .global-inquiry-modal .minimal-form-wrap {
    padding: 34px 24px;
  }

  .site-search-modal {
    padding-top: 86px;
  }

  .site-search-modal__panel {
    padding: 38px 22px 24px;
  }

  .site-search-form__row {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .page-hero {
    padding: 60px 0;
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  h2 {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .top-strip {
    display: none;
  }

  .navbar__inner {
    height: 64px;
    gap: 14px;
  }

  .site-header.is-fixed {
    padding-bottom: 64px;
  }

  .logo img {
    width: 136px;
    height: 40px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f7f3ef;
  }

  .top-strip__right {
    margin-left: 0;
  }

  .footer__bottom {
    flex-direction: column;
    padding: 22px 0;
    text-align: center;
  }

  .footer__grid {
    gap: 34px;
    padding: 52px 0 42px;
  }

  .floating-actions {
    right: 14px;
    bottom: 18px;
    gap: 8px;
  }

  .floating-actions__item {
    width: 40px;
    height: 40px;
  }
}
