/* 
   Lumina Studios | Modern Wedding Photography
   Global Design System Stylesheet
*/

:root {
    --bg-cream: #F9F7F2;
    --text-forest: #2C3E33;
    --text-muted: #6B7A70;
    --text-light-muted: #8a9a90;
    --accent-sage: #6B8E78;
    --accent-sage-hover: #5a7a66;
    --accent-light: #D4E5D9;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --transition-smooth: all 0.5s ease;
    --transition-fast: all 0.3s ease;
}

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

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: var(--font-sans);
    background: var(--bg-cream);
    color: var(--text-forest);
    overflow-x: hidden;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================
   Loader
   ========================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-cream);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { 
    opacity: 0; 
    visibility: hidden; 
}
.loader-content { 
    text-align: center; 
}
.loader-leaf {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    animation: leafSpin 2s ease-in-out infinite;
}
.loader-leaf svg { 
    stroke: var(--accent-sage); 
    fill: none; 
    stroke-width: 1.2; 
}
.loader-text {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--accent-sage);
    text-transform: uppercase;
}
@keyframes leafSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(0.9); }
}

/* ==========================================
   Navigation Header
   ========================================== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition-smooth);
}
.navbar.scrolled {
    background: rgba(249, 247, 242, 0.92);
    backdrop-filter: blur(20px);
    padding: 18px 50px;
    box-shadow: 0 1px 0 rgba(107, 142, 120, 0.1);
}
.nav-logo {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}
.navbar.scrolled .nav-logo { 
    color: var(--text-forest); 
}
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}
.nav-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--accent-sage);
    transition: width 0.4s ease;
}
.nav-links a:hover::after { 
    width: 100%; 
}
.navbar.scrolled .nav-links a { 
    color: var(--text-forest); 
}
.navbar.scrolled .nav-links a.active-link {
    color: var(--accent-sage);
}
.navbar.scrolled .nav-links a.active-link::after {
    width: 100%;
}
.nav-cta {
    padding: 10px 26px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    transition: var(--transition-fast);
}
.nav-cta:hover { 
    background: var(--accent-sage); 
    border-color: var(--accent-sage); 
    color: #fff !important;
}
.navbar.scrolled .nav-cta { 
    border-color: var(--accent-sage); 
    color: var(--text-forest); 
}
.navbar.scrolled .nav-cta:hover { 
    background: var(--accent-sage); 
    color: #fff; 
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    width: 28px; height: 1.5px;
    background: #fff;
    transition: var(--transition-fast);
}
.navbar.scrolled .hamburger span { 
    background: var(--text-forest); 
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: rgba(249, 247, 242, 0.98);
    backdrop-filter: blur(30px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active { 
    left: 0; 
}
.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--text-forest);
    letter-spacing: 4px;
    font-weight: 400;
    transition: color 0.3s ease;
}
.mobile-menu a:hover { 
    color: var(--accent-sage); 
}
.mobile-menu a.active-link {
    color: var(--accent-sage);
}

/* ==========================================
   Hero Section & Elements
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: center center / cover no-repeat;
    transition: transform 0.1s linear;
}
.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 62, 51, 0.6) 0%, rgba(44, 62, 51, 0.2) 50%, rgba(44, 62, 51, 0.5) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-left {
    animation: fadeInLeft 1.2s ease 0.3s both;
}
.hero-tag {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.hero-tag::before {
    content: '';
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.6);
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(48px, 7vw, 90px);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 25px;
}
.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-light);
}
.hero-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 35px;
}
.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-primary {
    padding: 15px 35px;
    background: var(--accent-sage);
    color: #fff;
    border: none;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}
.btn-primary:hover { 
    background: var(--accent-sage-hover); 
    transform: translateY(-2px); 
}
.btn-ghost {
    padding: 15px 35px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}
.btn-ghost:hover { 
    border-color: #fff; 
    background: rgba(255,255,255,0.1); 
}

.hero-right {
    animation: fadeInRight 1.2s ease 0.6s both;
    display: flex;
    justify-content: flex-end;
}
.hero-stats-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 35px 40px;
    min-width: 280px;
    max-width: 320px;
}
.hero-stats-card h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.hero-stat-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    align-items: center;
}
.hero-stat-row:last-child { 
    border-bottom: none; 
}
.hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-stat-value {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #fff;
    font-weight: 500;
}

/* Hero Slideshow Indicators */
.hero-slide-indicator {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 10;
}
.indicator-line {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}
.indicator-line.active {
    background: var(--accent-sage);
    width: 50px;
}

/* Hero Action Cards floating inside Hero */
.hero-action-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 20;
    background: rgba(44, 62, 51, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(107, 142, 120, 0.3);
    transition: var(--transition-smooth);
}
.hero-action-card:hover {
    background: rgba(44, 62, 51, 0.95);
}
.action-card-btn {
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 22px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-fast);
}
.action-card-btn:last-child {
    border-right: none;
}
.action-card-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.action-card-btn .btn-icon {
    width: 16px;
    height: 16px;
    stroke: var(--accent-light);
    fill: none;
    stroke-width: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    cursor: pointer;
    animation: fadeIn 1s ease 1.5s both;
}
.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto 12px;
    position: relative;
    overflow: hidden;
}
.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 1px;
    height: 50px;
    background: #fff;
    animation: scrollDown 2s ease infinite;
}
.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}

/* ==========================================
   Section Layouts & General Styles
   ========================================== */
