/* ============================================
   Farewell Expense Design System v2
   Elevated: Video, Parallax, Motion, Depth
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage: #7A8B6F;
    --sage-deep: #5C6B52;
    --sage-light: #A3B496;
    --tan: #C4A882;
    --gold: #D4A853;
    --rose: #C49A8A;
    --cream: #FAF6F0;
    --sand: #EDE6DA;
    --white: #FFFFFF;
    --charcoal: #3A3A3A;
    --gray: #6B6B6B;
    --gray-light: #9B9B9B;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 2px 16px rgba(58, 58, 58, 0.06);
    --shadow-lg: 0 8px 32px rgba(58, 58, 58, 0.1);
    --shadow-xl: 0 20px 60px rgba(58, 58, 58, 0.12);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.3;
    color: var(--charcoal);
}

h1 { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: 2.2rem; font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }

p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
}

a {
    color: var(--sage-deep);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--sage); }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.4s ease;
}

.nav.scrolled .logo-text {
    color: var(--charcoal);
}

.logo-leaf { flex-shrink: 0; }

.logo-leaf path {
    transition: fill 0.4s ease, stroke 0.4s ease;
}

.nav.scrolled .logo-leaf path:first-child {
    fill: #7A8B6F;
    stroke: #5C6B52;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--gray);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
    color: var(--sage-deep);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: background 0.4s ease;
}

.nav.scrolled .nav-links a.active::after {
    background: var(--sage);
}

.nav-cta {
    background: rgba(255,255,255,0.2);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: background var(--transition);
    border: 1px solid rgba(255,255,255,0.3);
}

.nav.scrolled .nav-cta {
    background: var(--sage);
    border-color: var(--sage);
}

.nav-cta:hover {
    background: rgba(255,255,255,0.35);
}

.nav.scrolled .nav-cta:hover {
    background: var(--sage-deep);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition), background 0.4s ease;
}

.nav.scrolled .nav-toggle span {
    background: var(--charcoal);
}


/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: #c49a45;
    border-color: #c49a45;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--sage-deep);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--sage-deep);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--sage-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

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

.btn-outline:hover {
    border-color: var(--sage);
    color: var(--sage-deep);
    transform: translateY(-2px);
}

.btn-sage {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.btn-sage:hover {
    background: var(--sage-deep);
    border-color: var(--sage-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122, 139, 111, 0.3);
}

.link-arrow {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--sage-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-arrow::after {
    content: '\2192';
    transition: transform var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(6px);
}


/* ============================================
   Video Hero
   ============================================ */

.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-bg video,
.hero-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 58, 58, 0.4) 0%,
        rgba(58, 58, 58, 0.55) 50%,
        rgba(58, 58, 58, 0.7) 100%
    );
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    padding: 160px 0 120px;
    width: 100%;
}

.hero-video-content h1 {
    color: var(--white);
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-video-content .hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    margin-bottom: 48px;
    max-width: 560px;
    line-height: 1.8;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease infinite;
}

.hero-scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


/* ============================================
   Page Hero (inner pages with image bg)
   ============================================ */

.page-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 58, 58, 0.3) 0%,
        rgba(58, 58, 58, 0.6) 100%
    );
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero .hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 560px;
    line-height: 1.8;
}


/* ============================================
   Trust Bar
   ============================================ */

.trust-bar {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--sand);
}

.trust-items {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray);
}

.trust-item svg {
    flex-shrink: 0;
}


/* ============================================
   Sections
   ============================================ */

.section {
    padding: 120px 0;
    position: relative;
}

.section-cream {
    background: var(--cream);
}

.section-sage {
    position: relative;
    overflow: hidden;
}

.section-sage-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-sage-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-sage-overlay {
    position: absolute;
    inset: 0;
    background: rgba(92, 107, 82, 0.88);
    z-index: 1;
}

.section-sage .container {
    position: relative;
    z-index: 2;
}

