/*
Theme Name: Delaware County Digital
Theme URI: https://delawarecounty.digital
Description: A modern, human-centered web agency for small businesses in the Western Catskills
Author: Delaware County Digital (Kiki & Cary)
Version: 2.0
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D84A38;
    --secondary-color: #6B8FA3;
    --accent-color: #C4A747;
    --tertiary-color: #5A7A8F;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --dark: #2B2B2B;
    --light: #FAF8F5;
    --text: #3a3a3a;
    --gray: #7a7a7a;
    --warmth: #D4A573;
    --gradient-1: linear-gradient(135deg, #D84A38 0%, #6B8FA3 100%);
    --gradient-2: linear-gradient(135deg, #C4A747 0%, #D84A38 100%);
    --gradient-3: linear-gradient(135deg, #6B8FA3 0%, #5A7A8F 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
    font-weight: 400;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Seaweed Script', cursive;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

/* Logo Hero Section */
.logo-hero {
    background: linear-gradient(135deg, #D84A38 0%, #6B8FA3 50%, #5A7A8F 100%);
    position: relative;
    z-index: 999;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.logo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(65, 182, 189, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(92, 201, 208, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.logo-hero-decorations {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.logo-mountain-left {
    height: 100%;
    width: 25%;
    max-width: 200px;
    opacity: 0.7;
}

.logo-mountain-right {
    height: 100%;
    width: 25%;
    max-width: 200px;
    opacity: 0.7;
}

.logo-swirl-top {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: auto;
}

.logo-swirl-bottom {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: auto;
}

.logo-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(65, 182, 189, 0.2) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 0;
}

.logo-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 180px;
    width: auto;
}

.logo-hero-logo img {
    height: 180px;
    width: auto;
    max-width: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.logo-hero-logo:hover img {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 12px 32px rgba(65, 182, 189, 0.5));
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #D84A38 0%, #6B8FA3 50%, #5A7A8F 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 100px;
    max-height: 120px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(216, 74, 56, 0.3);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(65, 182, 189, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(92, 201, 208, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.header-mountains {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    overflow: hidden;
}

.header-mountains svg {
    position: absolute;
    height: 100%;
    width: auto;
}

.mountain-left {
    left: -5%;
    width: 45%;
}

.mountain-right {
    right: -5%;
    width: 50%;
}

.header-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(65, 182, 189, 0.1) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}

.header-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 0;
    position: relative;
}

.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding: 0 1rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    padding: 0.4rem 0;
    position: relative;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C4A747, #D84A38);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #C4A747 0%, #D84A38 100%);
    color: white !important;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(216, 74, 56, 0.35);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(216, 74, 56, 0.5);
    color: white !important;
}

.nav-cta:hover::before {
    opacity: 1;
}

.nav-cta:hover::after {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D84A38 0%, #6B8FA3 100%);
    position: relative;
    color: white;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(65, 182, 189, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(92, 201, 208, 0.2) 0%, transparent 50%);
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Seaweed Script', cursive;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    background: linear-gradient(135deg, #fff 0%, #f0f0ff 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-left: 1rem;
}

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

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background:
        /* Leaf shapes - organic clusters */
        radial-gradient(ellipse 80px 120px at 15% 20%, rgba(65, 182, 189, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60px 90px at 25% 45%, rgba(92, 201, 208, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 100px 140px at 70% 30%, rgba(65, 182, 189, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 70px 110px at 85% 60%, rgba(92, 201, 208, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 90px 130px at 40% 75%, rgba(65, 182, 189, 0.2) 0%, transparent 60%),
        /* Vein patterns */
        linear-gradient(25deg, transparent 48%, #41b6bd 48%, #41b6bd 51%, transparent 51%),
        linear-gradient(155deg, transparent 48%, #5cc9d0 48%, #5cc9d0 51%, transparent 51%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 200px 200px, 280px 280px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 50px 50px;
    background-attachment: fixed;
    opacity: 0.18;
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Seaweed Script', cursive;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D84A38, #6B8FA3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(216, 74, 56, 0.25);
    border-color: rgba(216, 74, 56, 0.3);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Seaweed Script', cursive;
    font-weight: 700;
}

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

.service-card ul {
    list-style: none;
    color: var(--gray);
}

.service-card ul li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.portfolio-preview::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 700px;
    height: 500px;
    background:
        /* Flowing stream curves */
        radial-gradient(circle 150px at 20% 15%, rgba(92, 201, 208, 0.3) 0%, transparent 70%),
        radial-gradient(circle 120px at 60% 25%, rgba(65, 182, 189, 0.25) 0%, transparent 70%),
        radial-gradient(circle 180px at 80% 50%, rgba(92, 201, 208, 0.28) 0%, transparent 70%),
        radial-gradient(circle 140px at 50% 70%, rgba(65, 182, 189, 0.22) 0%, transparent 70%),
        radial-gradient(circle 160px at 30% 85%, rgba(92, 201, 208, 0.24) 0%, transparent 70%),
        /* Wavy stream lines */
        linear-gradient(15deg, transparent 48%, #5cc9d0 48%, #5cc9d0 50%, transparent 50%),
        linear-gradient(65deg, transparent 48%, #41b6bd 48%, #41b6bd 50%, transparent 50%),
        linear-gradient(110deg, transparent 48%, #5cc9d0 48%, #5cc9d0 50%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 180px 180px, 250px 250px, 320px 320px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 40px 40px, 80px 80px;
    background-attachment: fixed;
    opacity: 0.15;
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(216, 74, 56, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #D84A38 0%, #C4A747 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.portfolio-item.business .portfolio-image {
    background: linear-gradient(135deg, #D84A38 0%, #6B8FA3 100%);
}

.portfolio-item.ecommerce .portfolio-image {
    background: linear-gradient(135deg, #C4A747 0%, #D84A38 100%);
}

.portfolio-item.social .portfolio-image {
    background: linear-gradient(135deg, #6B8FA3 0%, #5A7A8F 100%);
}

.portfolio-item.ai .portfolio-image {
    background: linear-gradient(135deg, #D84A38 0%, #2B2B2B 100%);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Seaweed Script', cursive;
    font-weight: 700;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(65, 182, 189, 0.1), rgba(29, 59, 87, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(65, 182, 189, 0.3);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(216, 74, 56, 0.15);
    border: 1px solid rgba(216, 74, 56, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(216, 74, 56, 0.15);
    transform: translateY(-2px);
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #D84A38 0%, #6B8FA3 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 74, 56, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 74, 56, 0.5);
    background: linear-gradient(135deg, #C4A747 0%, #5A7A8F 100%);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #6B8FA3 0%, #5A7A8F 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 167, 71, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 2;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 800px;
    height: 500px;
    background:
        /* Snow/particle scatter - dense coverage */
        radial-gradient(circle 25px at 5% 10%, rgba(65, 182, 189, 0.4) 0%, transparent 50%),
        radial-gradient(circle 20px at 15% 35%, rgba(92, 201, 208, 0.35) 0%, transparent 50%),
        radial-gradient(circle 30px at 25% 15%, rgba(65, 182, 189, 0.38) 0%, transparent 50%),
        radial-gradient(circle 22px at 40% 50%, rgba(92, 201, 208, 0.4) 0%, transparent 50%),
        radial-gradient(circle 28px at 55% 25%, rgba(65, 182, 189, 0.36) 0%, transparent 50%),
        radial-gradient(circle 24px at 70% 60%, rgba(92, 201, 208, 0.38) 0%, transparent 50%),
        radial-gradient(circle 26px at 85% 35%, rgba(65, 182, 189, 0.4) 0%, transparent 50%),
        radial-gradient(circle 21px at 12% 75%, rgba(92, 201, 208, 0.35) 0%, transparent 50%),
        radial-gradient(circle 29px at 60% 80%, rgba(65, 182, 189, 0.39) 0%, transparent 50%),
        radial-gradient(circle 23px at 78% 15%, rgba(92, 201, 208, 0.37) 0%, transparent 50%),
        /* Light vein patterns for connectivity */
        linear-gradient(80deg, transparent 48%, #41b6bd 48%, #41b6bd 50%, transparent 50%),
        linear-gradient(40deg, transparent 48%, #5cc9d0 48%, #5cc9d0 50%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 240px 240px, 320px 320px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 60px 60px;
    background-attachment: fixed;
    opacity: 0.14;
    pointer-events: none;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background: #F5F1E8;
}

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

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.3;
    font-family: 'Seaweed Script', cursive;
    font-weight: 700;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: linear-gradient(135deg, #FFF5E1 0%, #FFE8CC 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #D4A573;
}

.team-member h4 {
    font-size: 1.4rem;
    margin: 1rem 0 0.5rem 0;
    color: var(--dark);
    font-family: 'Seaweed Script', cursive;
    font-weight: 700;
}

.team-member p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFF5E1 0%, #FFE8CC 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150px;
    width: 900px;
    height: 100%;
    background:
        /* Layered mountain silhouettes */
        radial-gradient(ellipse 200px 150px at 60% 20%, rgba(232, 105, 59, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 250px 180px at 80% 35%, rgba(245, 164, 93, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 220px 160px at 40% 55%, rgba(232, 105, 59, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse 240px 170px at 70% 75%, rgba(245, 164, 93, 0.26) 0%, transparent 60%),
        /* Complex ridge lines at various angles */
        linear-gradient(25deg, transparent 48%, #E8693B 48%, #E8693B 50%, transparent 50%),
        linear-gradient(65deg, transparent 48%, #F5A45D 48%, #F5A45D 50%, transparent 50%),
        linear-gradient(105deg, transparent 48%, #E8693B 48%, #E8693B 50%, transparent 50%),
        linear-gradient(140deg, transparent 48%, #F5A45D 48%, #F5A45D 50%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 200px 200px, 280px 280px, 340px 340px, 420px 420px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50px 50px, 100px 100px, 150px 150px;
    background-attachment: fixed;
    opacity: 0.14;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-left: 5px solid var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(216, 74, 56, 0.2);
}

.testimonial-stars {
    color: #C4A747;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-family: 'Seaweed Script', cursive;
    font-size: 1.05rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Industry Sections */
.industry-showcase {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.industry-showcase::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 750px;
    height: 550px;
    background:
        /* Leaf clusters - warm tones */
        radial-gradient(ellipse 90px 130px at 10% 25%, rgba(245, 164, 93, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse 110px 150px at 35% 10%, rgba(232, 105, 59, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 100px 140px at 60% 40%, rgba(245, 164, 93, 0.26) 0%, transparent 60%),
        radial-gradient(ellipse 120px 160px at 25% 65%, rgba(232, 105, 59, 0.27) 0%, transparent 60%),
        radial-gradient(ellipse 95px 135px at 70% 70%, rgba(245, 164, 93, 0.25) 0%, transparent 60%),
        /* Branch/vein network */
        linear-gradient(30deg, transparent 48%, #F5A45D 48%, #F5A45D 50%, transparent 50%),
        linear-gradient(75deg, transparent 48%, #E8693B 48%, #E8693B 50%, transparent 50%),
        linear-gradient(120deg, transparent 48%, #F5A45D 48%, #F5A45D 50%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 190px 190px, 270px 270px, 350px 350px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 45px 45px, 90px 90px;
    background-attachment: fixed;
    opacity: 0.16;
    pointer-events: none;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #FFE6D5;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(216, 74, 56, 0.25);
    border-color: var(--primary-color);
}

.industry-icon {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    position: relative;
    overflow: hidden;
}

.industry-card.airbnb .industry-icon {
    background: linear-gradient(135deg, #D84A38 0%, #C94F25 100%);
}

.industry-card.restaurant .industry-icon {
    background: linear-gradient(135deg, #D84A38 0%, #B84430 100%);
}

.industry-card.bar .industry-icon {
    background: linear-gradient(135deg, #6B8FA3 0%, #5A7A8F 100%);
}

.industry-card.service .industry-icon {
    background: linear-gradient(135deg, #C4A747 0%, #D84A38 100%);
}

.industry-content {
    padding: 2rem;
}

.industry-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Seaweed Script', cursive;
    font-weight: 700;
}

.industry-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #D84A38 0%, #6B8FA3 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Complex layered circles and radial bursts */
        radial-gradient(circle 180px at 15% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 65%),
        radial-gradient(circle 150px at 85% 30%, rgba(255, 255, 255, 0.16) 0%, transparent 65%),
        radial-gradient(circle 200px at 50% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 65%),
        radial-gradient(circle 160px at 25% 80%, rgba(255, 255, 255, 0.17) 0%, transparent 65%),
        radial-gradient(circle 170px at 75% 75%, rgba(255, 255, 255, 0.14) 0%, transparent 65%),
        /* Mountain ridge lines in multiple directions */
        linear-gradient(15deg, transparent 48%, rgba(255, 255, 255, 0.2) 48%, rgba(255, 255, 255, 0.2) 50%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.15) 48%, rgba(255, 255, 255, 0.15) 50%, transparent 50%),
        linear-gradient(75deg, transparent 48%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0.18) 50%, transparent 50%),
        linear-gradient(105deg, transparent 48%, rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0.16) 50%, transparent 50%),
        linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.19) 48%, rgba(255, 255, 255, 0.19) 50%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 160px 160px, 240px 240px, 310px 310px, 400px 400px, 500px 500px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 30px 30px, 70px 70px, 120px 120px, 180px 180px;
    background-attachment: fixed;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Seaweed Script', cursive;
    font-weight: 700;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Human Touch Styling */
.heart-emoji {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.smile-faces {
    font-size: 3rem;
    margin: 2rem 0;
    letter-spacing: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

.hamburger-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    margin-right: 1rem;
}

.hamburger-icon span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:checked ~ .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: rgba(255, 255, 255, 1);
}

.mobile-menu-toggle:checked ~ .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle:checked ~ .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: rgba(255, 255, 255, 1);
}

.mobile-menu-toggle:checked ~ .main-nav {
    display: flex !important;
}

/* Responsive */
@media (max-width: 768px) {
    /* Logo Hero Mobile */
    .logo-hero {
        min-height: 260px;
        padding: 1.5rem 0;
    }

    .logo-mountain-left,
    .logo-mountain-right {
        max-width: 120px;
        opacity: 0.5;
    }

    .logo-swirl-top,
    .logo-swirl-bottom {
        width: 90%;
        max-width: 100%;
    }

    .logo-hero-logo {
        height: 132px;
    }

    .logo-hero-logo img {
        height: 132px;
    }

    /* Header Mobile */
    .site-header {
        min-height: 75px;
        max-height: 95px;
    }

    .header-content {
        padding: 0;
        gap: 0;
    }

    .logo {
        height: 70px;
        margin-left: 0.5rem;
        padding: 0 0.75em 0 0;
    }

    .logo img {
        height: 70px;
    }

    .hamburger-icon {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #D84A38 0%, #6B8FA3 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        flex-direction: column;
        width: 100%;
        z-index: 999;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        text-align: left;
        width: 100%;
        margin: 0;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin: 0;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        display: block;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background: rgba(196, 167, 71, 0.15);
    }

    .nav-cta {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
        border-radius: 0;
        background: linear-gradient(135deg, #C4A747 0%, #D84A38 100%);
        margin: 0;
        box-shadow: none;
    }

    .nav-cta::before {
        display: none;
    }

    .nav-cta:hover {
        transform: none;
        background: linear-gradient(135deg, #D9B860 0%, #E85C48 100%);
        box-shadow: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}