.section { 
    padding: 120px 50px; 
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-tag, .label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--accent-sage);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.section-tag::before, .section-tag::after, .divider {
    content: '';
    width: 30px; height: 1px;
    background: var(--accent-sage);
    display: inline-block;
}
.section-header .divider {
    margin: 15px auto 0;
    display: block;
}
.section-title, h2 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--text-forest);
    line-height: 1.1;
    margin-bottom: 20px;
}
.section-title em, h2 em { 
    font-style: italic; 
    font-weight: 400; 
}
.section-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==========================================
   About Section
   ========================================== */
.about-section { 
    background: var(--bg-cream); 
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 600px;
}
.about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 80%;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(44, 62, 51, 0.15);
}
.about-img-main img { 
    width: 100%; height: 100%; 
    object-fit: cover; 
}
.about-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 45%;
    border-radius: 2px;
    overflow: hidden;
    border: 8px solid var(--bg-cream);
    box-shadow: 0 20px 40px rgba(44, 62, 51, 0.12);
}
.about-img-accent img { 
    width: 100%; height: 100%; 
    object-fit: cover; 
}
.about-badge {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 100px; height: 100px;
    background: var(--accent-sage);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 5;
}
.about-badge .number {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}
.about-badge .text {
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
    text-align: center;
}
.about-content .section-tag, .about-content .label { 
    justify-content: flex-start; 
}
.about-content .section-tag::before { 
    display: none; 
}
.about-content h2 {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 300;
    color: var(--text-forest);
    line-height: 1.15;
    margin-bottom: 25px;
}
.about-content h2 em { 
    font-style: italic; 
    font-weight: 400; 
    color: var(--accent-sage); 
}
.about-content p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}
.about-signature {
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: italic;
    color: var(--accent-sage);
    margin-top: 30px;
    margin-bottom: 5px;
}
.about-role {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light-muted);
    text-transform: uppercase;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(107, 142, 120, 0.2);
}
.stat-item { 
    text-align: left; 
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 40px;
    color: var(--text-forest);
    font-weight: 500;
    line-height: 1;
}
.stat-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light-muted);
    text-transform: uppercase;
    margin-top: 8px;
}

/* ==========================================
   Horizontal Scroll Portfolio & Clips
   ========================================== */
.horizontal-section {
    background: #F0EDE6;
    padding: 120px 0;
}
.horizontal-section .section-header {
    padding: 0 50px;
}
.horizontal-track-wrapper {
    position: relative;
    width: 100%;
}
.horizontal-track {
    display: flex;
    gap: 25px;
    padding: 20px 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}
.horizontal-track::-webkit-scrollbar { 
    display: none; 
}
.portfolio-card {
    min-width: 400px;
    max-width: 450px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    background: #E8E3D8;
    box-shadow: 0 10px 30px rgba(44, 62, 51, 0.05);
    transition: transform 0.6s ease;
}
.portfolio-card:hover {
    transform: translateY(-5px);
}
.card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.portfolio-card:hover .card-image img {
    transform: scale(1.06);
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 62, 51, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}
.portfolio-card:hover .card-overlay {
    opacity: 1;
}
.card-overlay h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px;
}
.card-overlay p {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

.horizontal-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 30px 50px 0;
}
.horizontal-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(44, 62, 51, 0.2);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.horizontal-nav button:hover {
    background: var(--accent-sage);
    border-color: var(--accent-sage);
    color: #fff;
}
.horizontal-nav button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* Play Icon Overlay for Videos */
.play-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(249, 247, 242, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.portfolio-card:hover .play-overlay-icon {
    transform: translate(-50%, -50%) scale(1.05);
    background: var(--accent-sage);
    color: #fff;
}
.play-overlay-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-forest);
    stroke: var(--text-forest);
    stroke-width: 2;
    margin-left: 3px;
    transition: var(--transition-fast);
}
.portfolio-card:hover .play-overlay-icon svg {
    fill: #fff;
    stroke: #fff;
}

/* ==========================================
   Services Cards Section
   ========================================== */
.services-section { 
    background: var(--bg-cream); 
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: #fff;
    padding: 50px 40px;
    border: 1px solid rgba(107, 142, 120, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(44, 62, 51, 0.1);
    border-color: rgba(107, 142, 120, 0.3);
}
.service-card.featured {
    background: var(--text-forest);
    color: #fff;
}
.service-card.featured .service-tag,
.service-card.featured .service-features li { 
    color: rgba(255,255,255,0.7); 
}
.service-card.featured .service-features li { 
    border-bottom-color: rgba(255,255,255,0.1); 
}
.service-card.featured .service-btn { 
    border-color: var(--accent-sage); 
    color: var(--accent-sage); 
}
.service-card.featured .service-btn:hover { 
    background: var(--accent-sage); 
    color: #fff; 
}
.service-tag {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--accent-sage);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--text-forest);
    margin-bottom: 10px;
}
.service-card.featured h3 { 
    color: #fff; 
}
.service-price {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--accent-sage);
    font-weight: 500;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(107, 142, 120, 0.15);
}
.service-card.featured .service-price { 
    border-bottom-color: rgba(255,255,255,0.1); 
}
.service-features {
    list-style: none;
    margin-bottom: 35px;
}
.service-features li {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    padding: 12px 0;
    border-bottom: 1px solid rgba(107, 142, 120, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.service-features li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--accent-sage);
    border-radius: 50%;
    flex-shrink: 0;
}
.service-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border: 1px solid var(--text-forest);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-forest);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}
.service-btn:hover { 
    background: var(--text-forest); 
    color: #fff; 
}

