:root {
    --primary: #1a1a1a;
    --secondary: #8B4513;
    --accent: #C84B31;
    --cream: #F5F0E8;
    --warm-white: #FDFBF7;
    --sage: #7D8471;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

.campaign-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, var(--accent) 0%, #a33d27 100%);
    color: white;
    padding: 0.625rem 1rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.campaign-bar.hidden {
    transform: translateY(-100%);
}

.campaign-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.campaign-icon {
    font-size: 1rem;
}

.campaign-text {
    white-space: nowrap;
}

.campaign-link {
    color: white;
    font-weight: 600;
    white-space: nowrap;
}

.campaign-link:hover {
    opacity: 0.85;
}

body.has-campaign {
    padding-top: 38px;
}

body.has-campaign .navbar {
    top: 38px;
}

body.has-campaign.campaign-hidden {
    padding-top: 0;
}

body.has-campaign.campaign-hidden .navbar {
    top: 0;
}

@media (max-width: 480px) {
    .campaign-bar {
        padding: 0.5rem 0.75rem;
    }

    .campaign-content {
        font-size: 0.8125rem;
        gap: 0.375rem;
    }

    .campaign-icon {
        display: none;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--text-medium);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.section-title {
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: #a63d27;
    border-color: #a63d27;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-full {
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-normal), top 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    transition: color var(--transition-fast);
}

.navbar:not(.scrolled) .logo-text {
    color: white;
}

.logo-sub {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.navbar:not(.scrolled) .logo-sub {
    color: rgba(255, 255, 255, 0.9);
}

.nav-logo-img {
    height: 55px;
    width: auto;
    transition: filter var(--transition-fast);
}

.navbar:not(.scrolled) .nav-logo-img {
    filter: brightness(0) invert(1);
}

.nav-menu-logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu-header {
    display: none;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.navbar:not(.scrolled) .nav-link {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-normal);
}

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

.nav-cta {
    padding: 0.625rem 1.25rem;
    background-color: var(--accent);
    color: white !important;
    border-radius: var(--radius-sm);
}

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

.nav-cta:hover {
    background-color: #a63d27;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: all var(--transition-fast);
}

.navbar:not(.scrolled) .nav-toggle span {
    background-color: white;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-secondary {
    border-color: white;
    color: white;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    z-index: 1;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

.about {
    background-color: var(--warm-white);
}

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

.about-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--cream);
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--accent);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background-color: var(--accent);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.services {
    background-color: var(--cream);
}

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

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta .btn {
    padding: 1rem 3rem;
    font-size: 1.0625rem;
}

.service-card {
    background-color: var(--warm-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-list {
    border-top: 1px solid var(--cream);
    padding-top: 1rem;
}

.service-list li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

.gallery {
    background-color: var(--warm-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-medium);
    background-color: transparent;
    border: 2px solid var(--cream);
    border-radius: 30px;
    transition: all var(--transition-fast);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    color: white;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.gallery-zoom {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.gallery-zoom svg {
    width: 20px;
    height: 20px;
}

.gallery-zoom:hover {
    background-color: white;
    color: var(--primary);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.gallery-hidden {
    display: none;
}

.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

.gallery-load-more .btn {
    min-width: 200px;
}

.gallery-load-more .load-more-count {
    margin-left: 0.25rem;
}

.gallery-load-more .btn.hidden {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 1rem;
    transition: all var(--transition-fast);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
    width: 32px;
    height: 32px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.why-us {
    position: relative;
    color: white;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.why-us::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(44, 62, 80, 0.65) 100%);
}

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

.why-us .section-label {
    color: var(--accent);
}

.why-us .section-title {
    color: white;
}

.why-us .section-header {
    margin-bottom: 3rem;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.usp-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.usp-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.usp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #e85d3f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(200, 75, 49, 0.4);
}

.usp-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.usp-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.usp-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--warm-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.9375rem;
}

.contact-item a {
    color: var(--text-medium);
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background-color: var(--warm-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

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

.contact-form .btn {
    margin-top: 0.5rem;
}

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

.footer {
    background-color: var(--primary);
    color: white;
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo-img {
    height: 70px;
    width: 73px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.values .value-item,
.services-grid .service-card,
.gallery-grid .gallery-item,
.usp-grid .usp-card {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background-color: var(--warm-white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
    }

    .nav-menu.active {
        right: 0;
        z-index: 1002;
    }

    .nav-menu .nav-link {
        color: var(--text-dark) !important;
        font-size: 1.125rem;
    }

    .nav-menu-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--cream);
    }

    .nav-menu-logo-link {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .nav-menu-close {
        position: absolute;
        top: 1.25rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .nav-menu-close:hover {
        opacity: 0.7;
    }

    .nav-menu .nav-menu-header .logo-text {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary) !important;
    }

    .nav-menu .nav-menu-header .logo-sub {
        font-family: var(--font-accent);
        font-size: 0.875rem;
        font-style: italic;
        color: var(--text-light) !important;
    }

    .nav-menu-logo-img {
        height: 45px;
        width: auto;
    }

    .nav-menu .nav-cta {
        background: var(--accent);
        color: white !important;
        padding: 0.875rem 1.5rem;
        border-radius: 8px;
        text-align: center;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin: 0 auto 2rem;
    }

    .about-grid {
        gap: 3rem;
    }

    .image-frame img {
        height: 400px;
    }

    .experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 1.25rem 1.5rem;
    }

    .exp-number {
        font-size: 2rem;
    }

    .values {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .value-item {
        padding: 1.25rem 0.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-image {
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        min-height: 44px;
    }

    .gallery-zoom {
        width: 48px;
        height: 48px;
    }

    .gallery-zoom svg {
        width: 24px;
        height: 24px;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        padding: 1rem;
        min-width: 48px;
        min-height: 48px;
    }

    .lightbox-close svg,
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 32px;
        height: 32px;
    }

    .usp-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .usp-card {
        padding: 2rem 1.5rem;
    }

    .usp-icon {
        width: 70px;
        height: 70px;
    }

    .usp-icon svg {
        width: 35px;
        height: 35px;
    }

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

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        min-height: 44px;
        font-size: 16px;
    }

    .footer-social a {
        width: 48px;
        height: 48px;
    }

    .footer-social svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-right: 0;
        order: 2;
    }

    .about-image {
        order: 1;
        max-width: 100%;
        margin: 0 auto;
    }

    .values {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 2.5rem auto 0;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content {
        padding-right: 0;
        order: 2;
    }

    .about-image {
        order: 1;
        max-width: 100%;
        margin: 0 auto;
    }

    .values {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .usp-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
        align-items: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .nav-toggle {
        padding: 10px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
    }

    .nav-logo-img {
        height: 45px;
    }

    .nav-menu {
        width: 85vw;
        max-width: 300px;
    }

    .nav-menu-logo-img {
        height: 40px;
    }

    .footer-logo-img {
        height: 60px;
        width: 63px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        padding: 0;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero-tagline {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        min-height: 48px;
    }

    .hero-scroll {
        display: none;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        min-height: 48px;
        font-size: 0.9375rem;
    }

    .about-text {
        font-size: 0.9375rem;
    }

    .image-frame {
        border-radius: var(--radius-md);
    }

    .image-frame::before {
        display: none;
    }

    .image-frame img {
        height: 200px;
        width: 100%;
    }

    .experience-badge {
        bottom: -15px;
        right: 15px;
        padding: 1rem 1.25rem;
    }

    .exp-number {
        font-size: 1.75rem;
    }

    .exp-text {
        font-size: 0.75rem;
    }

    .values {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 280px;
        margin: 2rem auto 0;
    }

    .value-item {
        padding: 1.25rem 1rem;
    }

    .value-icon {
        width: 40px;
        height: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        min-height: 44px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .gallery-category {
        font-size: 0.875rem;
    }

    .gallery-zoom {
        width: 44px;
        height: 44px;
    }

    .gallery-zoom svg {
        width: 20px;
        height: 20px;
    }

    .gallery-load-more {
        margin-top: 2rem;
    }

    .gallery-load-more .btn {
        width: 100%;
        max-width: 280px;
    }

    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
    }

    .lightbox-prev {
        left: 0.25rem;
    }

    .lightbox-next {
        right: 0.25rem;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        padding: 0.75rem;
        min-width: 44px;
        min-height: 44px;
    }

    .lightbox-close svg,
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 24px;
        height: 24px;
    }

    .usp-card {
        padding: 1.5rem 1.25rem;
    }

    .usp-icon {
        width: 60px;
        height: 60px;
    }

    .usp-icon svg {
        width: 28px;
        height: 28px;
    }

    .usp-card h3 {
        font-size: 1.125rem;
    }

    .usp-card p {
        font-size: 0.875rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9375rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px;
        min-height: 48px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .footer {
        padding: 3rem 0 0;
    }

    .footer-grid {
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }

    .footer-social svg {
        width: 18px;
        height: 18px;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.875rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}

.filter-btn:focus,
.btn:focus,
.nav-link:focus,
.gallery-item:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    section,
    section > div,
    section > div > div,
    section > div > div > div {
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-grid > div,
    .grid > div {
        min-width: 0;
        max-width: 100%;
    }
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}

.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.form-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message {
    transition: opacity 0.3s ease;
}

.form-message--fade {
    opacity: 0;
}
