/* =====================================================
   ROOT / VARIABLES
===================================================== */

:root {
    --burgundy: #6e2428;
    --burgundy-dark: #541c1f;
    --burgundy-soft: #803936;

    --gold: #a07645;
    --gold-light: #c4a574;

    --dark: #2c2624;
    --text: #4a433e;

    --cream: #f7f3ee;
    --cream-dark: #efe8df;
    --input: #f4efe9;

    --white: #ffffff;
    --border: rgba(110, 36, 40, .12);

    --radius: 18px;
    --radius-sm: 6px;

    --shadow: 0 18px 50px rgba(80, 50, 40, .08);
}

/* =====================================================
   RESET
===================================================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Source Sans 3", Arial, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4,
blockquote {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--burgundy);
    font-weight: 400;
    line-height: 1.25;
}

a {
    color: var(--burgundy);
    text-decoration: none;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn {
    background: var(--burgundy);
    border: 1px solid var(--burgundy);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

.btn-cta {
    padding: 10px 22px;
    font-size: 13px;
}

.btn:focus {
    box-shadow: none;
}

/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    padding: 12px 0;
    transition: box-shadow .45s ease, padding .45s ease, background .45s ease;
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 8px 24px rgba(80, 50, 40, .08);
}

.logo img {
    width: 118px;
    height: auto;
    transition: width .45s ease;
}

.header.scrolled .logo img {
    width: 96px;
}

.navbar {
    padding: 0;
    position: relative;
}

.nav-link {
    color: var(--text) !important;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 16px !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.navbar-toggler {
    color: var(--burgundy);
    border: 1px solid rgba(110, 36, 40, .2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler .mdi {
    font-size: 24px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    min-height: 600px;
    max-height: 600px;
    background-color: var(--cream);
    background-image: url("/uploads/hero.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero h1 {
    font-size: clamp(42px, 5.4vw, 68px);
    margin-bottom: 18px;
}

.hero h1:after {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    background: var(--gold-light);
    margin: 22px 0 0;
}

.hero p {
    font-size: 20px;
    color: var(--dark);
    margin: 22px 0 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* =====================================================
   SECTION TITLES
===================================================== */

.section-title {
    text-align: center;
    font-size: clamp(28px, 3.4vw, 42px);
    margin-bottom: 50px;
}

.section-title:after {
    content: "";
    display: block;
    width: 64px;
    height: 1px;
    background: var(--gold-light);
    margin: 22px auto 0;
}

.section-lead {
    font-family: "Playfair Display", Georgia, serif;
    text-align: center;
    max-width: 720px;
    margin: -20px auto 50px;
    font-size: 24px;
    color: var(--dark);
}

/* =====================================================
   LEAD / CONTACT FORMS
===================================================== */

.lead-section {
    position: relative;
    z-index: 2;
    margin-top: -40px;
    padding: 0 0 80px;
}

.contact-section {
    padding: 20px 0 80px;
}

.lead-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
    padding: 50px 48px 46px;
    text-align: center;
}

.lead-intro,
.lead-card h2 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--burgundy);
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.4;
    margin-bottom: 32px;
}

.contact-form {
    max-width: 460px;
    margin: 0 auto;
}

.contact-form .form-control {
    height: 50px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    background: var(--input);
    padding: 0 18px;
    margin-bottom: 12px;
    color: var(--dark);
    box-shadow: none;
}

.contact-form .form-control:focus {
    background: var(--white);
    border-color: var(--gold-light);
    box-shadow: none;
}

.contact-form .form-check {
    text-align: left;
    margin: 8px 0 22px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-form .form-check-input {
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-form .form-check-label {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text);
}

.contact-form .btn {
    min-width: 160px;
    justify-content: center;
}

.form-success {
    color: var(--burgundy);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    margin: 0;
}

/* =====================================================
   TRUST ICONS
===================================================== */

.trust-section {
    padding: 40px 0 90px;
}

.trust-item {
    text-align: center;
    max-width: 220px;
    margin: 0 auto;
}

.trust-item img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin: 0 auto 18px;
}

.trust-item p {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--text);
    font-size: 21px;
    line-height: 1.4;
    margin: 0;
}

/* =====================================================
   OFFER CARDS
===================================================== */

.offer-section {
    padding: 80px 0 90px;
    background: var(--cream-dark);
}

.offer-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px 30px 30px;
}

.offer-card {
    text-align: center;
    height: 100%;
}

.offer-photo {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 22px;
}