/* ==========================================
   Quote Parallax Section
   ========================================== */
.quote-section {
    position: relative;
    padding: 150px 50px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.quote-section-parallax {
    background-image: url('https://image.qwenlm.ai/public_source/b2efab73-1efc-4368-8b2f-cae0855842b4/16175cf2b-c73a-4278-80e5-2c2b2b22c29b.png');
}
.quote-section .parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 51, 0.65);
    z-index: 1;
}
.quote-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.quote-mark {
    font-family: var(--font-serif);
    font-size: 120px;
    line-height: 1;
    color: var(--accent-sage);
    opacity: 0.8;
    height: 60px;
    margin-bottom: 20px;
}
.quote-content blockquote {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
}
.quote-content cite {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-style: normal;
    color: rgba(255,255,255,0.7);
}

/* ==========================================
   Masonry Gallery & Lightbox
   ========================================== */
.gallery-section {
    background: var(--bg-cream);
    padding: 120px 50px;
}
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 30px;
    background: transparent;
    border: 1px solid rgba(107, 142, 120, 0.35);
    color: var(--text-forest);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--accent-sage);
    border-color: var(--accent-sage);
    color: var(--white);
}
.gallery-masonry {
    columns: 3 320px;
    column-gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}
.gallery-item {
    break-inside: avoid;
    position: relative;
    margin-bottom: 20px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    background: #E8E3D8;
    box-shadow: 0 10px 25px rgba(44,62,51,0.05);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 51, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover .item-overlay {
    opacity: 1;
}
.item-overlay svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(44, 62, 51, 0.95);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}
.lightbox-close svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    stroke-width: 1.5;
}
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
    color: #fff;
    transition: var(--transition-fast);
}
.lightbox-nav-btn:hover {
    color: var(--accent-sage);
}
.lightbox-nav-btn svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox-img {
    max-width: 80%;
    max-height: 80vh;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-radius: 2px;
}

/* ==========================================
   Video Gallery Section
   ========================================== */
.video-gallery-section {
    background: #F0EDE6;
    padding: 120px 50px;
}
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}
.video-gallery-item {
    background: var(--white);
    border: 1px solid rgba(107, 142, 120, 0.1);
    box-shadow: 0 15px 30px rgba(44, 62, 51, 0.04);
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
}
.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.video-gallery-item:hover .video-thumbnail img {
    transform: scale(1.04);
}
.video-info {
    padding: 25px;
}
.video-info h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-forest);
    font-weight: 500;
    margin-bottom: 5px;
}
.video-info span {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Common Video Play Section */
.video-section {
    position: relative;
    padding: 180px 50px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.video-section .parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s linear;
}
.video-section .parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 51, 0.6);
    z-index: 1;
}
.video-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}
.play-btn:hover {
    transform: scale(1.08);
    background: var(--accent-sage);
    color: #fff;
}
.play-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--text-forest);
    stroke: var(--text-forest);
    stroke-width: 2;
    margin-left: 4px;
    transition: var(--transition-fast);
}
.play-btn:hover svg {
    fill: #fff;
    stroke: #fff;
}
.video-content h2 {
    color: #fff;
    margin-bottom: 20px;
}
.video-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 24, 0.98);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-modal.active {
    opacity: 1;
    visibility: visible;
}
.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.video-modal-content iframe {
    width: 100%;
    height: 100%;
}
.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}
.video-modal-close svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 2;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    background: var(--text-forest);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border: 1px solid rgba(107, 142, 120, 0.2);
    border-radius: 50%;
}
.testimonials-section .section-tag { 
    color: var(--accent-sage); 
}
.testimonials-section .section-tag::before,
.testimonials-section .section-tag::after { 
    background: var(--accent-sage); 
}
.testimonials-section .section-title { 
    color: #fff; 
}
.testimonials-section .section-desc { 
    color: rgba(255,255,255,0.6); 
}
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.testimonial-slider { 
    overflow: hidden; 
}
.testimonial-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card, .testimonial-item {
    min-width: 100%;
    padding: 20px 40px;
    text-align: center;
}
.testimonial-quote, .testimonial-text {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 35px;
    position: relative;
}
.testimonial-quote::before, .testimonial-text::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 120px;
    color: var(--accent-sage);
    position: absolute;
    top: -50px; left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
    line-height: 1;
}
.testimonial-author {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}
.testimonial-role {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}
.dot {
    width: 30px; height: 2px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}
.dot.active { 
    background: var(--accent-sage); 
    width: 50px; 
}

/* ==========================================
   Contact Form & Info Layout
   ========================================== */
.contact-section { 
    background: #F0EDE6; 
}
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    color: var(--text-forest);
    line-height: 1.1;
    margin-bottom: 25px;
}
.contact-info h2 em { 
    font-style: italic; 
    color: var(--accent-sage); 
}
.contact-info > p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-detail-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(107, 142, 120, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg {
    width: 16px; height: 16px;
    stroke: var(--accent-sage);
    fill: none;
    stroke-width: 1.5;
}
.contact-detail-text h5 {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500;
}
.contact-detail-text p {
    font-size: 14px;
    color: var(--text-forest);
    font-weight: 400;
}
.contact-form {
    background: #fff;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(44, 62, 51, 0.08);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { 
    margin-bottom: 25px; 
}
.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-forest);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid rgba(107, 142, 120, 0.25);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-forest);
    outline: none;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--accent-sage);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0ada5;
}
.form-group textarea { 
    resize: vertical; 
    min-height: 100px; 
}
.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--text-forest);
    border: none;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}
