@charset "UTF-8";
/* =====================================================================
   Site Footer Wrapper
   ===================================================================== */
.site-footer {
  position: relative;
  width: 100%;
  background-color: #050505;
  overflow: hidden; }

/* Ambient golden glow — centred radial behind content */
.site-footer::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: 480px;
  background: radial-gradient(ellipse at 50% 100%, rgba(184, 135, 54, 0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0; }

/* =====================================================================
   Main Footer Body
   ===================================================================== */
.footer-main {
  position: relative;
  z-index: 1;
  padding: 80px 0 68px; }
  @media (max-width: 1199px) {
    .footer-main {
      padding: 68px 0 56px; } }
  @media (max-width: 991px) {
    .footer-main {
      padding: 56px 0 44px; } }
  @media (max-width: 767px) {
    .footer-main {
      padding: 48px 0 36px; } }
  @media (max-width: 579px) {
    .footer-main {
      padding: 40px 0 30px; } }
  @media (max-width: 450px) {
    .footer-main {
      padding: 32px 0 24px; } }

/* =====================================================================
   Footer 4-column grid
   Col 1: brand+tagline (~35%)
   Col 2–4: nav columns (~21% each)
   ===================================================================== */
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 0 40px;
  align-items: start; }
  @media (max-width: 1440px) {
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 0 32px; } }
  @media (max-width: 1199px) {
    .footer-grid {
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 0 28px; } }
  @media (max-width: 991px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px 48px; } }
  @media (max-width: 767px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px 36px; } }
  @media (max-width: 579px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px; } }

/* =====================================================================
   Brand / Logo column
   ===================================================================== */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0; }
  @media (max-width: 991px) {
    .footer-brand {
      grid-column: 1 / -1; } }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 18px; }
  @media (max-width: 767px) {
    .footer-logo {
      margin-bottom: 14px; } }

.footer-logo-img {
  height: 55px;
  flex-shrink: 0; }
  @media (max-width: 579px) {
    .footer-logo-img {
      height: 45px; } }

.footer-logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF; }
  @media (max-width: 767px) {
    .footer-logo-text {
      font-size: 16px; } }

.footer-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.78;
  color: #FFFFFF;
  max-width: 300px;
  margin: 0; }
  @media (max-width: 991px) {
    .footer-tagline {
      max-width: 440px; } }
  @media (max-width: 767px) {
    .footer-tagline {
      max-width: 100%; } }

/* =====================================================================
   Nav columns (Quick Links / Services / Legal)
   ===================================================================== */
.footer-nav-col {
  display: flex;
  flex-direction: column; }

.footer-nav-title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(101.54deg, #E8C068 0%, #B88736 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 22px;
  display: inline-block; }
  @media (max-width: 1199px) {
    .footer-nav-title {
      margin-bottom: 18px; } }
  @media (max-width: 767px) {
    .footer-nav-title {
      margin-bottom: 16px; } }

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 13px; }
  @media (max-width: 1199px) {
    .footer-nav-list {
      gap: 12px; } }
  @media (max-width: 767px) {
    .footer-nav-list {
      gap: 11px; } }
  @media (max-width: 579px) {
    .footer-nav-list {
      gap: 10px; } }

.footer-nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out; }
  .footer-nav-link:hover {
    color: rgba(255, 255, 255, 0.92); }

/* =====================================================================
   Horizontal separator between main footer and sub footer
   ===================================================================== */
.footer-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 166, 74, 0.18) 20%, rgba(212, 166, 74, 0.18) 80%, transparent 100%);
  margin: 0; }

/* =====================================================================
   Sub Footer
   ===================================================================== */
.footer-sub {
  position: relative;
  z-index: 1;
  padding: 22px 0; }
  @media (max-width: 767px) {
    .footer-sub {
      padding: 18px 0; } }

.footer-sub-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px; }
  @media (max-width: 767px) {
    .footer-sub-inner {
      flex-direction: column-reverse;
      align-items: center;
      gap: 14px; } }

.footer-copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  margin: 0; }
  @media (max-width: 767px) {
    .footer-copyright {
      font-size: 11.5px;
      text-align: center; } }

/* =====================================================================
   Social icons row (sub footer)
   ===================================================================== */
.footer-social-row {
  display: flex;
  align-items: center; }

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212, 166, 74, 0.2);
  background: transparent;
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color 0.3s ease-in-out; }
  .footer-social-btn:hover {
    border-color: rgba(212, 166, 74, 0.52); }
  @media (max-width: 579px) {
    .footer-social-btn {
      width: 32px;
      height: 32px; }
      .footer-social-btn img {
        width: 14px;
        height: 14px; } }

/* =====================================================================
   Floating Scroll-to-Top Button
   Fixed position, right side, shows after scrolling 300px
   ===================================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8C068 0%, #B88736 100%);
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(184, 135, 54, 0.4); }
  .scroll-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0); }
  .scroll-to-top:hover {
    box-shadow: 0 8px 26px rgba(184, 135, 54, 0.65);
    transform: translateY(-3px); }
  .scroll-to-top:active {
    transform: translateY(0); }
  .scroll-to-top svg {
    width: 22px;
    height: 22px;
    stroke: #1a1000;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
    flex-shrink: 0; }
  @media (max-width: 991px) {
    .scroll-to-top {
      bottom: 24px;
      bottom: calc(24px + env(safe-area-inset-bottom, 0px));
      right: 24px;
      width: 50px;
      height: 50px; }
      .scroll-to-top svg {
        width: 20px;
        height: 20px; } }
  @media (max-width: 767px) {
    .scroll-to-top {
      bottom: 16px;
      bottom: calc(16px + env(safe-area-inset-bottom, 0px));
      right: 16px;
      width: 46px;
      height: 46px; }
      .scroll-to-top svg {
        width: 18px;
        height: 18px; } }
  @media (max-width: 450px) {
    .scroll-to-top {
      bottom: 14px;
      bottom: calc(14px + env(safe-area-inset-bottom, 0px));
      right: 14px;
      width: 42px;
      height: 42px; }
      .scroll-to-top svg {
        width: 16px;
        height: 16px; } }

/*# sourceMappingURL=footer.css.map */
