/* =========================================================
   VARIABLES
========================================================= */

:root {

    --green: #003f35;
    --green-dark: #002d27;

    --gold: #c9913d;
    --gold-light: #d9aa64;

    --burgundy: #681c32;

    --cream: #f8f4ee;
    --cream-dark: #f1ebe2;

    --white: #ffffff;

    --text: #171918;
    --muted: #686965;

    --border: rgba(0, 63, 53, .12);

}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family: "DM Sans", sans-serif;

    background: var(--cream);

    color: var(--text);

}


h1,
h2,
h3 {

    font-family: "Playfair Display", serif;

}


a {

    text-decoration: none;

}


button {

    font-family: inherit;

}


/* =========================================================
   NAVBAR
========================================================= */
/* ================= NAVBAR ================= */
.site-header {
  background: var(--green-dark);
  position: relative;
  z-index: 1000;
}

.navbar {
  min-height: 62px;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.navbar-brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-mark {
  width: 34px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  border-left: 3px solid var(--gold);
  transform: skew(-8deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  letter-spacing: .08em;
  font-weight: 600;
}

.brand-copy small {
  color: var(--gold);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .13em;
  margin-top: 3px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,.92);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 23px 0 20px !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11px;
  width: 25px;
  height: 2px;
  background: var(--gold);
  margin: auto;
}

.icon-btn {
  width: 28px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #fff;
  position: relative;
  font-size: 18px;
}

.count-btn span {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.login-btn {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 3px;
  padding: 9px 12px;
  color: #fff;
  font-size: 10px;
}

.btn {
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 11px 17px;
}

.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--green-deep);
}

.btn-outline-gold {
  color: #fff;
  border: 1px solid var(--gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--green-deep);
}

.btn-dark-green {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
}

.btn-dark-green:hover {
  background: var(--green-soft);
  color: #fff;
}

.btn-outline-gold-dark {
  border: 1px solid var(--gold);
  color: var(--green);
  background: transparent;
}

.btn-outline-gold-dark:hover {
  background: var(--gold);
  color: #fff;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
        padding: 65px 0 55px;
        background: var(--green);
        position: relative;
        overflow: hidden;
      }

      .contact-hero::before {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        border: 1px solid rgba(201, 149, 60, 0.12);
        border-radius: 50%;
        left: -180px;
        top: 40px;
      }

      .contact-hero::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border: 1px solid rgba(201, 149, 60, 0.1);
        border-radius: 50%;
        right: -130px;
        bottom: -120px;
      }

      .eyebrow {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        font-weight: 700;
        margin-bottom: 17px;
      }

      .contact-hero h1 {
        font-size: clamp(52px, 6vw, 82px);
        line-height: 0.98;
        margin: 0 auto 25px;
        max-width: 920px;
        color: #fff;
      }

      .contact-hero h1 span {
        color: var(--gold);
      }

      .contact-hero p {
        max-width: 670px;
        margin: auto;
        color: #ccc;
        font-size: 15px;
        line-height: 1.9;
      }

      .hero-line {
        width: 50px;
        height: 1px;
        background: var(--gold);
        margin: 30px auto 0;
      }


/* =========================================================
   INTRO
========================================================= */

/* =========================================================
   INTRODUCTION
========================================================= */

.faq-introduction {

    padding:
        75px
        0
        70px;

    background: #fff;

    border-top:
        1px solid
        rgba(0,63,53,.06);

}


.faq-introduction-inner {

    max-width: 800px;

    margin: auto;

    text-align: center;

}


.faq-introduction h2 {

    margin: 0 0 18px;

    font-size:
        clamp(38px, 5vw, 55px);

    line-height: 1.05;

}


.faq-introduction h2 span {

    color: var(--gold);

}