.offer-photo img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.offer-photo:hover img {
    transform: scale(1.06);
}

.offer-card h3 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 16px;
    margin: 0 auto;
    max-width: 220px;
    line-height: 1.45;
}

/* =====================================================
   PROCESS
===================================================== */

.process-section {
    padding: 90px 0;
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.process-step {
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 46px;
    left: 146px;
    right: -28px;
    border-top: 1px dashed var(--gold);
    pointer-events: none;
}

.process-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.process-icon {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.process-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.process-num {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--gold);
    font-size: 32px;
    line-height: 1;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.process-step p {
    font-size: 15px;
    margin: 0;
}

/* =====================================================
   QUOTE BANNER
===================================================== */

.quote-section {
    background-color: #5a1e22;
    background-image: url("/uploads/tlo-01.jpg");
    padding: 90px 0;
    color: var(--white);
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;  
}

.quote-inner {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.quote-mark {
    width: 52px;
    height: 52px;
    margin: 0 auto 28px;
}

.quote-inner blockquote {
    margin: 0;
}

.quote-inner p {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(26px, 3.2vw, 38px);
    color: var(--white);
    line-height: 1.35;
    margin: 0;
}

.quote-inner:after {
    content: "";
    display: block;
    width: 64px;
    height: 1px;
    background: var(--gold-light);
    margin: 32px auto 0;
}

/* =====================================================
   GUIDE / EBOOK
===================================================== */

.guide-section {
    padding: 100px 0;
}

.guide-form-wrap h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    color: var(--dark);
    margin-bottom: 8px;
}

.guide-sub {
    font-size: 18px;
    margin-bottom: 28px;
    color: var(--dark);
}

.guide-form {
    max-width: none;
    text-align: left;
}

.guide-form .form-control {
    background: var(--white);
    border: 1px solid #ddd4cb;
}

.guide-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0;
    min-height: 400px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.guide-card-copy {
    width: 50%;
    flex: 0 0 50%;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guide-card h3 {
    font-size: 15px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.guide-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    font-size: 15px;
}

.guide-card li:before {
    content: "–";
    position: absolute;
    left: 0;
}

.guide-book {
    width: 50%;
    flex: 0 0 50%;
    position: relative;
    min-height: 400px;
}

.guide-book img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.guide-card:hover .guide-book img {
    transform: scale(1.05);
}

/* =====================================================
   FAULT CARDS
===================================================== */

.fault-section {
    padding: 90px 0;
}

.fault-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    padding-bottom: 28px;
}

.fault-photo {
    overflow: hidden;
}

.fault-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.fault-card:hover .fault-photo img {
    transform: scale(1.06);
}

.fault-card h3 {
    font-size: 26px;
    padding: 28px 32px 12px;
}

.fault-card ul {
    list-style: none;
    padding: 0 32px;
    margin: 0;
}

.fault-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.fault-card li:before {
    content: "–";
    position: absolute;
    left: 0;
}

/* =====================================================
   VIDEO
===================================================== */

.video-section {
    padding: 10px 0 80px;
}

.video-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.video-frame img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.video-frame:hover > img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 88px;
    height: 88px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.video-play img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
    transition: transform .3s;
}

.video-play:hover img {
    transform: scale(1.06);
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.video-modal-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    top: -52px;
    right: 0;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close i {
    font-size: 24px;
}

/* =====================================================
   EXPERT
===================================================== */

.expert-section {
    padding: 60px 0 90px;
}

.expert-box {
    background: var(--cream-dark);
    border-radius: var(--radius);
    overflow: visible;
    position: relative;
}

.expert-box > .row,
.expert-box [class*="col-"] {
    overflow: visible;
}

@media (min-width: 992px) {
    .expert-box > .row {
        --bs-gutter-y: 0;
        margin-top: 0;
        align-items: flex-start;
    }

    .expert-box .row > * {
        padding-top: 0;
        margin-top: 0;
    }
}

.expert-photo {
    background: transparent;
    overflow: visible;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.expert-photo img {
    width: 100%;
    height: auto;
    max-height: 560px;
    display: block;
    object-fit: contain;
    object-position: center bottom;
}

.expert-content {
    padding: 40px 40px 40px 10px;
}

.expert-role {
    font-size: 18px;
    color: var(--dark);
    padding-bottom: 22px;
}

.expert-content blockquote {
    font-style: italic;
    font-size: clamp(22px, 2.4vw, 30px);
    margin: 0 0 28px;
}

.expert-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark);
}

.expert-content p {
    margin-bottom: 0;
}

/* =====================================================
   OPINIONS / SWIPER
===================================================== */

.opinions-section {
    padding: 40px 0 90px;
  
}

.opinions-box {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 50px 70px;
}

.opinions-swiper {
    overflow: hidden;
}

.opinion-item p {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.opinion-item strong {
    display: block;
    font-weight: 600;
    color: var(--dark);
}

.opinions-prev,
.opinions-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.opinions-prev { left: 14px; }
.opinions-next { right: 14px; }

.opinions-prev:hover,
.opinions-next:hover {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.opinions-prev i,
.opinions-next i {
    font-size: 26px;
}

/* =====================================================
   FAQ
===================================================== */

.faq-section {
    padding: 80px 0 40px;
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(110, 36, 40, .12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 26px 0;
    cursor: pointer;
    text-align: left;
}

.faq-num {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--burgundy);
    font-size: 22px;
    min-width: 42px;
}

.faq-q {
    flex: 1;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(20px, 2.2vw, 28px);
    color: var(--dark);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--dark);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    background: var(--burgundy);
    color: var(--white);
}

.faq-answer {
    display: none;
    padding: 0 0 26px 66px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    max-width: 640px;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 40px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr .8fr;
    gap: 30px;
    align-items: center;
    padding: 20px 0 30px;
}

.footer-logo img {
    width: 120px;
}

.footer-block {
    padding-left: 30px;
    border-left: 1px solid rgba(110, 36, 40, .18);
}

.footer-block p,
.footer-social p {
    margin: 0;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
}

.footer-block a {
    color: var(--dark);
}

.footer-block a:hover {
    color: var(--burgundy);
}

.footer-social {
    padding-left: 30px;
    border-left: 1px solid rgba(110, 36, 40, .18);
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.footer-social a:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(110, 36, 40, .12);
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: var(--text);
}

.footer-bottom a {
    color: var(--text);
}

.footer-bottom a:hover {
    color: var(--burgundy);
}

.footer-bottom .sep {
    margin: 0 10px;
    opacity: .5;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .navbar-collapse {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 22px;
        border-radius: 15px 15px 15px 15px;
        box-shadow: var(--shadow);
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .btn-cta {
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
        background-position: 70% center;
        padding: 40px 0 70px;
    }

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(247, 243, 238, .5);
        pointer-events: none;
        z-index: 0;
    }

    .lead-section {
        margin-top: 0;
        padding: 20px 0 80px;
    }


    .hero-content {
       
        padding-right: 20px;
    }

    .offer-box {
        padding: 24px;
    }

    .process-track {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .process-step:nth-child(2n)::after {
        display: none;
    }

    .process-step:not(:last-child)::after {
        right: -24px;
    }

    .guide-card {
        flex-direction: column-reverse;
        min-height: 0;
    }

    .guide-card-copy,
    .guide-book {
        width: 100%;
        flex: none;
        min-height: 0;
    }

    .guide-book {
        height: 280px;
        position: relative;
    }

    .expert-content {
        padding: 10px 28px 40px;
    }

    .expert-photo img {
        max-height: 460px;
    }

    .opinions-box {
        padding: 40px 50px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-block,
    .footer-social {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 576px) {

    .lead-card {
        padding: 32px 20px;
    }

    .hero {
        background-position: center top;
        padding-bottom: 40px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .process-track {
        grid-template-columns: 1fr;
    }

    .process-step::after {
        display: none;
    }

    .video-frame img {
        height: 240px;
    }

    .opinions-box {
        padding: 36px 18px 50px;
    }

    .opinions-prev { left: 4px; }
    .opinions-next { right: 4px; }

    .faq-answer {
        padding-left: 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }
}

/* =====================================================
   REVEAL / MICRO ANIMATIONS
===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

.reveal-child {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-in .reveal-child {
    opacity: 1;
    transform: none;
}

.btn {
    transition: background .3s, border-color .3s, color .3s, transform .3s, box-shadow .3s;
}

.btn:hover {
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .header,
    .logo img,
    .btn,
    .offer-photo img,
    .fault-photo img,
    .guide-book img,
    .video-frame img,
    .reveal,
    .reveal-child {
        transition: none !important;
    }

    .reveal,
    .reveal-child {
        opacity: 1;
        transform: none;
    }

    .offer-photo:hover img,
    .fault-card:hover .fault-photo img,
    .guide-card:hover .guide-book img,
    .video-frame:hover > img,
    .btn:hover {
        transform: none;
    }
}
