/* ==========================================
   PRELOADER
   ========================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FAFAFA;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-line {
    width: 120px;
    height: 1px;
    background-color: #C9A961;
    position: relative;
    overflow: hidden;
    opacity: 0.6;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-skip .preloader {
    display: none !important;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: #2C2C2C;
    background-color: #FAFAFA;
    background-image:
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .03) 25%, rgba(255, 255, 255, .03) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .03) 75%, rgba(255, 255, 255, .03) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .03) 25%, rgba(255, 255, 255, .03) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .03) 75%, rgba(255, 255, 255, .03) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1,
h2,
h3 {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 400;
    line-height: 1.4;
    color: #2C2C2C;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
}

h2 {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
}

h3 {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

p {
    color: #6B6B6B;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.divider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.divider {
    height: 1px;
    background-color: #C9A961;
    opacity: 0.25;
    margin: 4.5rem 0;
}

/* ==========================================
   SECTION BACKGROUND VARIATIONS
   ========================================== */

.section-tinted {
    background-color: #F5F5F3;
    background-image: none;
    padding: 4.5rem 0;
}

.section-elevated {
    background-color: #FFFFFF;
    background-image: none;
    padding: 5.25rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

/* ==========================================
   SECTION INTRODUCTIONS
   ========================================== */

.section-introduction {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #C9A961;
    text-align: center;
    margin-bottom: 1.125rem;
}


/* ==========================================
   HEADER
   ========================================== */

.header {
    padding: 0.5rem 0 0.4rem 0;
    position: sticky;
    top: 0;
    background-color: #FFFFFF;
    z-index: 100;
    border-bottom: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: inherit;
}

.logo-shield {
    display: block;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2C2C2C;
    letter-spacing: 0.05em;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #6B6B6B;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.nav a:hover {
    color: #C9A961;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    padding: 7.5rem 0 9rem;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.2s ease-out 0.3s forwards;
    position: relative;
    overflow: hidden;
    background-color: #FAFAFA;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: contrast(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-enhanced {
    padding: 9rem 0 10.5rem;
}

.hero-accent-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
    margin: 0 auto 2.25rem;
    opacity: 0.6;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.18em;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: #6B6B6B;
    letter-spacing: 0.03em;
    margin-bottom: 1.875rem;
}

/* ==========================================
   PAGE HEADER (for internal pages)
   ========================================== */

.page-header {
    padding: 4.5rem 0 3rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.page-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    color: #6B6B6B;
    letter-spacing: 0.02em;
}

/* ==========================================
   HERO ENHANCEMENTS
   ========================================== */

.hero-tertiary {
    font-size: 1.0625rem;
    font-weight: 300;
    color: #6B6B6B;
    letter-spacing: 0.01em;
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto;
}

/* ==========================================
   EDITORIAL PULL-QUOTES
   ========================================== */

.editorial-quote {
    padding: 3.75rem 0;
}

.pullquote {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    border: none;
    position: relative;
}

.pullquote::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: #C9A961;
    margin: 0 auto 2.25rem;
    opacity: 0.4;
}

.pullquote-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #2C2C2C;
    font-style: normal;
}


/* ==========================================
   AUTHORITY STATEMENT SECTION
   ========================================== */

.authority-statement {
    padding: 3.75rem 0;
}