.submit-btn:hover { 
    background: var(--accent-sage); 
}
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}
.form-success.show { 
    display: block; 
}
.form-success svg {
    width: 60px; height: 60px;
    stroke: var(--accent-sage);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 20px;
}
.form-success h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--text-forest);
    margin-bottom: 10px;
}
.form-success p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================
   Instagram Feed Grid
   ========================================== */
.instagram-section {
    background: var(--bg-cream);
    padding: 100px 50px;
    text-align: center;
}
.instagram-header {
    margin-bottom: 50px;
}
.instagram-handle {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--accent-sage);
    letter-spacing: 1px;
    margin-top: 10px;
    display: inline-block;
    transition: var(--transition-fast);
}
.instagram-handle:hover {
    color: var(--text-forest);
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}
.instagram-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 2px;
}
.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 51, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}
.instagram-item:hover .instagram-overlay {
    opacity: 1;
}
.instagram-item:hover img {
    transform: scale(1.05);
}
.insta-icon {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 150px 50px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.cta-section .parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s linear;
}
.cta-section .parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 51, 0.65);
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 35px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--text-forest);
    padding: 80px 50px 30px;
    color: rgba(255,255,255,0.7);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 280px;
    color: rgba(255,255,255,0.6);
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}
.social-icon {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    cursor: pointer;
}
.social-icon:hover { 
    border-color: var(--accent-sage); 
    background: rgba(107, 142, 120, 0.15); 
}
.social-icon svg {
    width: 16px; height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}
.footer h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.footer-links { 
    list-style: none; 
}
.footer-links li { 
    margin-bottom: 14px; 
}
.footer-links a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}
.footer-links a:hover { 
    color: var(--accent-sage); 
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   Secondary Pages - Specific Layouts
   ========================================== */

/* ABOUT PAGE */
.about-hero-section {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background-image: url('../img/about.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 51, 0.5);
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 25px;
    max-width: 800px;
}
.about-hero-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
    display: block;
}
.about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 300;
    margin-bottom: 20px;
}
.about-hero-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Stats counter on About page */
.about-stats-section {
    background: var(--text-forest);
    color: #fff;
    padding: 60px 50px;
}
.about-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.about-stat-item .asi-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 500;
    color: var(--accent-sage);
    margin-bottom: 8px;
}
.about-stat-item .asi-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.about-story-section {
    padding: 120px 50px;
    background: var(--bg-cream);
}
.about-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-story-images {
    position: relative;
    height: 550px;
}
.about-story-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 70%;
    height: 80%;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(44,62,51,0.1);
    z-index: 2;
}
.about-story-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 60%;
    height: 55%;
    object-fit: cover;
    border: 8px solid var(--bg-cream);
    box-shadow: 0 15px 35px rgba(44,62,51,0.08);
    z-index: 3;
}
.about-story-decoration {
    position: absolute;
    top: 40px; right: 40px;
    width: 50%; height: 50%;
    border: 1px solid var(--accent-sage);
    opacity: 0.3;
    z-index: 1;
}
.about-story-accent-box {
    position: absolute;
    bottom: 40px; left: 40px;
    background: var(--accent-sage);
    color: #fff;
    padding: 15px 25px;
    z-index: 4;
}
.about-story-accent-box .acb-number {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1;
}
.about-story-accent-box .acb-text {
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}
.about-story-text .as-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-sage);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.about-story-text h2 {
    margin-bottom: 25px;
}
.about-story-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.as-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}
.as-signature img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.sig-info h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-forest);
}
.sig-info span {
    font-size: 11px;
    color: var(--text-light-muted);
}

.about-philosophy-section {
    background: #F0EDE6;
    padding: 100px 50px;
    text-align: center;
}
.about-philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}
.about-philosophy-content .ap-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-sage);
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}
.about-philosophy-content blockquote {
    font-family: var(--font-serif);
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    line-height: 1.6;
    color: var(--text-forest);
    margin-bottom: 25px;
}
.about-philosophy-content .ap-author {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light-muted);
}

