:root {
  --ink: #0b1d2e;
  --ink-mid: #122d48;
  --ink-soft: #1a3a5a;
  --warm: #c4a265;
  --warm-rgb: 196, 162, 101;
  --warm-light: #d9bc86;
  --warm-text: #523a0c;
  --warm-hover: #916a1f;
  --warm-faint: rgba(196, 162, 101, 0.1);
  --cream: #faf9f6;
  --cream-mid: #f3f1ec;
  --stone: #e6e2da;
  --text: #2a2a2a;
  --text-mid: #42413e;
  --text-light: #4e4c47;
  --white: #ffffff;
  --err: #c0392b;
  --err-bg: rgba(192, 57, 43, 0.05);
  --ok: #2e7d32;
  --ok-bg: rgba(46, 125, 50, 0.05);
  --radius: 6px;
  --nav-h: 68px;
  --shadow-s: 0 2px 10px rgba(11, 29, 46, 0.05);
  --shadow-m: 0 8px 30px rgba(11, 29, 46, 0.08);
  --shadow-l: 0 20px 60px rgba(11, 29, 46, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--warm-text);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover {
  color: var(--warm-hover);
}
::selection {
  background: var(--warm);
  color: var(--white);
}
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}
.sec--dark:focus-visible,
.lbox:focus-visible,
.modal-backdrop:focus-visible {
  outline-color: var(--warm-light);
}
.sec--dark button:focus-visible,
.sec--dark input:focus-visible,
.sec--dark select:focus-visible,
.sec--dark textarea:focus-visible,
.lbox button:focus-visible,
.modal-backdrop button:focus-visible,
.modal-backdrop input:focus-visible,
.modal-backdrop select:focus-visible {
  outline-color: var(--warm-light);
}
.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;
}
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec {
  padding: 72px 0;
}
.sec--alt {
  background: var(--cream-mid);
}
.sec--dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
}
.sec-head {
  margin-bottom: 48px;
}
.sec-head--center {
  text-align: center;
}
.sec-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-text);
  margin-bottom: 12px;
}
.sec--dark .sec-label {
  color: var(--warm-light);
}
.gold-rule {
  width: 42px;
  height: 1px;
  background: var(--warm);
  margin-bottom: 18px;
}
.sec-head--center .gold-rule {
  margin-left: auto;
  margin-right: auto;
}
.sec-h {
  font-family: var(--serif);
  font-size: 2.15rem;
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}
.sec-h em {
  font-style: italic;
  font-weight: 400;
  color: var(--warm-text);
}
.sec--dark .sec-h {
  color: var(--white);
}
.sec-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-mid);
  max-width: 560px;
  margin-top: 14px;
}
.sec--dark .sec-p {
  color: rgba(255, 255, 255, 0.72);
}
.sec-head--center .sec-p {
  margin-left: auto;
  margin-right: auto;
}
.btn-o,
.btn-p,
.btn-w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 52px;
  padding: 14px 28px;
  transition:
    color 0.25s var(--ease),
    background-color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  text-decoration: none;
  line-height: 1;
}
.btn-p {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 29, 46, 0.15);
}
.btn-p:hover:not(:disabled) {
  color: var(--white);
  background: var(--ink-mid);
}
.btn-p:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-o {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stone);
}
.btn-o:hover {
  border-color: var(--warm);
  color: var(--ink);
}
.sec--dark .btn-o {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
}
.sec--dark .btn-o:hover {
  border-color: var(--warm);
  color: var(--warm-light);
}
.btn-w {
  background: var(--warm);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(196, 162, 101, 0.15);
}
.btn-w:hover {
  color: var(--ink) !important;
  background: var(--warm-light);
}
.btn-p:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(11, 29, 46, 0.2);
}
.btn-o:active {
  transform: translateY(0);
  border-color: var(--ink);
}
.btn-w:active {
  transform: translateY(0) !important;
  background: var(--warm) !important;
  box-shadow: 0 2px 8px rgba(196, 162, 101, 0.2) !important;
}
@media (hover: hover) and (pointer: fine) {
  .btn-p:hover:not(:disabled) {
    color: var(--white);
    background: var(--ink-mid);
    transform: translateY(-1.5px);
    box-shadow:
      0 6px 20px rgba(11, 29, 46, 0.3),
      0 0 0 2px var(--warm-light);
  }
  .btn-o:hover {
    border-color: var(--ink);
    transform: translateY(-1.5px);
  }
  .sec--dark .btn-o:hover {
    border-color: var(--warm-light);
    box-shadow: 0 0 10px rgba(196, 162, 101, 0.15);
  }
  .btn-w:hover {
    color: var(--ink) !important;
    background: var(--warm-light);
    transform: translateY(-1.5px);
    box-shadow: 0 6px 20px rgba(196, 162, 101, 0.35);
  }
  .hdr-logo:hover {
    transform: scale(1.02) translateY(-0.5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  }
  .lbox-close:hover {
    color: var(--warm);
    transform: scale(1.05);
  }
  .faq-item:hover {
    border-color: rgba(196, 162, 101, 0.4);
  }
  .lbox-next:hover,
  .lbox-prev:hover {
    background: var(--warm);
    color: var(--ink);
    border-color: var(--warm);
  }
  .gal-item:hover img {
    transform: scale(1.04);
  }
  .hl-card:hover {
    background: #fdfcfa;
  }
  .hl-card:hover .hl-icon {
    background: rgba(196, 162, 101, 0.2);
  }
  .cfg-pane.active:hover .cfg-img-wrap img {
    transform: scale(1.02);
  }
  .wa-float:hover {
    color: var(--white) !important;
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  }
}
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.rv.vis {
  opacity: 1;
  transform: none;
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.2s;
}
[data-delay="3"] {
  transition-delay: 0.3s;
}
[data-delay="4"] {
  transition-delay: 0.4s;
}
[data-delay="5"] {
  transition-delay: 0.5s;
}
[data-delay="6"] {
  transition-delay: 0.6s;
}
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: 0.6s linear infinite spin;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(11, 29, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.hdr.scrolled {
  background: rgba(11, 29, 46, 0.96);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.hdr-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  height: 54px;
}
.logo-img {
  height: 40px;
  width: 120px;
}
.hdr-nav {
  display: none;
  align-items: center;
  gap: 6px;
}
.hdr-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s var(--ease);
}
.hdr-nav a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--warm-light);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: right;
}
.hdr-nav a.active,
.hdr-nav a:hover {
  color: var(--warm-light);
}
.hdr-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.hdr-actions {
  display: none;
  align-items: center;
  gap: 20px;
}
.hdr-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
  min-height: 44px;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.hdr-phone:hover {
  color: var(--warm-light);
}
.hdr-phone svg {
  color: var(--warm-text);
  flex-shrink: 0;
}
.hdr-cta {
  font-size: 10.5px;
  padding: 12px 22px;
  min-height: 40px;
  margin: 0;
  vertical-align: middle;
  align-self: center;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mob-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 24px 28px;
  display: flex;
  flex-direction: column;
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease),
    visibility 0.3s;
}
.mob-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.mob-nav a {
  display: flex;
  align-items: center;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 15px 0;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mob-nav a:hover {
  color: var(--warm-hover);
}
.mob-cta {
  margin-top: 16px;
  text-align: center;
  width: 100%;
}
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 0 0;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.78;
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--ink) 0,
    rgba(11, 29, 46, 0.5) 45%,
    rgba(11, 29, 46, 0.1) 100%
  );
  z-index: 1;
}
.hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 52px;
  align-items: end;
}
.hero-text {
  animation: heroIn 0.8s var(--ease) both;
}
.hero-loc {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-light);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--warm-light);
}
.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 530px;
  margin-bottom: 32px;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-bottom: 36px;
}
.hero-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 95px;
  border-left: 1px solid rgba(196, 162, 101, 0.4);
  padding-left: 14px;
}
.hero-fact-v {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  overflow-wrap: break-word;
}
.hero-fact-l {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero .btn-o {
  color: var(--white);
  border-color: var(--warm-light);
  background: rgba(11, 29, 46, 0.6);
}
.hero .btn-o:hover {
  border-color: var(--warm);
  color: var(--warm-light);
}
.fld {
  position: relative;
  margin-bottom: 26px;
}
.fld input,
.fld select,
.fld textarea {
  width: 100%;
  padding: 18px 14px 6px;
  height: 52px;
  border: 1px solid var(--stone);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: #fafafa;
  outline: 0;
  user-select: text !important;
  -webkit-user-select: text !important;
  transition:
    border-color 0.25s var(--ease),
    background-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.fld select {
  padding-top: 20px;
  padding-bottom: 4px;
  padding-right: 36px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6H0z' fill='%238a8780'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #fafafa;
}
.fld textarea {
  height: auto;
  min-height: 90px;
  padding: 20px 14px 6px;
  resize: vertical;
}
.fld textarea:focus ~ label,
.fld textarea:not(:placeholder-shown) ~ label {
  color: var(--warm);
}
.fld label {
  position: absolute;
  left: 14px;
  top: 15px;
  font-size: 13.5px;
  color: var(--text-mid);
  pointer-events: none;
  transition:
    transform 0.25s var(--ease),
    color 0.25s var(--ease),
    font-size 0.25s var(--ease);
  transform-origin: left top;
}
.fld input:-webkit-autofill ~ label,
.fld input:focus ~ label,
.fld input:not(:placeholder-shown) ~ label,
.fld select ~ label {
  transform: translateY(-9px) scale(0.78);
  color: var(--warm-text);
  font-weight: 600;
}
.fld textarea:focus ~ label,
.fld textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-20px) scale(0.78);
  color: var(--warm-text);
  font-weight: 600;
}
.fld select ~ .select-label {
  top: 15px;
}
.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  border-color: var(--ink-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 29, 46, 0.05);
}
.fld input.err,
.fld select.err,
.fld textarea.err {
  border-color: var(--err);
  background: #fdf6f5;
}
.fld input.valid,
.fld select.valid,
.fld textarea.valid {
  border-color: var(--ok);
}
.fld-err {
  display: none;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: -18px;
  left: 2px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--err);
  margin-top: 0;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
  animation: 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards fldErrorFadeIn;
}
.fld-err.show {
  display: flex;
}
@keyframes fldErrorFadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -2px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fld-err svg {
  flex-shrink: 0;
  color: var(--err);
}
.form-privacy {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-mid);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.02em;
}
.s-form .form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-success {
  display: none;
  background: var(--ok-bg);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  color: #1b5e20;
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
  animation: fadeIn 0.3s var(--ease);
}
.form-success svg {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
}
.form-error {
  display: none;
  background: var(--err-bg);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 13px;
  color: var(--err);
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
  animation: fadeIn 0.3s var(--ease);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.trust {
  background: var(--ink-mid);
  padding: 18px 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.08);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}
