/** Site Theme Tokens **/

:root {
    --core-site-font-body: 'Instrument Sans', sans-serif;
    --core-site-heading-font: 'DM Sans', sans-serif;
    --core-site-heading-size-h2: 46px;
    --core-site-heading-size-h3: 32px;
    --core-site-heading-line-height-h2: 1.15;
    --core-site-heading-weight: 400;
    --core-site-heading-margin: 0;
    --core-site-color-text: var(--color-text);
    --core-site-color-link: var(--color-teal);
    --core-accent: var(--color-brand);
    --core-radius: 4px;
}
body { font-family: var(--core-site-font-body); }
h1, h2, h3, h4, h5, h6 { font-family: var(--core-site-heading-font); }
h2 { font-size: var(--core-site-heading-size-h2); }
h3 { font-size: var(--core-site-heading-size-h3); }
h2 { line-height: var(--core-site-heading-line-height-h2); }
h1, h2, h3, h4, h5, h6 { font-weight: var(--core-site-heading-weight); }
h1, h2, h3, h4, h5, h6 { margin-block: var(--core-site-heading-margin); }
body { color: var(--core-site-color-text); }
a { color: var(--core-site-color-link); }


/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

/* ===== Kingdom Constructions Australia — palette primitives ===== */ :root  {
  /* Teal — brand / interactive accent */ --color-teal: #3d6d80;
  --color-teal-dark: #325a6a;
  /* Charcoal — dark sections and body text */ --color-charcoal: #2e3134;
  --color-charcoal-darker: #1f2224;
  /* Paper — warm off-white page background */ --color-paper: #faf9f6;
  /* Mist — cool light greys for alternating sections */ --color-mist: #eceff0;
  --color-mist-dark: #dfe3e5;
  /* Muted text (not used as a background) */ --color-muted: #565b5e;
  /* Semantic anchors */ --color-brand: var(--color-teal);
  --color-text: var(--color-charcoal);
  --color-bg: var(--color-paper);
}
/* --- Background utility classes (populate the section bg dropdown) --- */ .bg-paper  {
  background-color: var(--color-paper);
}
.bg-mist  {
  background-color: var(--color-mist);
}
.bg-mist-dark  {
  background-color: var(--color-mist-dark);
}
.bg-charcoal  {
  background-color: var(--color-charcoal);
}
.bg-charcoal-darker  {
  background-color: var(--color-charcoal-darker);
}
.bg-teal  {
  background-color: var(--color-teal);
}
/* ===== Base ===== */ html  {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce)  {
  html  {
    scroll-behavior: auto;
  }
}
body  {
  background: var(--color-bg);
  line-height: 1.6;
}
h1, h2, h3  {
  letter-spacing: -0.02em;
}
p  {
  margin: 0;
}
a:hover  {
  color: var(--color-teal-dark);
}
/* ===== Shared text styles (used across many sections) ===== */ .eyebrow  {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5c6266;
  margin: 0 0 14px;
}
.lede  {
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-muted);
  margin-top: 24px;
  text-wrap: pretty;
}
/* ===== Buttons ===== */ .btn  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.btn-lg  {
  font-size: 17px;
  padding: 18px 36px;
}
.btn-primary  {
  background: var(--color-teal);
  color: #fff;
}
.btn-primary:hover  {
  background: var(--color-teal-dark);
  color: #fff;
}
/* ===== Responsive heading scale ===== */ @media (max-width: 1023px)  {
  h2  {
    font-size: 38px;
  }
}
@media (max-width: 639px)  {
  h2  {
    font-size: 32px;
  }
}


 /** Content Section Styles **/ 