.about-values-section, .about-timeline-section, .about-team-section, .about-process-section {
    padding: 120px 50px;
    background: var(--bg-cream);
}
.about-values-header, .about-timeline-header, .about-team-header, .about-process-header {
    text-align: center;
    margin-bottom: 80px;
}
.about-values-header .avh-label, .about-timeline-header .ath-label, .about-team-header .ath-label, .about-process-header .aph-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-sage);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.avh-divider, .ath-divider, .aph-divider {
    width: 40px; height: 1px;
    background: var(--accent-sage);
    margin: 15px auto 0;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.about-value-card {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid rgba(107, 142, 120, 0.1);
    text-align: center;
    border-radius: 2px;
}
.about-value-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.about-value-icon svg {
    width: 20px; height: 20px;
    stroke: var(--accent-sage);
    fill: none;
    stroke-width: 1.5;
}
.about-value-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--text-forest);
    margin-bottom: 12px;
}
.about-value-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Timeline vertical layout style */
.about-timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.about-timeline-line {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-sage), transparent);
}
.about-timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 40px;
}
.about-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.about-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}
.about-timeline-dot {
    position: absolute;
    top: 30px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--accent-sage);
    border: 2px solid var(--bg-cream);
    z-index: 5;
}
.about-timeline-item:nth-child(odd) .about-timeline-dot {
    right: -5px;
}
.about-timeline-item:nth-child(even) .about-timeline-dot {
    left: -5px;
}
.ati-content {
    background: var(--white);
    padding: 30px;
    border: 1px solid rgba(107, 142, 120, 0.1);
    box-shadow: 0 10px 30px rgba(44, 62, 51, 0.03);
    border-radius: 2px;
}
.ati-year {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-sage);
    margin-bottom: 8px;
}
.ati-title {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-forest);
    margin-bottom: 10px;
}
.ati-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Creative Team grid styling */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.about-team-member {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.atm-image {
    width: 100%; height: 100%;
}
.atm-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-team-member:hover .atm-image img {
    transform: scale(1.05);
}
.atm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 62, 51, 0.85) 0%, rgba(44, 62, 51, 0.1) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 20px;
    transition: opacity 0.4s ease;
    text-align: center;
    color: #fff;
}
.about-team-member:hover .atm-overlay {
    opacity: 1;
}
.atm-overlay h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 5px;
}
.atm-overlay p {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}
.atm-socials {
    display: flex;
    gap: 12px;
}
.atm-socials a {
    width: 32px; height: 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.atm-socials a:hover {
    background: var(--accent-sage);
    border-color: var(--accent-sage);
}
.atm-socials svg {
    width: 14px; height: 14px;
    stroke: #fff;
    fill: none;
}

/* Awards Section Marquee / Row */
.about-awards-section {
    background: #F0EDE6;
    padding: 80px 50px;
}
.about-awards-track {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.about-award-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-award-icon svg {
    width: 36px; height: 36px;
    stroke: var(--accent-sage);
    fill: none;
    stroke-width: 1.5;
}
.about-award-item h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-forest);
}
.about-award-item span {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

/* Process section steps */
.about-process-steps, .srv-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.about-process-step, .srv-process-step {
    text-align: left;
}
.aps-number, .srv-step-number {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 500;
    color: var(--accent-sage);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.aps-number::after, .srv-step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 60px;
    width: 80px; height: 1px;
    background: rgba(107,142,120,0.2);
}
.about-process-step:last-child .aps-number::after,
.srv-process-step:last-child .srv-step-number::after {
    display: none;
}
.about-process-step h3, .srv-process-step h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-forest);
    margin-bottom: 12px;
}
.about-process-step p, .srv-process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA with background */
.about-cta-section, .srv-cta-section, .cnt-cta-section {
    position: relative;
    padding: 120px 50px;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.about-cta-section { background-image: url('../img/hero1.png'); }
.srv-cta-section { background-image: url('../img/hero2.png'); }
.cnt-cta-section { background-image: url('../img/hero3.png'); }
.about-cta-overlay, .srv-cta-overlay, .cnt-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 51, 0.6);
    z-index: 1;
}
.about-cta-content, .srv-cta-content, .cnt-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.about-cta-content h2, .srv-cta-content h2, .cnt-cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}
.about-cta-content p, .srv-cta-content p, .cnt-cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 35px;
}
.about-btn-primary, .srv-btn-primary, .cnt-btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-sage);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    margin-right: 15px;
}
.about-btn-primary:hover, .srv-btn-primary:hover, .cnt-btn-primary:hover {
    background: var(--accent-sage-hover);
    transform: translateY(-2px);
}
.about-btn-outline {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}
.about-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.15);
}

/* SERVICES PAGE */
.srv-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-image: url('../img/hero2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.srv-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 51, 0.45);
    z-index: 1;
}
.srv-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 25px;
    max-width: 800px;
}
.srv-hero-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
    display: block;
}
.srv-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 300;
    margin-bottom: 20px;
}
.srv-hero-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.srv-services-section, .srv-packages-section, .srv-addons-section, .srv-process-section, .srv-faq-section {
    padding: 120px 50px;
    background: var(--bg-cream);
}
.srv-services-header, .srv-packages-header, .srv-addons-header, .srv-process-header, .srv-faq-header {
    text-align: center;
    margin-bottom: 80px;
}
.srv-services-header .ssh-label, .srv-packages-header .sph-label, .srv-addons-header .sah-label, .srv-process-header .spr-label, .srv-faq-header .sfh-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-sage);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.ssh-divider, .sph-divider, .sah-divider, .spr-divider, .sfh-divider {
    width: 40px; height: 1px;
    background: var(--accent-sage);
    margin: 15px auto 0;
}
.srv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.srv-service-card {
    background: var(--white);
    padding: 50px 35px;
    border: 1px solid rgba(107, 142, 120, 0.1);
    border-radius: 2px;
    text-align: center;
    transition: var(--transition-smooth);
}
.srv-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 62, 51, 0.05);
}
.srv-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.srv-icon-wrap svg {
    width: 24px; height: 24px;
    stroke: var(--accent-sage);
    fill: none;
    stroke-width: 1.5;
}
.srv-service-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--text-forest);
    margin-bottom: 15px;
}
.srv-service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Services Packages block */
.srv-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.srv-package-card {
    background: var(--white);
    padding: 60px 40px;
    border: 1px solid rgba(107, 142, 120, 0.15);
    border-radius: 2px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}