.trust-item svg {
  color: var(--warm-text);
  flex-shrink: 0;
}
.trust-div {
  display: none;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.about-text .sec-p {
  max-width: 100%;
}
.about-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.about-img-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-m);
}
.img-primary {
  width: 100%;
  height: auto;
  max-height: 420px;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: var(--ink);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  border-left: 3px solid var(--warm);
  text-align: center;
  box-shadow: var(--shadow-m);
  z-index: 5;
}
.about-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--warm-light);
  line-height: 1;
}
.about-badge small {
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.hl-card {
  background: var(--white);
  padding: 36px 30px;
  transition: background-color 0.3s var(--ease);
}
.hl-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm-faint);
  border: 1px solid rgba(196, 162, 101, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--warm-text);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition:
    background-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.hl-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.hl-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
}
.gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
  justify-items: center;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  width: 100%;
  max-width: 560px;
  height: auto;
  aspect-ratio: 4/3;
  display: block;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gal-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(
    to top,
    rgba(11, 29, 46, 0.9) 0,
    rgba(11, 29, 46, 0.4) 60%,
    transparent 100%
  );
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.gal-item:hover .gal-caption,
.gal-item:focus-visible .gal-caption {
  opacity: 1;
  transform: none;
}
@media (hover: none) {
  .gal-caption {
    opacity: 1;
    transform: none;
  }
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.loc-text {
  max-width: 520px;
}
.loc-badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  background: var(--warm-faint);
  border: 1px dashed rgba(196, 162, 101, 0.4);
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 24px;
  line-height: 1.5;
}
.loc-groups {
  display: grid;
  gap: 32px;
}
.loc-group h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-text);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--stone);
}
.loc-items {
  display: grid;
  gap: 10px;
}
.loc-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--text-mid);
}
.loc-item span:first-child {
  position: relative;
  padding-left: 12px;
}
.loc-item span:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--warm);
  border-radius: 50%;
}
.loc-dist {
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  flex-shrink: 0;
}
.cfg-suite {
  width: 100%;
}
.cfg-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 12px;
}
.cfg-tab {
  background: transparent;
  border: none;
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  position: relative;
  min-height: 44px;
  transition: color 0.3s var(--ease);
}
.cfg-tab::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--warm);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: center;
}
.cfg-tab.active {
  color: var(--ink);
}
.cfg-tab.active::after {
  transform: scaleX(1);
}
.cfg-pane {
  display: none;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  will-change: opacity, transform;
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cfg-pane.active {
  display: block;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cfg-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.cfg-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream-mid);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  aspect-ratio: 16/9;
}
.cfg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
@supports (aspect-ratio: 4 / 3) {
  .img-primary {
    height: auto;
    aspect-ratio: 4/3;
  }
  .gal-item {
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 768px) {
  @supports (aspect-ratio: 4 / 3) {
    .gal-item {
      height: 100%;
      aspect-ratio: auto;
    }
  }
}
@supports (aspect-ratio: 16 / 9) {
  .cfg-img-wrap {
    height: auto;
    aspect-ratio: 16/9;
  }
}
.cfg-zoom-indicator {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 29, 46, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.3s var(--ease);
}
.cfg-img-wrap:hover .cfg-zoom-indicator {
  opacity: 1;
}
.cfg-content {
  padding: 8px 0;
}
.cfg-type {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 4px;
}
.cfg-area {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-text);
  margin-top: 4px;
}
.cfg-bar {
  height: 3px;
  background: var(--cream-mid);
  border-radius: 2px;
  margin: 16px 0 24px;
  overflow: hidden;
}
.cfg-bar span {
  display: block;
  height: 100%;
  background: var(--warm);
  border-radius: 2px;
}
.cfg-features-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.cfg-features-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-mid);
}
.cfg-features-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--warm);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}
.cfg-cta-btn {
  width: 100%;
  text-align: center;
}
#credentials {
  padding: 56px 0;
  border-top: 1px solid rgba(196, 162, 101, 0.08);
  border-bottom: 1px solid rgba(196, 162, 101, 0.08);
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.cred-item {
  text-align: center;
}
.cred-val {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--warm-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cred-lbl {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}
.enq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.enq-info .sec-p {
  max-width: 100%;
}
.enq-details-list {
  list-style: none;
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.enq-details-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.enq-details-list li svg {
  color: var(--warm-text);
  flex-shrink: 0;
  margin-top: 3px;
}
.enq-details-list li strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.enq-details-list li span {
  display: block;
  font-size: 13.5px;
  color: var(--text-mid);
  margin-top: 2px;
  line-height: 1.45;
}
.enq-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3.5px solid var(--warm);
  box-shadow: var(--shadow-m);
  padding: 36px 30px;
}
.enq-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-bottom: 16px;
}
.enq-sub {
  font-size: 13px;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 24px;
}
.faq-list {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 48px;
  transition: background-color 0.25s var(--ease);
}
.faq-q:hover {
  background-color: rgba(11, 29, 46, 0.01);
}
.faq-q span:first-child {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--cream-mid);
  color: var(--warm-text);
  border-radius: 50%;
  flex-shrink: 0;
  transition:
    transform 0.3s var(--ease),
    background-color 0.3s,
    color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--stone);
}
.faq-a-inner p {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--text-mid);
}
.ftr {
  background: #06111d;
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 48px;
  border-top: 1px solid rgba(196, 162, 101, 0.08);
  font-size: 12.5px;
  line-height: 1.75;
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.ftr-col h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.ftr-col p {
  font-weight: 300;
}
.ftr-col a {
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
  transition:
    color 0.25s,
    border-color 0.25s;
}
.ftr-col a:hover {
  color: var(--warm-light);
  border-bottom-color: var(--warm-light);
}
.ftr-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 300;
}
.sticky-m {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 16px;
  right: 16px;
  max-width: 480px;
  margin: 0 auto;
  z-index: 90;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 29, 46, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 162, 101, 0.25);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(calc(100% + 32px));
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0.4s;
  visibility: hidden;
  opacity: 0;
}
.sticky-m.vis {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.st-mob-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 0 8px;
}
.dock-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.dock-action--circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
.dock-action--circle svg {
  stroke: var(--cream);
}
.dock-action--circle:active {
  transform: scale(0.9);
  background: rgba(255, 255, 255, 0.12);
}
.dock-action--circle:hover {
  color: var(--warm-light);
  border-color: rgba(196, 162, 101, 0.45);
  background: rgba(255, 255, 255, 0.08);
}
.dock-action--circle:hover svg {
  stroke: var(--warm-light);
}
.dock-action--circle:focus-visible {
  outline: 2px solid var(--warm-light);
  outline-offset: 2px;
}
.dock-action--circle.dock-action--whatsapp:hover {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.12);
}
.dock-action--circle.dock-action--whatsapp:hover svg {
  stroke: #25d366;
}
.dock-action--circle.dock-action--whatsapp:active {
  background: rgba(37, 211, 102, 0.18);
  transform: scale(0.9);
}
.dock-action--circle.dock-action--whatsapp:active svg {
  stroke: #20ba5a;
}
.dock-action--cta {
  flex: 1;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--warm-light), var(--warm));
  border: none;
  color: var(--ink) !important;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(196, 162, 101, 0.3);
  position: relative;
  overflow: hidden;
  animation: ctaPulse 3s infinite ease-in-out;
}
.dock-action--cta svg {
  stroke: var(--ink);
  transition: transform 0.25s var(--ease);
}
.dock-action--cta:hover svg {
  transform: translateY(2px);
}
.dock-action--cta:hover {
  background: linear-gradient(135deg, #e3c99a, var(--warm-hover));
  color: var(--ink) !important;
  box-shadow: 0 6px 20px rgba(196, 162, 101, 0.45);
}
.dock-action--cta:active {
  transform: scale(0.96);
  animation-play-state: paused;
}
.dock-action--cta:focus-visible {
  outline: 2px solid var(--warm-light);
  outline-offset: 2px;
}
.cta-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-150%) skewX(-20deg);
  animation: shimmerEffect 4.5s infinite linear;
  pointer-events: none;
}
.mob-nav.open ~ #stickyMobile {
  transform: translateY(calc(100% + 32px)) !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@keyframes shimmerEffect {
  0% { transform: translateX(-150%) skewX(-20deg); }
  45% { transform: translateX(-150%) skewX(-20deg); }
  85% { transform: translateX(150%) skewX(-20deg); }
  100% { transform: translateX(150%) skewX(-20deg); }
}
@keyframes ctaPulse {
  0% { box-shadow: 0 4px 15px rgba(196, 162, 101, 0.3), 0 0 0 0 rgba(196, 162, 101, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(196, 162, 101, 0.5), 0 0 0 8px rgba(196, 162, 101, 0); }
  100% { box-shadow: 0 4px 15px rgba(196, 162, 101, 0.3), 0 0 0 0 rgba(196, 162, 101, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-m {
    transform: none !important;
    transition: opacity 0.25s ease, visibility 0.25s !important;
    visibility: hidden;
    opacity: 0;
  }
  .sticky-m.vis {
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .dock-action {
    transition: none !important;
  }
  .dock-action:active {
    transform: none !important;
  }
  .cta-shimmer {
    animation: none !important;
    display: none !important;
  }
  .dock-action--cta {
    animation: none !important;
  }
}
.lbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 17, 29, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s;
}
.lbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 38px;
  color: var(--white);
  cursor: pointer;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.lbox-next,
.lbox-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.lbox-next svg,
.lbox-prev svg {
  flex-shrink: 0;
}
.lbox-prev {
  left: 24px;
}
.lbox-next {
  right: 24px;
}
.lbox-content {
  position: relative;
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: lboxZoom 0.4s var(--ease) both;
}
@keyframes swipeHintFade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.lbox-swipe-hint {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
}
.lbox.open .lbox-swipe-hint {
  animation: swipeHintFade 3.5s 1.5s forwards;
}
@media screen and (min-width: 1024px) {
  .lbox-swipe-hint {
    display: none !important;
  }
}
@keyframes lboxZoom {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.lbox-content img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  text-align: center;
  max-width: 650px;
  line-height: 1.55;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .hl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sec {
    padding: 88px 0;
  }
  #credentials {
    max-width: 100%;
    padding: 56px 0;
  }
  #credentials .wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
  }
  .cred-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-grid,
  .enq-grid,
  .loc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .loc-grid {
    align-items: start;
  }
  .about-text .sec-p,
  .enq-info .sec-p,
  .loc-text .sec-p {
    max-width: 520px;
  }
  .cfg-card-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 48px;
  }
  .gal-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 215px;
    gap: 16px;
    justify-items: stretch;
  }
  .gal-item {
    height: auto;
    aspect-ratio: auto;
    max-width: none;
  }
  .gal-tall {
    grid-column: 1/3;
    grid-row: 1/3;
  }
  .ftr-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .ftr-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .trust-div {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  .hdr-actions,
  .hdr-nav {
    display: flex;
  }
  .hdr-inner {
    max-width: 1440px !important;
    width: 100%;
  }
  .hdr-nav {
    gap: 12px !important;
  }
  .hdr-nav a {
    font-size: 11px !important;
    padding: 10px 14px !important;
    letter-spacing: 0.14em !important;
  }
  .hdr-actions {
    gap: 20px !important;
  }
  .hdr-phone {
    font-size: 12.5px !important;
  }
  .hdr-cta {
    font-size: 10.5px !important;
    padding: 12px 22px !important;
  }
  .sticky-m {
    display: none !important;
  }
  .hero-body {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-bottom: 64px;
  }
  .hero-text {
    padding-bottom: 24px;
    max-width: 100%;
    width: 100%;
    text-align: left;
  }
  .hero-text * {
    text-align: left;
  }
  .hero-desc {
    max-width: 800px;
  }
  .about-grid,
  .enq-grid,
  .loc-grid {
    gap: 80px;
  }
  .hl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .lbox-prev {
    left: 8px;
  }
  .lbox-next {
    right: 8px;
  }
  .lbox-next,
  .lbox-prev {
    width: 36px;
    height: 36px;
    background: rgba(11, 29, 46, 0.72);
  }
  .lbox-content {
    max-width: 90vw;
  }
  .enq-card {
    padding: 24px 20px !important;
  }
}
@media screen and (max-width: 374px) {
  .hero-facts {
    gap: 16px 20px;
  }
  .hero-fact {
    min-width: 80px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .cfg-tab {
    font-size: 11px;
    padding: 8px 14px;
  }
  .trust-item {
    font-size: 11px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    font-weight: 300;
  }
}
.ty-content {
  padding: calc(var(--nav-h) + 48px) 0 80px;
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-top: 4px solid var(--warm);
  border-radius: var(--radius);
  box-shadow: var(--shadow-l);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  animation: tyFadeIn 0.6s var(--ease) both;
}
@keyframes tyFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ty-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--warm-faint);
  border: 2px solid var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--warm-text);
}
.ty-icon svg {
  stroke: var(--warm);
}
.ty-check-path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: tyDrawCheck 0.5s 0.3s var(--ease) forwards;
}
@keyframes tyDrawCheck {
  to {
    stroke-dashoffset: 0;
  }
}
.ty-h1 {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.ty-h1 em {
  font-style: italic;
  color: var(--warm-text);
  font-weight: 400;
}
.ty-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.ty-desc strong {
  color: var(--ink);
  font-weight: 600;
}
.ty-steps {
  background: var(--cream-mid);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
}
.ty-steps-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 8px;
}
.ty-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.ty-step:last-child {
  margin-bottom: 0;
}
.ty-step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-mid);
  flex-shrink: 0;
  margin-top: 1px;
  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.ty-step.active .ty-step-dot {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink);
}
.ty-step-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-mid);
}
.ty-step.active .ty-step-text {
  color: var(--ink);
  font-weight: 500;
}
.ty-step.active .ty-step-text strong {
  color: var(--ink) !important;
}
.ty-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.ty-actions .btn-o,
.ty-actions .btn-w {
  width: 100%;
  min-height: 48px;
  padding: 12px 24px;
}
.ty-actions .btn-w svg {
  flex-shrink: 0;
  margin-right: 6px;
}
.ty-footer {
  font-size: 13px;
  color: var(--text-mid);
  border-top: 1px solid var(--stone);
  padding-top: 20px;
  line-height: 1.5;
}
.ty-footer strong {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .ty-card {
    padding: 32px 20px;
  }
  .ty-steps {
    padding: 16px;
  }
}
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 95;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    bottom 0.4s var(--ease);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.mob-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(6, 17, 29, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    visibility 0.3s;
}
.mob-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .mob-backdrop {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
  .ftr {
    padding-bottom: 110px;
  }
  .sticky-m.vis ~ .wa-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  }
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 0;
    background: var(--ink);
  }
  .hero-bg {
    opacity: 0.4;
    object-position: 60% center !important;
  }
  .hero-grad {
    background: linear-gradient(
      to top,
      var(--ink) 0,
      rgba(11, 29, 46, 0.85) 60%,
      rgba(11, 29, 46, 0.3) 100%
    );
  }
  .hero-body {
    padding: calc(var(--nav-h) + 24px) 20px 32px 20px;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .hero-text {
    width: 100%;
    text-align: left;
    animation: 0.8s cubic-bezier(0.16, 1, 0.3, 1) both heroFadeInStagger;
  }
  .hero-loc {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
    color: var(--warm-light);
    opacity: 0.9;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 7.5vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    font-weight: 400;
  }
  .hero h1 em {
    display: inline;
    margin-left: 6px;
  }
  .hero-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
    width: 100%;
    margin-bottom: 28px;
  }
  .hero-fact {
    border-left: 2px solid var(--warm);
    padding-left: 10px;
    min-width: 0;
  }
  .hero-fact-v {
    font-size: 1.15rem;
    font-weight: 500;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-actions .btn-o,
  .hero-actions .btn-p,
  .hero-actions .btn-w {
    width: 100%;
    min-height: 50px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .trust {
    padding: 14px 0;
  }
  .trust-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .trust-item {
    font-size: 11.5px !important;
    white-space: nowrap !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .trust-div {
    display: none !important;
  }
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .cfg-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .cfg-tab {
    background: var(--cream-mid);
    border: 1px solid var(--stone);
    border-radius: var(--radius);
    padding: 10px 6px;
    font-size: 11px;
    text-align: center;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s var(--ease);
  }
  .cfg-tab::after {
    display: none !important;
  }
  .cfg-tab.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white) !important;
  }
  #credentials {
    padding: 36px 0;
  }
  #credentials .sec-head {
    margin-bottom: 24px;
  }
  #credentials .cred-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sec {
    padding: 44px 0;
  }
  .wrap {
    padding: 0 20px;
  }
  .sec-h {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  .sec-p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
  }
  .btn-o,
  .btn-p,
  .btn-w,
  .hdr a,
  .hero-actions a,
  .mob-nav a,
  .sticky-m a,
  button,
  input,
  select,
  textarea {
    min-height: 48px;
    touch-action: manipulation;
  }
}
@keyframes heroFadeInStagger {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.cfg-bar-fill {
  width: var(--fill, 50%);
}
.cfg-bar-fill.fill-72 {
  width: 72%;
}
.cfg-bar-fill.fill-92 {
  width: 92%;
}
.cfg-bar-fill.fill-100 {
  width: 100%;
}
.nojs-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #2e7d32;
  color: #fff;
  text-align: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.honeypot-hide {
  display: none !important;
}
#lboxImage {
  transition: opacity 0.25s ease;
}
.loc-map {
  margin-top: 48px;
}
.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 42%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-m);
}
.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 767px) {
  .map-wrapper {
    padding-bottom: 65%;
  }
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 17, 29, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s;
  overflow-y: auto;
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto;
  transform: translateY(24px);
  transition: transform 0.4s var(--ease);
}
.modal-backdrop.open .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.25s,
    transform 0.25s;
}
.modal-close:hover {
  color: var(--warm);
  transform: scale(1.1);
}
@media screen and (min-width: 768px) {
  .modal-close {
    top: -16px;
    right: -56px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-bg {
    opacity: 0.9;
  }
  .hero-grad {
    background: linear-gradient(
      to top,
      rgba(11, 29, 46, 0.97) 0,
      rgba(11, 29, 46, 0.72) 28%,
      rgba(11, 29, 46, 0.28) 56%,
      rgba(11, 29, 46, 0.04) 100%
    );
  }
  .hero-body {
    row-gap: 32px;
  }
}
@media screen and (max-width: 1023px) {
  .hero-bg {
    opacity: 0.75;
  }
  .hero-grad {
    background: linear-gradient(
      to top,
      rgba(11, 29, 46, 0.97) 0,
      rgba(11, 29, 46, 0.82) 42%,
      rgba(11, 29, 46, 0.32) 68%,
      rgba(11, 29, 46, 0.05) 100%
    );
  }
}
.amen-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  margin-bottom: 48px;
}
.amen-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.amen-banner-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  background: linear-gradient(
    to top,
    rgba(11, 29, 46, 0.92) 0,
    rgba(11, 29, 46, 0.5) 70%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  gap: 0;
}
.amen-banner-stat {
  flex: 1;
  text-align: center;
}
.amen-banner-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--warm-light);
  line-height: 1;
}
.amen-banner-stat span {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.amen-banner-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
  margin: 0 4px 6px;
}
@media screen and (min-width: 768px) {
  .amen-banner img {
    height: 400px;
  }
  .amen-banner-stat strong {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .amen-banner img {
    height: 460px;
  }
}
.amen-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.amen-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease);
}
.amen-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--warm-faint);
  border: 1px solid rgba(196, 162, 101, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.amen-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--warm);
}
.amen-card-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.amen-card-tag {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: -4px;
}
@media (hover: hover) and (pointer: fine) {
  .amen-card:hover {
    border-color: rgba(196, 162, 101, 0.45);
    box-shadow: var(--shadow-m);
    transform: translateY(-2px);
  }
}
@media screen and (min-width: 640px) {
  .amen-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .amen-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.amen-infra-strip {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.amen-infra-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-text);
  margin-bottom: 14px;
}
.amen-infra-items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}
.amen-infra-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream-mid);
  border: 1px solid var(--stone);
  border-radius: 100px;
  padding: 6px 13px;
  white-space: nowrap;
  width: max-content;
  flex-shrink: 0;
}
.amen-infra-item svg {
  width: 12px;
  height: 12px;
  color: var(--warm);
  flex-shrink: 0;
}
.form-call-link {
  font-size: 11.5px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 6px;
}
.form-call-link a {
  color: var(--warm-text);
  font-weight: 600;
  border-bottom: 1px dotted rgba(196, 162, 101, 0.5);
}
.form-call-link a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.lbox-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--warm);
  border-radius: 50%;
  animation: 0.7s linear infinite spin;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1001;
}
.lbox-loader.active {
  opacity: 1;
}
.qenq-success,
.qenq-error {
  display: none;
}
.qenq-success {
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(46, 125, 50, 0.35);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  color: #a5d6a7;
  line-height: 1.5;
  text-align: center;
}
.qenq-error {
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.35);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 13px;
  color: #ef9a9a;
  line-height: 1.5;
  text-align: center;
}
.qenq {
  display: block;
  background: var(--ink);
  border-top: 1px solid rgba(196, 162, 101, 0.14);
  border-bottom: 1px solid rgba(196, 162, 101, 0.14);
  padding: 30px 0;
  position: relative;
}
.qenq .qenq-form {
  width: 100%;
}
.qenq .qenq-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .qenq .qenq-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .qenq .qenq-row {
    grid-template-columns: 1fr 1fr 1fr minmax(186px, auto);
  }
}
.qenq .fld {
  margin-bottom: 0;
}
.qenq .fld input {
  width: 100%;
  height: 56px;
  padding: 18px 16px 6px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
}
.qenq .fld input:-webkit-autofill,
.qenq .fld input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 100px #0d2236 inset;
}
.qenq .fld input:focus {
  border-color: var(--warm);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.15);
}
.qenq .fld label {
  left: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.qenq .fld input:focus ~ label,
.qenq .fld input:not(:placeholder-shown) ~ label,
.qenq .fld input:-webkit-autofill ~ label {
  color: var(--warm-light);
}
.qenq .fld.err input {
  border-color: rgba(220, 80, 60, 0.65);
}
.qenq .qenq-submit {
  height: 56px;
  min-height: 56px;
  width: 100%;
  white-space: nowrap;
  background: var(--warm);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(196, 162, 101, 0.3);
}
.qenq .qenq-submit:hover:not(:disabled) {
  background: var(--warm-light);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(196, 162, 101, 0.5);
  transform: translateY(-1.5px);
}
.qenq .qenq-success,
.qenq .qenq-error {
  margin-top: 24px;
}
.scroll-locked {
  overflow: hidden !important;
}
.legal-content {
  padding: calc(var(--nav-h) + 48px) 0 80px;
  background: var(--cream);
}
.legal-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  padding: 40px;
  margin-top: 24px;
}
.legal-card h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.legal-sub {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  display: block;
}
.legal-body h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin: 32px 0 12px;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 8px;
}
.legal-body p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.legal-body ul {
  list-style: none;
  margin-bottom: 20px;
  display: grid;
  gap: 10px;
}
.legal-body ul li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-mid);
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--warm);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .legal-card {
    padding: 24px 20px;
  }
}
.sec--dark .sec-p {
  color: rgba(255, 255, 255, 0.72);
}
.hero-desc {
  color: rgba(255, 255, 255, 0.72);
}
.ftr {
  color: rgba(255, 255, 255, 0.72);
}
.gal-item:focus-visible,
.cfg-img-wrap a:focus-visible,
.lbox-trigger:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
}
.gal-item:focus-visible .gal-caption {
  opacity: 1;
  transform: none;
}
.faq-q:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}
@media screen and (min-width: 1680px) {
  .wrap,
  .hdr-inner {
    max-width: 1280px;
  }
}
@media screen and (min-width: 2200px) {
  .wrap,
  .hdr-inner {
    max-width: 1360px;
  }
  .sec-h {
    font-size: clamp(2.2rem, 2.6vw, 2.9rem);
  }
}
@media screen and (max-width: 340px) {
  .wrap {
    padding: 0 16px;
  }
  .hero-body {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 12px;
  }
  .hero-fact {
    min-width: 0;
    padding-left: 8px;
  }
  .hero-fact-v {
    font-size: 1rem;
  }
  .trust-inner {
    gap: 10px 10px;
  }
  .cfg-tab {
    font-size: 10px;
    padding: 8px 4px;
  }
}
.qenq-form-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.03em;
}
.no-js .cfg-pane {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
}
.no-js .faq-a {
  max-height: none !important;
  overflow: visible !important;
}
.no-js .cfg-tabs,
.no-js .sticky-m {
  display: none !important;
}
.no-js .rv {
  opacity: 1 !important;
  transform: none !important;
}
@media screen and (max-width: 1023px) {
  .no-js .nav-toggle {
    display: none !important;
  }
  .no-js .hdr-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2px 4px !important;
  }
  .no-js .hdr-nav a {
    font-size: 10px !important;
    padding: 6px 8px !important;
    min-height: 44px !important;
  }
  .no-js .hdr-actions {
    display: flex !important;
    gap: 8px !important;
  }
}
noscript .form-call-link {
  text-align: center !important;
  padding: 12px 0 !important;
  font-weight: 600 !important;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--ink);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid var(--warm);
  border-top: none;
  transition: top 0.18s var(--ease);
  white-space: nowrap;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: none;
}
.btn-w:focus-visible,
.btn-p:focus-visible,
.btn-o:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
}
.wa-float:focus-visible {
  outline: 3px solid #25d366;
  outline-offset: 3px;
}
.cfg-cta-btn:focus-visible,
.hdr-cta:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
}
.hero .btn-w:focus-visible,
.hero .btn-o:focus-visible,
.qenq .qenq-submit:focus-visible {
  outline-color: var(--warm-light);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.08s !important;
    animation-delay: 0s !important;
    transition-duration: 0.08s !important;
    transition-delay: 0s !important;
  }
  .sticky-btn::after {
    animation: none !important;
  }
  .rv {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .rv.vis {
    opacity: 1 !important;
    transform: none !important;
  }
  .cred-val[data-count-to] {
    transition: none !important;
  }
}
.form-response-promise {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--warm-text);
  font-weight: 600;
  letter-spacing: 0.025em;
  margin: 0 0 10px;
}
.form-response-promise svg {
  flex-shrink: 0;
  opacity: 0.85;
}
.faq-cta-block {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(
    135deg,
    rgba(var(--warm-rgb), 0.08) 0%,
    rgba(var(--warm-rgb), 0.03) 100%
  );
  border: 1px solid rgba(var(--warm-rgb), 0.18);
  border-radius: var(--radius);
  text-align: center;
}
.faq-cta-block p {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.sec--alt .faq-cta-block p {
  color: var(--ink);
}
@media (max-width: 600px) {
  .faq-cta-block {
    padding: 22px 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .wa-float::before {
    content: "Chat on WhatsApp";
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(4px);
    white-space: nowrap;
    background: rgba(30, 30, 30, 0.92);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 6px 12px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }
  .wa-float:hover::before,
  .wa-float:focus-visible::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}


@media (prefers-reduced-motion: no-preference) {
  
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes fade-slide-in {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .rv {
      opacity: 1 !important;
      transform: none !important;
      animation: fade-slide-in auto ease-out both;
      animation-timeline: view(block);
      animation-range: entry 5% cover 25%;
      transition: none !important;
    }
  }

  
  @keyframes breathe-in {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
  }
  .hero-bg {
    animation: breathe-in 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  
  .btn-p:hover:not(:disabled) {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(11, 29, 46, 0.25);
  }
  .btn-w:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 6px 20px rgba(196, 162, 101, 0.3) !important;
  }
  .btn-o:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(11, 29, 46, 0.1);
  }

  
  .gal-item:hover img {
    transform: scale(1.05) !important;
  }
}




@media screen and (max-width: 1023px) {
  .st-mob-phone {
    color: var(--warm) !important;
    border-color: var(--warm) !important;
    font-weight: 600 !important;
    transition: all 0.25s ease;
  }
  .st-mob-phone:hover,
  .st-mob-phone:active {
    background: var(--warm-faint) !important;
    color: var(--warm-light) !important;
    border-color: var(--warm-light) !important;
  }
}


@media screen and (max-width: 767px) {
  .amen-infra-strip {
    padding: 22px 18px !important;
    border: 1px solid rgba(196, 162, 101, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  }
  .amen-infra-label {
    text-align: center;
    font-size: 10.5px !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 16px !important;
  }
  .amen-infra-items {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: center !important;
  }
  .amen-infra-item {
    display: inline-flex !important;
    align-items: center !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
    border-radius: 100px !important;
    white-space: nowrap !important;
    width: auto !important;
  }
}


@media screen and (max-width: 576px) {
  .modal-backdrop {
    padding: 20px 12px !important;
  }
  .modal-content.enq-card {
    padding: 30px 20px 24px !important;
  }
  .modal-content.enq-card h3 {
    font-size: 1.35rem !important;
    margin-bottom: 12px !important;
  }
}


@media screen and (max-width: 480px) {
  .qenq .qenq-submit {
    white-space: normal !important;
    height: auto !important;
    min-height: 56px !important;
    padding: 12px 20px !important;
  }
}
@media screen and (max-width: 375px) {
  .st-mob-inner {
    gap: 6px !important;
    padding: 0 6px !important;
  }
  .dock-action--circle {
    width: 42px !important;
    height: 42px !important;
  }
  .dock-action--circle svg {
    width: 18px !important;
    height: 18px !important;
  }
  .dock-action--cta {
    font-size: 11px !important;
    padding: 0 10px !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }
}


@media screen and (max-width: 767px) {
  .amen-banner {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }
  .amen-banner img {
    height: 200px !important;
  }
  .amen-banner-stats {
    position: relative !important;
    background: var(--ink-mid) !important;
    padding: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .amen-banner-divider {
    display: none !important;
  }
  .amen-banner-stat strong {
    font-size: 1.5rem !important;
  }
}

.trust-item span {
  white-space: nowrap !important;
  display: inline-block !important;
}

@media(max-width:1023px){
    .trust{display:none!important}
}

/* Lock Lifestyle Infrastructure Image Ratio to 16:9 */
.amen-banner img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    object-fit: cover !important;
}