.faq-introduction p {

    max-width: 650px;

    margin: auto;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   FAQ EXPLORER
========================================================= */

.faq-explorer {

    padding:
        30px
        0
        100px;

    background: #fff;

}


.faq-layout {

    display: grid;

    grid-template-columns:
        300px
        1fr;

    gap: 90px;

    max-width: 1120px;

    margin: auto;

}


/* =========================================================
   LEFT NAVIGATION
========================================================= */

.faq-navigation {

    align-self: start;

    position: sticky;

    top: 30px;

}


.faq-nav-heading {

    padding-bottom: 25px;

    border-bottom:
        1px solid
        var(--border);

}


.faq-nav-heading .section-eyebrow {

    margin-bottom: 8px;

}


.faq-nav-heading h3 {

    margin: 0;

    font-size: 27px;

    font-weight: 500;

}


.faq-nav-list {

    margin-top: 10px;

}


.faq-nav-item {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 15px;

    padding:
        19px
        5px;

    border: 0;

    border-bottom:
        1px solid
        var(--border);

    background: transparent;

    text-align: left;

    color: var(--text);

    transition: .3s ease;

}


.faq-nav-item:hover {

    padding-left: 10px;

}


.faq-nav-item.active {

    padding-left: 10px;

}


.faq-nav-number {

    color: #aaa;

    font-family:
        "Playfair Display",
        serif;

    font-size: 14px;

}


.faq-nav-item.active
.faq-nav-number {

    color: var(--gold);

}


.faq-nav-text {

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.faq-nav-text strong {

    font-size: 14px;

    font-weight: 700;

}


.faq-nav-text small {

    color: #888d88;

    font-size: 12px;

}


.faq-nav-item > i {

    color: #aaa;

    font-size: 13px;

    opacity: 0;

    transform: translateX(-5px);

    transition: .3s;

}


.faq-nav-item.active > i {

    color: var(--gold);

    opacity: 1;

    transform: translateX(0);

}


/* =========================================================
   NAV CONTACT
========================================================= */

.faq-nav-contact {

    margin-top: 35px;

    padding:
        25px;

    background: var(--green);

    color: #fff;

}


.faq-nav-contact span {

    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .15em;

}


.faq-nav-contact p {

    margin: 0 0 18px;

    color: rgba(255,255,255,.75);

    font-size: 11px;

}


.faq-nav-contact a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .06em;

}


.faq-nav-contact a i {

    color: var(--gold);

}


/* =========================================================
   FAQ CONTENT
========================================================= */

.faq-content {

    min-width: 0;

}


.faq-panel {

    display: none;

    animation: faqFade .35s ease;

}


.faq-panel.active {

    display: block;

}


@keyframes faqFade {

    from {

        opacity: 0;

        transform: translateY(8px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.faq-panel-header {

    padding-bottom: 35px;

    border-bottom:
        1px solid
        var(--border);

}


.faq-panel-header .section-eyebrow {

    margin-bottom: 10px;

}


.faq-panel-header h2 {

    margin: 0 0 12px;

    font-size:
        clamp(35px, 4vw, 52px);

    font-weight: 500;

    line-height: 1.05;

}


.faq-panel-header p {

    max-width: 620px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   QUESTIONS
========================================================= */

.faq-accordion {

    margin-top: 8px;

}


.faq-question {

    border-bottom:
        1px solid
        var(--border);

}


.faq-question-button {

    width: 100%;

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        20px
        5px;

    border: 0;

    background: transparent;

    color: var(--text);

    text-align: left;

    font-family:
        "Playfair Display",
        serif;

    font-size: 17px;

    transition: .25s ease;

}


.faq-question-button:hover {

    color: var(--green);

}


.faq-question-button i {

    flex-shrink: 0;

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(0,63,53,.2);

    border-radius: 50%;

    color: var(--green);

    font-size: 13px;

    transition: .3s ease;

}


.faq-question.open
.faq-question-button {

    color: var(--green);

}


.faq-question.open
.faq-question-button i {

    background: var(--green);

    border-color: var(--green);

    color: var(--gold);

    transform: rotate(45deg);

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .4s ease,
        opacity .3s ease;

    opacity: 0;

}


.faq-answer p {

    max-width: 680px;

    margin:
        0
        0
        25px;

    padding-right: 40px;

    color: var(--muted);

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 14px;

    line-height: 1.8;

}


.faq-question.open
.faq-answer {

    max-height: 300px;

    opacity: 1;

}


/* =========================================================
   CTA
========================================================= */
/* =========================================================
   FINAL CTA
========================================================= */

.about-cta {
    background: var(--green);
    padding: 50px 0;
    color: #fff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-inner h2 {
    font-size: clamp(45px, 5vw, 70px);
    line-height: 1;
    margin-bottom: 18px;
}

.cta-inner h2 span {
    color: var(--gold);
}

.cta-inner p {
    max-width: 650px;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 270px;
}

.gold-btn,
.dark-btn,
.burgundy-btn,
.outline-light-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 19px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    transition: .3s ease;
}

.gold-btn {
    background: var(--gold);
    color: #15201d;
}

.gold-btn:hover {
    background: var(--gold-light);
    color: #15201d;
    transform: translateY(-2px);
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: var(--green-dark);
  color: #fff;
  padding: 65px 0 0;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 32px;
  font-size: 28px;
}

.footer-brand .brand-copy strong {
  font-size: 23px;
}

.footer-about {
  max-width: 280px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}

.socials a {
  color: #fff;
  font-size: 14px;
}

.socials a:hover {
  color: var(--gold);
}

.site-footer h4 {
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 4px 0 12px;
}

.site-footer .col-lg-2 > a {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  margin-bottom: 8px;
}

.site-footer .col-lg-2 > a:hover {
  color: var(--gold);
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 8px;
}
.contact-line a {
  color: rgba(255,255,255,.72);
}
.contact-line i {
  color: var(--gold);
  flex: 0 0 auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 24px;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 9px;
}

.footer-bottom b {
  font-weight: 400;
  color: rgba(255,255,255,.2);
}

.footer-bottom a {
  color: rgba(255,255,255,.45);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* =========================================================
   FOOTER WATERMARK
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
}


/* Large faint ELEVARE behind the footer */

.footer-watermark {
    position: absolute;

    left: 50%;
    bottom: 85px;

    transform: translateX(-50%);

    font-family: "Playfair Display", serif;

    font-size: clamp(100px, 20vw, 220px);

    font-weight: 500;

    letter-spacing: .04em;

    line-height: .8;

    color: rgba(255, 255, 255, 0.035);

    white-space: nowrap;

    pointer-events: none;

    user-select: none;

    z-index: 0;
}


/* Keep the actual footer content above the watermark */

.site-footer .container-fluid {
    position: relative;

    z-index: 2;
}


/* Make sure footer content remains readable */

.site-footer .footer-brand,
.site-footer .footer-about,
.site-footer .socials,
.site-footer h4,
.site-footer .contact-line,
.site-footer a,
.site-footer .footer-bottom {
    position: relative;

    z-index: 2;
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {


    .navbar-nav {

        gap: 0;

        padding:
            15px
            0;

    }


    .nav-link {

        padding:
            10px
            0 !important;

    }


    .nav-link::after {

        display: none;

    }


    .nav-actions {

        padding-bottom: 20px;

        flex-wrap: wrap;

    }


    .faq-hero {

        padding-bottom: 60px;

    }


    .faq-group-heading {

        grid-template-columns:
            55px
            1fr;

        gap: 18px;

    }


    .faq-group-heading h2 {

        font-size: 31px;

    }


    .faq-contact {

        align-items: flex-start;

        flex-direction: column;

    }

}


@media (max-width: 575px) {


    .navbar-brand img {

        width: 125px;

    }


    .faq-hero {

        padding:
            25px
            0
            55px;

    }


    .breadcrumb-wrap {

        margin-bottom: 38px;

    }


    .faq-hero h1 {

        font-size: 47px;

    }


    .faq-intro {

        padding-top: 60px;

    }


    .faq-search-section {

        padding-bottom: 50px;

    }


    .faq-search {

        height: 52px;

        padding:
            0
            17px;

    }


    .faq-group {

        margin-bottom: 60px;

    }


    .faq-group-heading {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .faq-number {

        width: 45px;

        height: 45px;

        font-size: 15px;

    }


    .faq-group-heading h2 {

        font-size: 28px;

    }


    .accordion-button {

        padding:
            18px;

        font-size: 12px;

    }


    .accordion-body {

        padding:
            0
            18px
            20px;

        font-size: 12px;

    }


    .faq-contact {

        padding: 30px 25px;

    }


    .faq-contact h2 {

        font-size: 27px;

    }


    .footer-cta {

        padding: 55px 0;

    }


    .footer-cta h2 {

        font-size: 32px;

    }


    .cta-btn {

        margin:
            7px
            4px
            0
            0;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 12px;

    }


    .footer-bottom a {

        margin:
            0
            15px
            0
            0;

    }

}