.srv-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(44, 62, 51, 0.08);
}
.srv-package-card.featured {
    background: var(--text-forest);
    color: #fff;
}
.srv-package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-sage);
    color: #fff;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 12px;
}
.srv-package-card h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--text-forest);
    margin-bottom: 15px;
}
.srv-package-card.featured h3 {
    color: #fff;
}
.srv-package-price {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 500;
    color: var(--accent-sage);
    margin-bottom: 30px;
}
.srv-package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}
.srv-package-features li {
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(107, 142, 120, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.srv-package-card.featured .srv-package-features li {
    border-bottom-color: rgba(255,255,255,0.1);
}
.srv-package-features li svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-sage);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}
.srv-package-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--text-forest);
    color: var(--text-forest);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}
.srv-package-btn:hover {
    background: var(--text-forest);
    color: #fff;
}
.srv-package-card.featured .srv-package-btn {
    border-color: var(--accent-sage);
    color: #fff;
    background: var(--accent-sage);
}
.srv-package-card.featured .srv-package-btn:hover {
    background: var(--accent-sage-hover);
    border-color: var(--accent-sage-hover);
}

/* Add-ons grids styling */
.srv-addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.srv-addon-item {
    background: var(--white);
    padding: 30px;
    border: 1px solid rgba(107, 142, 120, 0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-radius: 2px;
}
.srv-addon-icon {
    width: 44px; height: 44px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.srv-addon-icon svg {
    width: 18px; height: 18px;
    stroke: var(--accent-sage);
    fill: none;
    stroke-width: 1.5;
}
.srv-addon-info h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-forest);
    margin-bottom: 8px;
}
.srv-addon-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}
.srv-addon-price {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-sage);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* FAQ accordion styles */
.srv-faq-container, .cnt-faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.srv-faq-item, .cnt-faq-item {
    border-bottom: 1px solid rgba(107, 142, 120, 0.15);
    padding: 15px 0;
}
.srv-faq-question, .cnt-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 15px 0;
    font-family: var(--font-serif);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
    color: var(--text-forest);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.srv-faq-icon, .cnt-faq-icon {
    width: 20px; height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-sage);
    transition: transform 0.3s ease;
}
.srv-faq-icon svg, .cnt-faq-icon svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    stroke-width: 2;
}
.srv-faq-item.active .srv-faq-icon, .cnt-faq-item.active .cnt-faq-icon {
    transform: rotate(45deg);
}
.srv-faq-answer, .cnt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.srv-faq-item.active .srv-faq-answer, .cnt-faq-item.active .cnt-faq-answer {
    max-height: 1000px;
    transition: max-height 0.4s ease-in-out;
}
.srv-faq-answer p, .cnt-faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-bottom: 20px;
}

/* CONTACT PAGE */
.cnt-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-image: url('../img/hero3.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cnt-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 51, 0.45);
    z-index: 1;
}
.cnt-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 25px;
    max-width: 800px;
}
.cnt-hero-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
    display: block;
}
.cnt-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 300;
    margin-bottom: 20px;
}
.cnt-hero-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.cnt-info-section, .cnt-main-section, .cnt-map-section, .cnt-faq-section {
    padding: 120px 50px;
    background: var(--bg-cream);
}
.cnt-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.cnt-info-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid rgba(107, 142, 120, 0.1);
    text-align: center;
    border-radius: 2px;
}
.cnt-info-icon {
    width: 44px; height: 44px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-sage);
}
.cnt-info-icon svg {
    width: 20px; height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}
.cnt-info-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-forest);
    margin-bottom: 10px;
}
.cnt-info-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.cnt-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}
.cnt-left h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    color: var(--text-forest);
    margin-bottom: 20px;
}
.cnt-left h2 em {
    color: var(--accent-sage);
    font-style: italic;
}
.cnt-left > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}
.cnt-contact-list {
    margin-bottom: 40px;
}
.cnt-contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}
.cci-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(107, 142, 120, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-sage);
    flex-shrink: 0;
}
.cci-icon svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}
.cci-info h4 {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light-muted);
    margin-bottom: 5px;
}
.cci-info span {
    font-size: 14px;
    color: var(--text-forest);
    line-height: 1.5;
}
.cnt-social-links {
    display: flex;
    gap: 12px;
}
.cnt-social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(107, 142, 120, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-forest);
    transition: var(--transition-fast);
}
.cnt-social-links a:hover {
    background: var(--accent-sage);
    border-color: var(--accent-sage);
    color: #fff;
}
.cnt-social-links svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
}
.cnt-form-wrapper {
    background: var(--white);
    padding: 50px 45px;
    box-shadow: 0 20px 50px rgba(44, 62, 51, 0.05);
    border-radius: 2px;
}
.cnt-form-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--text-forest);
    margin-bottom: 30px;
}
.cnt-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.cnt-form-group {
    margin-bottom: 20px;
}
.cnt-form-group label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-forest);
    margin-bottom: 8px;
}
.cnt-form-group input, .cnt-form-group select, .cnt-form-group textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(107, 142, 120, 0.2);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-forest);
    outline: none;
    transition: border-color 0.3s ease;
}
.cnt-form-group input:focus, .cnt-form-group select:focus, .cnt-form-group textarea:focus {
    border-bottom-color: var(--accent-sage);
}
.cnt-form-group textarea {
    min-height: 80px;
    resize: vertical;
}
.cnt-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--text-forest);
    color: #fff;
    border: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}