.authority-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.authority-text {
    font-size: 1.1875rem;
    line-height: 2.1;
    color: #2C2C2C;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

/* ==========================================
   CORE PILLARS SECTION
   ========================================== */

.core-pillars {
    padding: 4.5rem 0;
}


.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pillar-item {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.pillar-item:nth-child(1) {
    animation-delay: 0.2s;
}

.pillar-item:nth-child(2) {
    animation-delay: 0.4s;
}

.pillar-item:nth-child(3) {
    animation-delay: 0.6s;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 1.125rem;
    color: #2C2C2C;
}

.pillar-description {
    font-size: 1rem;
    line-height: 1.9;
    color: #6B6B6B;
    font-weight: 300;
}

/* ==========================================
   SERVICES PREVIEW SECTION
   ========================================== */

.services-preview {
    padding: 3.75rem 0;
}

.services-preview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-preview-intro {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #6B6B6B;
    margin-bottom: 3rem;
}

.services-preview-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem 4rem;
    margin-bottom: 2.625rem;
}

.service-preview-item {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.service-preview-item:nth-child(1) {
    animation-delay: 0.2s;
}

.service-preview-item:nth-child(2) {
    animation-delay: 0.3s;
}

.service-preview-item:nth-child(3) {
    animation-delay: 0.4s;
}

.service-preview-item:nth-child(4) {
    animation-delay: 0.5s;
}

.service-preview-title {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #2C2C2C;
}

.services-preview-link {
    margin-top: 2.25rem;
}

.text-link {
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #C9A961;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.text-link:hover {
    border-bottom-color: #C9A961;
}

/* ==========================================
   TRUST & PROFESSIONALISM SECTION
   ========================================== */

.trust-section {
    padding: 4.5rem 0;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.trust-item:nth-child(1) {
    animation-delay: 0.2s;
}

.trust-item:nth-child(2) {
    animation-delay: 0.4s;
}

.trust-item:nth-child(3) {
    animation-delay: 0.6s;
}

.trust-item-title {
    font-family: 'Cinzel', serif;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #2C2C2C;
    margin-bottom: 1.25rem;
}

.trust-item-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #6B6B6B;
    font-weight: 300;
}

/* ==========================================
   CLOSING INVITATION SECTION
   ========================================== */

.closing-invitation {
    padding: 4.5rem 0 5.25rem;
}

.invitation-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.invitation-title {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
}

.invitation-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #6B6B6B;
    margin-bottom: 1.875rem;
}

.invitation-link {
    margin-top: 1.5rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: 2.25rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C2C2C;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.service-item:nth-child(1) {
    animation-delay: 0.2s;
}

.service-item:nth-child(2) {
    animation-delay: 0.4s;
}

.service-item:nth-child(3) {
    animation-delay: 0.6s;
}

.service-item:nth-child(4) {
    animation-delay: 0.8s;
}

.service-icon {
    margin-bottom: 1.125rem;
    display: flex;
    justify-content: center;
}

.service-title {
    margin-bottom: 0.75rem;
    color: #2C2C2C;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: 2.25rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #6B6B6B;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    padding: 2.25rem 0 4.5rem;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.4s forwards;
}

.contact-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
    padding-bottom: 1.875rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.contact-logo {
    display: block;
}

.contact-card-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #C9A961;
    margin: 0;
}

.contact-card-divider {
    width: 120px;
    height: 1px;
    background-color: #C9A961;
    opacity: 0.4;
}

.contact-card-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #C9A961;
    margin: 0;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.contact-label {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #C9A961;
}

.contact-value {
    font-size: 1rem;
    font-weight: 300;
    color: #2C2C2C;
    line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    padding: 1.25rem 0 0.4rem;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    background-color: #FFFFFF;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.footer-column-title {
    font-family: 'Cinzel', serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

/* Column 1 - Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-logo-img {
    opacity: 0.8;
}

.footer-company-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9375rem;
    color: #2C2C2C;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.footer-descriptor {
    font-size: 0.8125rem;
    color: #555555;
    line-height: 1.4;
    font-weight: 300;
    max-width: 320px;
}

/* Columns 2 & 3 - Links & Contact */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-links-list li {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.footer-link {
    font-size: 0.8125rem;
    color: #3D3D3D;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-link:hover {
    color: #C9A961;
}

.footer-contact-item {
    font-size: 0.8125rem;
    color: #3D3D3D;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 0.2rem;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #C9A961;
}

.footer-contact-label {
    display: block;
    color: #606060;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.1rem;
}

/* Protection & Bottom */
.footer-protection {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    margin-bottom: 0.15rem;
}

.footer-protection-text {
    font-size: 0.7rem;
    color: #4A4A4A;
    letter-spacing: 0.03em;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 0.7rem;
    color: #4A4A4A;
    font-weight: 300;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .footer {
        padding: 1.5rem 0 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo-link {
        justify-content: center;
    }

    .footer-descriptor {
        margin: 0 auto;
    }
}

/* ==========================================
   CONTACT FORM SECTION
   ========================================== */

.contact-form-section {
    padding: 2.25rem 0;
}

.contact-form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background-color: #FDFCF9;
    border: 1px solid rgba(201, 169, 97, 0.25);
    padding: 3.5rem 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.contact-form-wrapper .section-title {
    margin-bottom: 2rem;
}

.contact-form {
    margin-top: 0;
}

.contact-form .form-row {
    margin-bottom: 0.9rem;
}

.contact-form .form-group {
    margin-bottom: 0.9rem;
}

.contact-form .form-label {
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
    color: #B8984E;
    letter-spacing: 0.12em;
}

.contact-form .form-input,
.contact-form .form-textarea {
    padding: 0.6rem 1rem;
}

.contact-form .form-submit {
    margin-top: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.125rem;
}

.form-group {
    margin-bottom: 1.125rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #C9A961;
    margin-bottom: 0.375rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #2C2C2C;
    background-color: #FFFFFF;
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #C9A961;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #C9A961;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #B8984E;
}

/* ==========================================
   TOOLS SECTION
   ========================================== */

.tools {
    padding: 2.25rem 0;
}

.tools-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.tool-item {
    text-align: center;
}

.tool-icon {
    margin-bottom: 1.125rem;
    display: flex;
    justify-content: center;
}

.tool-title {
    margin-bottom: 0.75rem;
    color: #2C2C2C;
}

.tool-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   RESOURCES SECTION
   ========================================== */

.resources {
    padding: 2.25rem 0;
}

.resources-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.resources-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #6B6B6B;
}

/* ==========================================
   PORTAL PLACEHOLDER
   ========================================== */

.portal-placeholder {
    padding: 2.25rem 0 4.5rem;
}

.portal-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    text-align: center;
}

.portal-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.portal-title {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
}

.portal-description {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #6B6B6B;
    margin-bottom: 1.125rem;
}

.portal-description:last-child {
    margin-bottom: 0;
}

.portal-link {
    color: #C9A961;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
    transition: border-color 0.3s ease;
}

.portal-link:hover {
    border-bottom-color: #C9A961;
}


/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .divider-container {
        padding: 0 1.5rem;
    }

    .divider {
        margin: 2.25rem 0;
    }

    .header {
        padding: 1.5rem 0;
    }

    .nav {
        gap: 1.5rem;
    }

    .nav a {
        font-size: 0.875rem;
    }

    .hero {
        padding: 3.75rem 0 4.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-list {
        gap: 2.25rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .logo-text {
        display: none;
    }

    .page-header {
        padding: 3rem 0 2.25rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tools-list {
        gap: 2.25rem;
    }

    .portal-card {
        padding: 2.5rem 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2.625rem;
    }

    .services-preview-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .authority-text {
        font-size: 1.0625rem;
    }

    .hero-tertiary {
        font-size: 0.9375rem;
    }

    .hero-enhanced {
        padding: 6rem 0 7.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.12em;
    }

    .pullquote-text {
        font-size: 1.25rem;
    }

    .editorial-quote {
        padding: 2.25rem 0;
    }

    .section-tinted,
    .section-elevated {
        padding: 3rem 0;
    }

    .section-introduction {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .divider-container {
        padding: 0 1rem;
    }

    .nav {
        gap: 1rem;
    }

    .nav a {
        font-size: 0.8125rem;
    }
}

/* ==========================================
   FINANCIAL TOOLS & ADDITIONAL SERVICES
   ========================================== */

.tool-card-clarify {
    display: none;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #444;
    font-weight: 300;
}

.tool-card.active .tool-card-description {
    display: none;
}

.tool-card.active .tool-card-clarify {
    display: block;
}

.btn-clarify {
    cursor: pointer;
    border: 1px solid #C9A961;
}

.btn-clarify.active {
    background-color: #C9A961;
    color: #fff;
}

.tools-section {
    padding: 2.25rem 0;
}

.tools-section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    padding-bottom: 0.5625rem;
    display: block;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tool-card {
    background-color: #fff;
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.tool-card:hover {
    border-color: #C9A961;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.1);
}

.tool-card-header {
    margin-bottom: 1rem;
}

.tool-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: #2C2C2C;
    font-weight: 600;
    line-height: 1.4;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.tool-card-body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.tool-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6B6B6B;
    font-weight: 300;
}

.tool-card-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-tool {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #C9A961;
    text-decoration: none;
    border: 1px solid #C9A961;
    padding: 0.6rem 1.25rem;
    transition: all 0.3s ease;
    background: transparent;
    letter-spacing: 0.05em;
}

.btn-tool:hover {
    background-color: #C9A961;
    color: #fff;
}

@media (max-width: 900px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tool-card {
        min-height: auto;
    }
}