.section-sage h2,
.section-sage p {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sage);
    margin-bottom: 12px;
}


/* ============================================
   Image Section (side-by-side text + image)
   ============================================ */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-content {
    display: flex;
    align-items: center;
    padding: 80px 64px;
}

.split-content-inner {
    max-width: 480px;
}

.split-content h2 {
    margin-bottom: 20px;
}

.split-content p {
    color: var(--gray);
    margin-bottom: 24px;
}


/* ============================================
   Cards
   ============================================ */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--white);
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition-slow), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--sage-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.card-icon {
    margin-bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    color: var(--gray);
    font-size: 1rem;
}


/* ============================================
   Image Cards
   ============================================ */

.image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition-slow), transform var(--transition);
}

.image-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.image-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.image-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-card:hover .image-card-img img {
    transform: scale(1.08);
}

.image-card-body {
    padding: 32px;
}

.image-card-body h3 {
    margin-bottom: 8px;
}

.image-card-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
}


/* ============================================
   Services Grid
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    padding: 44px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--sand);
    margin-bottom: 16px;
    transition: color var(--transition);
}

.service-card:hover .service-number {
    color: var(--sage-light);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}


/* ============================================
   Stats Counter Section
   ============================================ */

.stats-bar {
    padding: 80px 0;
    background: var(--charcoal);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}


/* ============================================
   CTA Block
   ============================================ */

.cta-block {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 20px 0;
}

.cta-block h2 {
    margin-bottom: 16px;
}

.cta-block p {
    margin-bottom: 36px;
    opacity: 0.9;
}


/* ============================================
   Testimonial Carousel
   ============================================ */

.testimonial-block {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    margin: 0 auto 24px;
}

.testimonial-block blockquote p {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sand);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.carousel-dot.active {
    background: var(--sage);
    transform: scale(1.2);
}


/* ============================================
   Final CTA
   ============================================ */

.final-cta {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.final-cta h2 {
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--gray);
    margin-bottom: 36px;
}

.final-cta .hero-actions {
    justify-content: center;
}


/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--charcoal);
    color: var(--sand);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-tagline {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--gray-light);
    font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--gray-light);
    font-size: 0.95rem;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.footer-contact a { color: var(--gray-light); }
.footer-contact a:hover { color: var(--white); }

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--sage-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.footer-disclaimer {
    max-width: 560px;
    text-align: right;
    font-size: 0.8rem !important;
    line-height: 1.6;
}


/* ============================================
   About Page
   ============================================ */

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

.story-content {
    max-width: 720px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.9;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-pullquote {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--sage-deep);
    border-left: 3px solid var(--sage);
    padding-left: 28px;
    margin: 48px 0;
    line-height: 1.6;
}

.story-image-break {
    margin: 64px -100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

.story-image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 100px 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}

.value-card {
    padding: 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--sage);
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-card h3 {
    margin-bottom: 8px;
    color: var(--sage-deep);
}

.value-card p {
    color: var(--gray);
}


/* ============================================
   Services Page
   ============================================ */

.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--sand);
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.service-detail:nth-child(even) .service-detail-inner {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-inner > * {
    direction: ltr;
}

.service-detail-text h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.service-detail-text p {
    color: var(--gray);
    margin-bottom: 16px;
}

.service-detail-features {
    list-style: none;
    margin-top: 20px;
}

.service-detail-features li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--gray);
    font-size: 0.95rem;
}

.service-detail-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--sage-light);
    opacity: 0.4;
}

.service-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
    position: relative;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform var(--transition-slow);
}

.service-visual:hover img {
    transform: scale(1.05);
}


/* ============================================
   Resources Page
   ============================================ */

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.resource-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--sand);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.resource-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.resource-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.resource-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.resource-card:hover .resource-card-img img {
    transform: scale(1.08);
}

.resource-card-body {
    padding: 28px;
}