.cnt-submit-btn:hover {
    background: var(--accent-sage);
}
.cnt-form-note {
    font-size: 11px;
    color: var(--text-light-muted);
    text-align: center;
    margin-top: 15px;
}

/* Map frame & card overlay */
.cnt-map-section {
    position: relative;
    padding: 0;
    height: 550px;
    width: 100%;
}
.cnt-map-frame {
    width: 100%;
    height: 100%;
    border: none;
}
.cnt-map-overlay-card {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 45px;
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 2px;
    border: 1px solid rgba(107,142,120,0.1);
}
.cnt-map-overlay-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--text-forest);
    margin-bottom: 15px;
}
.cnt-map-overlay-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}
.cnt-map-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-sage);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.cnt-map-btn:hover {
    background: var(--accent-sage-hover);
}

.cnt-faq-header {
    text-align: center;
    margin-bottom: 70px;
}
.cnt-faq-header .cfh-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-sage);
    text-transform: uppercase;
}
.cfh-divider {
    width: 40px; height: 1px;
    background: var(--accent-sage);
    margin: 15px auto 0;
}

/* Success Modal for Contact */
.cnt-success-modal {
    position: fixed;
    inset: 0;
    background: rgba(44, 62, 51, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cnt-success-modal.active {
    opacity: 1;
    visibility: visible;
}
.cnt-success-card {
    position: relative;
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-radius: 2px;
}
.cnt-success-card .lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
    z-index: 10;
}
.cnt-success-card .lightbox-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-forest) !important;
    fill: none !important;
    stroke-width: 2;
    transition: var(--transition-fast);
}
.cnt-success-card .lightbox-close:hover svg {
    stroke: var(--accent-sage) !important;
}
.cnt-success-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(107, 142, 120, 0.1);
    color: var(--accent-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.cnt-success-icon svg {
    width: 24px; height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}
.cnt-success-card h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--text-forest);
    margin-bottom: 12px;
}
.cnt-success-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}
.cnt-success-close {
    padding: 12px 35px;
    background: var(--accent-sage);
    color: #fff;
    border: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}
.cnt-success-close:hover {
    background: var(--accent-sage-hover);
}

/* ==========================================
   Privacy Policy & Terms Pages (Legal Pages)
   ========================================== */
.pp-hero, .tc-hero {
    position: relative;
    background: var(--text-forest);
    color: #fff;
    padding: 100px 50px 80px;
    text-align: center;
    overflow: hidden;
}
.pp-hero-pattern, .tc-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--accent-sage) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}
.pp-hero-content, .tc-hero-content {
    position: relative;
    z-index: 2;
}
.pp-hero-icon, .tc-hero-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-light);
}
.pp-hero-icon svg, .tc-hero-icon svg {
    width: 22px; height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}
.pp-hero-label, .tc-hero-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 10px;
    display: block;
}
.pp-hero-title, .tc-hero-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 10px;
}
.pp-hero-title em, .tc-hero-title em {
    font-style: italic;
    color: var(--accent-light);
}
.pp-hero-updated, .tc-hero-updated {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

/* Layout for legal content */
.pp-main, .tc-main {
    padding: 80px 50px;
    background: var(--bg-cream);
}
.pp-main-container, .tc-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}
.pp-sidebar, .tc-sidebar {
    position: sticky;
    top: 100px;
}
.pp-toc-toggle, .tc-toc-toggle {
    display: none;
    width: 100%;
    padding: 15px;
    background: var(--white);
    border: 1px solid rgba(107, 142, 120, 0.15);
    color: var(--text-forest);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    margin-bottom: 15px;
}
.pp-toc, .tc-toc {
    background: var(--white);
    padding: 30px;
    border: 1px solid rgba(107, 142, 120, 0.1);
    box-shadow: 0 10px 30px rgba(44, 62, 51, 0.02);
}
.pp-toc h3, .tc-toc h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-forest);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(107, 142, 120, 0.15);
    padding-bottom: 10px;
}
.pp-toc ul, .tc-toc ul {
    list-style: none;
}
.pp-toc li, .tc-toc li {
    margin-bottom: 12px;
}
.pp-toc a, .tc-toc a {
    font-size: 12px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: block;
    line-height: 1.4;
}
.pp-toc a:hover, .tc-toc a:hover, .pp-toc a.active, .tc-toc a.active {
    color: var(--accent-sage);
    transform: translateX(4px);
}

.pp-content, .tc-content {
    background: var(--white);
    padding: 50px;
    border: 1px solid rgba(107, 142, 120, 0.1);
    box-shadow: 0 10px 30px rgba(44, 62, 51, 0.02);
}
.pp-section, .tc-section {
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(107, 142, 120, 0.1);
    margin-bottom: 45px;
}
.pp-section:last-child, .tc-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.pp-section-header, .tc-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.pp-section-number, .tc-section-number {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}
.pp-section-header h2, .tc-section-header h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--text-forest);
    margin-bottom: 0;
}
.pp-content p, .tc-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.pp-content h3, .tc-content h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-forest);
    margin-top: 30px;
    margin-bottom: 15px;
}
.pp-content ul, .pp-content ol, .tc-content ul, .tc-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-muted);
}
.pp-content li, .tc-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.pp-highlight-box, .tc-highlight-box {
    background: var(--bg-cream);
    border-left: 3px solid var(--accent-sage);
    padding: 20px 25px;
    margin: 25px 0;
}
.pp-highlight-box p, .tc-highlight-box p {
    margin-bottom: 0;
    color: var(--text-forest);
}