.content-section-2558  {
  &.content-section  {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
  .content-section-inner  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .logo  {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .logo img  {
    width: 52px;
    height: 52px;
    display: block;
  }
  .logo-text  {
    display: flex;
    flex-direction: column;
  }
  .logo-name  {
    font-family: 'DM Sans', sans-serif;
    font-size: 26px;
    color: #fff;
    line-height: 1;
  }
  .logo-sub  {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-top: 5px;
  }
  .core-menu  {
    flex: 1;
  }
  .core-menu:not(.is-collapsed) .core-menu-body  {
    justify-content: flex-end;
  }
  .core-menu-link  {
    font-weight: 500;
  }
  .nav-cta  {
    flex: 0 0 auto;
  }
  @media (max-width: 1023px)  {
    .content-section-inner  {
      gap: 20px;
    }
    .nav-cta  {
      order: 2;
      margin-left: auto;
    }
    .core-menu  {
      order: 3;
      flex: 0 0 auto;
    }
  }
  @media (max-width: 767px)  {
    .logo img  {
      width: 44px;
      height: 44px;
    }
    .logo-name  {
      font-size: 20px;
    }
    .nav-cta  {
      padding: 10px 18px;
      font-size: 14px;
    }
  }
  @media (max-width: 639px)  {
    .nav-cta  {
      display: none;
    }
    .core-menu  {
      margin-left: auto;
    }
  }
}
.content-section-2559  {
  padding-top: 56px;
  padding-bottom: 56px;
  &.content-section  {
    color: rgba(250,249,246,0.75);
  }
  .footer-top  {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer-brand  {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .footer-brand img  {
    width: 56px;
    height: 56px;
    display: block;
  }
  .footer-name  {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    color: var(--color-paper);
  }
  .footer-licence  {
    font-size: 14.5px;
    margin-top: 10px;
  }
  .footer-contact  {
    text-align: right;
    font-size: 14.5px;
    line-height: 1.8;
  }
  .core-eml-reveal  {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
  }
  .footer-copy  {
    font-size: 13px;
    color: rgba(250,249,246,0.45);
    margin-top: 40px;
    border-top: 1px solid rgba(250,249,246,0.12);
    padding-top: 24px;
  }
  @media (max-width: 767px)  {
    .footer-top  {
      flex-direction: column;
    }
    .footer-contact  {
      text-align: left;
    }
  }
}
.content-section-2560  {
  background: linear-gradient(180deg, rgba(31,34,36,0.72) 0%, rgba(31,34,36,0.45) 45%, rgba(31,34,36,0.82) 100%), url('/site-assets/images/hero-cover.jpg') center / cover no-repeat;
  &.content-section  {
    color: #fff;
    min-height: 780px;
    display: flex;
    align-items: flex-end;
  }
  .content-section-inner  {
    width: 100%;
    padding-left: var(--base-content-section-padding-x);
    padding-right: var(--base-content-section-padding-x);
    padding-bottom: 88px;
  }
  .hero-title  {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    font-size: 64px;
    line-height: 1.0;
    color: #fff;
    max-width: 15ch;
    text-wrap: pretty;
  }
  .hero-lede  {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    max-width: 62ch;
    margin-top: 24px;
  }
  .hero-actions  {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
  }
  .hero-note  {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
  }
  @media (max-width: 1023px)  {
    .hero-title  {
      font-size: 52px;
    }
  }
  @media (max-width: 639px)  {
    &.content-section  {
      min-height: 620px;
    }
    .content-section-inner  {
      padding-bottom: 56px;
    }
    .hero-title  {
      padding-top: 130px;
    }
    .hero-actions  {
      flex-direction: column;
      align-items: stretch;
    }
    .hero-actions .btn  {
      width: 100%;
    }
    .hero-note  {
      text-align: center;
    }
  }
}
.content-section-2561  {
  .content-section-inner  {
    max-width: calc(var(--base-content-section-max-width) * 0.6);
  }
}
.content-section-2562  {
  .services-grid  {
    gap: 56px;
    margin-top: 32px;
  }
  .service-card  {
    background: var(--color-paper);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .service-card-img  {
    display: block;
    width: 100%;
    height: auto;
  }
  .service-card-body  {
    padding: 48px;
  }
  .service-card p  {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-muted);
    margin-top: 18px;
    text-wrap: pretty;
  }
  @media (max-width: 1023px)  {
    .service-card h3  {
      line-height: 1.1;
    }
    .service-card-body  {
      padding: 28px;
    }
  }
  @media (max-width: 767px)  {
    .services-grid  {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .service-card-body  {
      padding: 32px;
    }
  }
  @media (max-width: 639px)  {
    .service-card h3  {
      line-height: 1.1;
    }
  }
}
.content-section-2563  {
  &.content-section  {
    color: var(--color-paper);
  }
  .proof-grid  {
    gap: 40px;
  }
  .proof-item  {
    border-top: 1px solid rgba(250,249,246,0.25);
    padding-top: 22px;
  }
  .proof-big  {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    line-height: 1.1;
  }
  .proof-small  {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(250,249,246,0.75);
    margin-top: 12px;
  }
  .proof-statement  {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(250,249,246,0.85);
    max-width: 68ch;
    margin-top: 64px;
    text-wrap: pretty;
  }
  @media (max-width: 767px)  {
    .proof-grid  {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 32px;
    }
  }
  @media (max-width: 639px)  {
    .proof-grid  {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .proof-statement  {
      margin-top: 48px;
    }
  }
}
.content-section-2564  {
  .gallery-head  {
    margin-bottom: 48px;
  }
  .gallery-grid  {
    gap: 20px;
  }
  .gallery-grid img  {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }
  @media (max-width: 767px)  {
    .gallery-grid  {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 639px)  {
    .gallery-grid  {
      grid-template-columns: 1fr;
    }
    .gallery-head  {
      margin-bottom: 32px;
    }
  }
}
.content-section-2565  {
  .process-grid  {
    gap: 28px;
    margin-top: 56px;
  }
  .step-card  {
    background: var(--color-paper);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .step-n  {
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    color: var(--color-teal);
  }
  .step-card h3  {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
  }
  .step-card p  {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-muted);
  }
  .process-actions  {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 56px;
  }
  .process-note  {
    font-size: 15px;
    color: var(--color-muted);
  }
  @media (max-width: 1279px)  {
    .process-grid  {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  @media (max-width: 1023px)  {
    .process-grid  {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 639px)  {
    .process-grid  {
      grid-template-columns: 1fr;
    }
    .process-actions  {
      flex-direction: column;
      align-items: stretch;
    }
    .process-actions .btn  {
      width: 100%;
    }
    .process-note  {
      text-align: center;
    }
  }
}
.content-section-2566  {
  .about-grid  {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1152px;
    margin: 0 auto;
  }
  .about-photo  {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
  }
  @media (max-width: 1023px)  {
    .about-grid  {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .about-photo  {
      max-width: 100%;
    }
  }
}
.content-section-2567  {
  .faq-grid  {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 72px;
  }
  .core-accordion-01 details  {
    border-bottom: 1px solid #c6ccce;
    padding: 24px 0;
  }
  .core-accordion-01 details summary  {
    font-size: 19px;
    font-weight: 500;
  }
  .core-accordion-01 p  {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--color-muted);
    max-width: 62ch;
    text-wrap: pretty;
  }
  @media (max-width: 1023px)  {
    .faq-grid  {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }
}
.content-section-2568  {
  .enquiry-grid  {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
  .enquiry-intro .lede  {
    margin-top: 20px;
  }
  .enquiry-points  {
    list-style: none;
    margin: 44px 0 0;
    padding: 32px 0 0;
    border-top: 1px solid var(--color-mist-dark);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .enquiry-points li  {
    display: flex;
    gap: 14px;
    align-items: baseline;
    font-size: 16px;
    color: #44484b;
  }
  .enquiry-points .tick  {
    color: var(--color-teal);
    font-weight: 600;
    font-size: 14px;
  }
  .enquiry-form  {
    background: var(--color-mist);
    padding: 48px;
  }
  .enquiry-form label  {
    font-weight: 600;
    font-size: 14px;
  }
  /* Prominent success confirmation (shown by Basin when the enquiry sends) */ .enquiry-done  {
    background: var(--color-mist);
    padding: 64px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .enquiry-done-icon  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-teal);
    margin-bottom: 24px;
  }
  .enquiry-done-icon svg  {
    width: 38px;
    height: 38px;
  }
  .enquiry-done-title  {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    color: var(--color-charcoal);
  }
  .enquiry-done-text  {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    margin-top: 12px;
    max-width: 34ch;
  }
  .w-form-fail  {
    background: var(--color-mist);
    padding: 24px 32px;
    font-size: 16px;
    color: #44484b;
  }
  @media (max-width: 1023px)  {
    .enquiry-grid  {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  }
  @media (max-width: 767px)  {
    .enquiry-form  {
      padding: 32px;
    }
  }
  @media (max-width: 639px)  {
    .enquiry-form .core-form-grid > .core-form-grid-half  {
      grid-column: 1 / -1;
    }
  }
}