.resource-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sage);
    background: rgba(122, 139, 111, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.resource-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.resource-card-body p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 16px;
}


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

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

.faq-item {
    border-bottom: 1px solid var(--sand);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 28px 0;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--sage-deep);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream);
    position: relative;
    transition: background var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--sage);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--sage);
    border-radius: 1px;
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
    background: var(--white);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 13px;
    left: 8px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 8px;
    left: 13px;
    transition: transform var(--transition), opacity var(--transition);
}

.faq-item.open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer-inner {
    padding: 0 0 28px;
}

.faq-answer-inner p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}


/* ============================================
   Contact Page
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: var(--radius);
    transition: background var(--transition);
}

.contact-method:hover {
    background: var(--cream);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.contact-method:hover .contact-method-icon {
    background: var(--sage);
}

.contact-method:hover .contact-method-icon svg path,
.contact-method:hover .contact-method-icon svg rect,
.contact-method:hover .contact-method-icon svg circle {
    stroke: var(--white);
}

.contact-method h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-method p {
    font-size: 0.95rem;
    color: var(--gray);
}

.contact-form {
    background: var(--cream);
    padding: 48px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(122, 139, 111, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .btn {
    width: 100%;
    text-align: center;
}


/* ============================================
   Blog Page
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--sand);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 28px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.blog-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.blog-card-body p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--cream);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}


/* ============================================
   Parallax Image Break
   ============================================ */

.parallax-break {
    height: 50vh;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

.parallax-break img {
    position: absolute;
    width: 100%;
    height: 130%;
    object-fit: cover;
    top: -15%;
    will-change: transform;
}

.parallax-break-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 58, 58, 0.3);
    z-index: 1;
}

.parallax-break-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.parallax-break-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    max-width: 600px;
}


/* ============================================
   Scroll Animations
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }


/* ============================================
   Text Reveal Animation
   ============================================ */

.text-reveal {
    overflow: hidden;
}

.text-reveal-inner {
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.visible .text-reveal-inner {
    transform: translateY(0);
}


/* ============================================
   Line decoration
   ============================================ */

.line-grow {
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 20px 0 32px;
}

.line-grow.visible {
    width: 60px;
}

.line-grow-center {
    margin-left: auto;
    margin-right: auto;
}


/* ============================================
   Legal Pages
   ============================================ */

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 0 0 20px 24px;
    padding: 0;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--sage-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.legal-content a:hover {
    color: var(--sage);
}

.legal-content strong {
    color: var(--charcoal);
    font-weight: 600;
}


/* ============================================
   Cookie Consent Banner
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--sage-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background var(--transition), color var(--transition);
}

.cookie-btn-accept {
    background: var(--sage);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--sage-deep);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}


/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .card-grid,
    .resources-grid,
    .blog-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-image {
        height: 400px;
    }

    .story-image-break {
        margin: 48px 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--sand);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        color: var(--gray) !important;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--sage-deep) !important;
    }

    .nav-cta {
        background: var(--sage) !important;
        border-color: var(--sage) !important;
        color: var(--white) !important;
    }

    .hero-video {
        min-height: 90vh;
    }

    .hero-video-content {
        padding: 120px 0 80px;
    }

    .section {
        padding: 80px 0;
    }

    .card-grid,
    .services-grid,
    .resources-grid,
    .blog-grid,
    .testimonial-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-detail:nth-child(even) .service-detail-inner {
        direction: ltr;
    }

    .service-visual {
        min-height: 260px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
    }

    .footer-disclaimer {
        text-align: left;
    }

    .trust-items {
        flex-direction: column;
        gap: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-pullquote {
        font-size: 1.25rem;
    }

    .parallax-break-content h2 {
        font-size: 1.8rem;
    }

    .split-content {
        padding: 48px 24px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .legal-content h3 {
        margin-top: 36px;
        font-size: 1.15rem;
    }
}