/* Legal Tables styling */
.pp-data-table, .tc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 13px;
    text-align: left;
}
.pp-data-table th, .tc-table th {
    background: var(--bg-cream);
    padding: 12px 15px;
    font-weight: 600;
    color: var(--text-forest);
    border-bottom: 1px solid rgba(107, 142, 120, 0.15);
}
.pp-data-table td, .tc-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(107, 142, 120, 0.08);
    color: var(--text-muted);
}

.pp-contact-card, .tc-contact-card {
    background: var(--bg-cream);
    padding: 30px;
    margin-top: 30px;
    border-radius: 2px;
}
.pp-contact-card h4, .tc-contact-card h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-forest);
    margin-bottom: 8px;
}
.pp-cc-links, .tc-cc-links {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pp-cc-links a, .tc-cc-links a {
    font-size: 13px;
    color: var(--text-forest);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pp-cc-links a:hover, .tc-cc-links a:hover {
    color: var(--accent-sage);
}
.pp-cc-links svg, .tc-cc-links svg {
    width: 16px; height: 16px;
    stroke: var(--accent-sage);
    fill: none;
}

/* Back to Top button on legal pages */
.pp-back-top, .tc-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(107, 142, 120, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    color: var(--text-forest);
    z-index: 90;
}
.pp-back-top.visible, .tc-back-top.visible {
    opacity: 1;
    visibility: visible;
}
.pp-back-top:hover, .tc-back-top:hover {
    background: var(--accent-sage);
    color: #fff;
    border-color: var(--accent-sage);
}
.pp-back-top svg, .tc-back-top svg {
    width: 18px; height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ==========================================
   Responsive Design Adjustments
   ========================================== */
@media (max-width: 1024px) {
    .hero-content { 
        grid-template-columns: 1fr; 
        padding: 0 30px; 
    }
    .hero-right { 
        display: none; 
    }
    .about-container { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .about-images { 
        height: 500px; 
    }
    .services-grid { 
        grid-template-columns: 1fr; 
    }
    .contact-container { 
        grid-template-columns: 1fr; 
    }
    .footer-content { 
        grid-template-columns: 1fr 1fr; 
    }
    .about-story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-story-images {
        height: 450px;
    }
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-process-steps, .srv-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    .about-process-step:nth-child(2) .aps-number::after,
    .srv-process-step:nth-child(2) .srv-step-number::after {
        display: none;
    }
    .srv-services-grid, .srv-packages-grid, .video-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .srv-addons-grid {
        grid-template-columns: 1fr;
    }
    .cnt-info-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .cnt-main-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .pp-main-container, .tc-main-container {
        grid-template-columns: 1fr;
    }
    .pp-sidebar, .tc-sidebar {
        position: relative;
        top: 0;
    }
    .pp-toc-toggle, .tc-toc-toggle {
        display: block;
    }
    .pp-toc, .tc-toc {
        display: none;
    }
    .pp-toc.active, .tc-toc.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .section { 
        padding: 80px 25px; 
    }
    .gallery-filters {
        gap: 8px;
        margin-bottom: 30px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 10px;
    }
    .navbar { 
        padding: 20px 25px; 
    }
    .navbar.scrolled { 
        padding: 15px 25px; 
    }
    .nav-links, .nav-cta { 
        display: none; 
    }
    .hamburger { 
        display: flex; 
    }
    .form-row, .cnt-form-row { 
        grid-template-columns: 1fr; 
    }
    .about-stats { 
        flex-wrap: wrap; 
    }
    .footer-content { 
        grid-template-columns: 1fr; 
    }
    .contact-form, .cnt-form-wrapper { 
        padding: 35px 25px; 
    }
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-timeline-line {
        left: 20px;
    }
    .about-timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }
    .about-timeline-item:nth-child(even) {
        left: 0;
    }
    .about-timeline-dot {
        left: 15px !important;
        right: auto !important;
    }
    .about-values-grid, .about-team-grid, .cnt-info-container {
        grid-template-columns: 1fr;
    }
    .about-process-steps, .srv-process-steps {
        grid-template-columns: 1fr;
    }
    .aps-number::after, .srv-step-number::after {
        display: none;
    }
    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-hero-section, .srv-hero, .cnt-hero {
        height: 50vh;
    }
    .scroll-indicator {
        display: none !important;
    }
    .hero-action-card {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        transform: none;
        position: absolute;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        border-top: 1px solid rgba(107, 142, 120, 0.3);
    }
    .action-card-btn {
        width: auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        font-size: 9px;
        letter-spacing: 0.5px;
        white-space: normal;
        gap: 4px;
        border-radius: 0;
        border: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .action-card-btn:last-child {
        border-right: none;
    }
    .action-card-btn .btn-icon {
        width: 16px;
        height: 16px;
    }
    .action-card-btn span {
        display: block;
        line-height: 1.2;
    }
    .portfolio-card {
        min-width: 280px;
    }
    .cnt-map-section {
        height: 400px;
    }
    .cnt-map-overlay-card {
        position: relative;
        top: 0; left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(107,142,120,0.1);
        padding: 30px 25px;
    }
    .pp-content, .tc-content {
        padding: 25px;
    }
}
