:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f5f5f5;
    --color-bg-dark: #0a0a0a;
    --color-text: #1a1a1a;
    --color-text-light: #555555;
    --color-text-muted: #888888;
    --color-accent: #8b2635;
    --color-accent-dark: #6d1f2a;
    --color-accent-light: #a62d3f;
    --accent: #8b2635;
    --color-border: #e0e0e0;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: clip;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hidden { display: none; }
.text-accent { color: var(--color-accent); }
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    z-index: 100;
    transition: transform var(--transition-medium);
}
.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}
.topbar-center-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
}
.topbar-link-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.8125rem;
    font-family: var(--font-body);
    font-weight: 500;
}
.topbar-left {
    display: none;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 640px) {
    .topbar-center-mobile {
        display: none;
    }
    .topbar-left {
        display: flex;
        gap: 2rem;
    }
}
.topbar-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #fff;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
}
@media (min-width: 640px) {
    .topbar-link {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }
}
.topbar-link:hover {
    color: rgba(255,255,255,0.8);
}
.topbar-icon {
    width: 0.875rem;
    height: 0.875rem;
}
.topbar-email { display: none; }
.topbar-right {
    display: none;
    color: rgba(255,255,255,0.9);
    font-size: 0.8125rem;
    font-weight: 500;
}
@media (min-width: 640px) {
    .topbar-email { display: inline; }
}
@media (min-width: 768px) {
    .topbar-right { display: block; }
}
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: #000;
    z-index: 90;
    transition: top var(--transition-medium);
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.navbar-logo img {
    height: 52px;
    width: auto;
}
.navbar-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.08em;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    text-transform: uppercase;
}
.nav-link:hover,
.nav-link.active {
    color: #fff;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-fast);
}
.nav-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1.25rem;
    background: #111;
    border: 1px solid #333;
    border-radius: var(--radius-md);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.75rem;
}
.nav-dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #222;
}
.nav-dropdown-item:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.nav-dropdown-item:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-bottom: none;
}
.nav-dropdown-item:hover {
    background: #1a1a1a;
    color: var(--color-accent);
}
.nav-cta {
    display: none;
    background: var(--color-accent);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
}
.nav-cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}
.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}
.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}
@media (min-width: 1024px) {
    .navbar-menu { display: flex; }
    .nav-cta { display: block; }
    .mobile-menu-btn { display: none; }
}
.mobile-menu {
    background: #111;
    border-top: 1px solid #222;
    padding: 1.5rem;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
}
.mobile-link {
    display: block;
    padding: 0.875rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.01em;
    border-bottom: 1px solid #222;
}
.mobile-link:hover,
.mobile-link.active {
    color: var(--color-accent);
}
.mobile-link-sub {
    padding-left: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}
.mobile-dropdown-label {
    padding: 1rem 0 0.5rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.mobile-cta {
    display: block;
    margin-top: 1.5rem;
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 116px;
    background: #000;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.2) 100%
    );
}
.hero-diagonal {
    display: none;
}
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 8rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    background: rgba(139,38,53,0.85);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 8rem);
    line-height: 0.9;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.hero-title-accent {
    color: #fff;
}
.hero-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--color-accent);
    color: #fff;
}
.btn-icon {
    width: 1rem;
    height: 1rem;
}
.btn-primary {
    background: var(--color-accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}
.btn-outline:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
}
.btn-dark {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}
.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: #000;
}
.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}
.btn-full {
    width: 100%;
}
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 0.95;
}
.section-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: all var(--transition-medium);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
    transform: scale(1.05);
}
.service-image-overlay {
    display: none;
}
.service-content {
    padding: 1.5rem;
}
.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.service-desc {
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
}
.service-link-icon {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform var(--transition-fast);
}
.service-card:hover .service-link-icon {
    transform: translateX(4px);
}
.about {
    padding: 3.5rem 0;
    background: #eae8e4;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
    }
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    box-shadow: var(--shadow-lg);
}
.about-image-accent {
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: 1rem;
    bottom: 1rem;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.about-content .section-label {
    color: var(--color-accent);
}
.about-content .section-title {
    text-align: left;
    color: var(--color-text);
}
.about-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}
.process {
    padding: 3.5rem 0;
    background: #0a0a0a;
}
.process .section-label {
    color: var(--color-accent);
}
.process .section-title {
    color: #fff;
}
.process .section-text {
    color: rgba(255,255,255,0.7);
}
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}
.process-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #111;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.process-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 0.5rem;
}
.process-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
}
.team {
    padding: 3.5rem 0;
    background: #0a0a0a;
}
.team .section-label {
    color: var(--color-accent);
}
.team .section-title {
    color: #fff;
}
.team .section-text {
    color: rgba(255,255,255,0.7);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}
.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.team-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #ddd;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-accent) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}
.team-card:hover .team-overlay {
    opacity: 1;
}
.team-contact {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
}
.team-info {
    padding: 1.25rem 1rem;
    text-align: center;
}
.team-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: #111;
    margin-bottom: 0.125rem;
}
.team-role {
    font-size: 0.75rem;
    color: #666;
}
.cta {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: #0a0a0a;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 1rem;
}
.cta-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.contact {
    padding: 3.5rem 0;
    background: #f4f3f1;
    position: relative;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
    }
}
.contact-cards-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-info-box {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-info-box h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}
.contact-info-box p {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.contact-info-box p:last-child {
    margin-bottom: 0;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #eee;
}
.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.contact-info-item:first-of-type {
    padding-top: 0;
}
.contact-info-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.contact-info-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}
.contact-info-item a,
.contact-info-item span:not(.contact-info-label) {
    font-size: 0.9375rem;
    color: #0a0a0a;
    font-weight: 500;
}
.contact-info-item a:hover {
    color: var(--color-accent);
}
.contact-form-col {
    display: flex;
    flex-direction: column;
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 1.25rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}
.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.8125rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 0.375rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: #111;
    font-family: var(--font-body);
    transition: border-color var(--transition-fast);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #111;
    background-color: #fff;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.map {
    height: 400px;
    background: var(--color-bg-dark);
}
.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(85%);
}
.footer {
    background: var(--color-accent);
    padding: 3rem 0 1.5rem;
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}
.footer-brand {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    height: 45px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    aspect-ratio: auto;
    margin-bottom: 1.25rem;
    background: #000;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
}
.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}
.footer-social:hover {
    background: #000;
    transform: translateY(-2px);
}
.footer-social svg {
    width: 1.125rem;
    height: 1.125rem;
}
.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.625rem;
}
.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-text-small {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.footer-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #fff;
    font-weight: 500;
}
.footer-link-arrow:hover {
    text-decoration: underline;
}
.footer-link-arrow svg {
    width: 1rem;
    height: 1rem;
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}
.usp {
    padding: 3.5rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}
.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .usp-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.usp .section-label { color: var(--color-accent); }
.usp .section-title { color: #fff; }
.usp-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    border: 1px solid rgba(255,255,255,0.08);
}
.usp-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.05);
}
.usp-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.usp-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}
.usp-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}
.usp-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.gallery {
    padding: 3.5rem 0;
    background: #fff;
    position: relative;
}
.gallery .section-label {
    color: var(--color-accent);
}
.gallery .section-title {
    color: #0a0a0a;
}
.gallery .section-text {
    color: rgba(0,0,0,0.7);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}
.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-title {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}
.gallery-cta {
    text-align: center;
    margin-top: 2rem;
}
.gallery-cta .btn-secondary {
    border-color: rgba(0,0,0,0.3);
    color: #0a0a0a;
}
.gallery-cta .btn-secondary:hover {
    background: #0a0a0a;
    color: #fff;
    border-color: #0a0a0a;
}
.instagram-section {
    padding: 3.5rem 0;
    background: #f8f7f5;
}
.instagram-section .section-label {
    color: var(--color-accent);
}
.instagram-section .section-title {
    color: #0a0a0a;
}
.instagram-section .section-text {
    color: rgba(0,0,0,0.7);
}
.instagram-section .section-text a {
    color: var(--color-accent);
    font-weight: 600;
}
.instagram-section .section-text a:hover {
    text-decoration: underline;
}
.testimonials {
    padding: 3.5rem 0;
    background: #f8f7f5;
    position: relative;
}
.testimonials .section-label {
    color: var(--color-accent);
}
.testimonials .section-title {
    color: #0a0a0a;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition-medium);
    border-left: 3px solid transparent;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial-card:hover {
    border-left-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: Georgia, serif;
    font-size: 4rem;
    color: #444;
    line-height: 1;
}
.testimonial-text {
    font-size: 0.9375rem;
    color: rgba(0,0,0,0.75);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
}
.testimonial-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: #0a0a0a;
    margin-bottom: 0.125rem;
}
.testimonial-info span {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.5);
}
.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.testimonial-stars svg {
    width: 1.125rem;
    height: 1.125rem;
    color: #fbbf24;
    fill: #fbbf24;
}
.stats {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.stats-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stats-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.stats .container {
    position: relative;
    z-index: 1;
}
.stats-header {
    margin-bottom: 3rem;
}
.stats-title {
    color: #fff;
}
.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(139,38,53,0.85);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}
@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.stat-item {
    padding: 1.5rem;
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 6rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    display: inline-block;
}
.stat-label::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--color-accent);
}
.services {
    padding: 3.5rem 0;
    background: #f4f4f4;
    position: relative;
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.4s; }
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 767px) {
    .services,
    .about,
    .process,
    .team,
    .contact,
    .usp,
    .gallery,
    .testimonials {
        padding: 3rem 0;
    }
    .cta {
        padding: 3rem 0;
    }
    .about-image-accent {
        display: none;
    }
    .hero-content {
        padding: 2rem 1rem 4rem;
    }
    .footer-logo {
        height: 48px;
    }
    .gallery-grid {
        gap: 0.5rem;
    }
}
@media (min-width: 1024px) {
    .services,
    .about,
    .process,
    .team,
    .contact,
    .usp,
    .gallery,
    .testimonials {
        padding: 5rem 0;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    .gallery-grid {
        gap: 1.5rem;
    }
    .contact-layout {
        gap: 3rem;
    }
}
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox.active .lightbox-img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}
.lightbox-close svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}
.lightbox-nav svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.lightbox-prev {
    left: 1rem;
}
.lightbox-next {
    right: 1rem;
}
.lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-family: var(--font-body);
}
.gallery-item {
    cursor: pointer;
}

.hero-split {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    background: #0a0a0a;
    padding-top: 116px;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr 1fr;
    }
}
.hero-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 10;
    order: 2;
}
@media (min-width: 768px) {
    .hero-split-content {
        padding: 4rem 3rem;
    }
}
@media (min-width: 1024px) {
    .hero-split-content {
        padding: 4rem 4rem 4rem 3rem;
        order: 1;
    }
}
@media (min-width: 1280px) {
    .hero-split-content {
        padding: 5rem 5rem 5rem 4rem;
    }
}
.hero-split-inner {
    max-width: 560px;
    margin-left: auto;
}
.hero-split-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 38, 53, 0.3);
}
.hero-split-badge::before {
    display: none;
}
.hero-split-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.95;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    
    
    
}
.hero-split-title span {
    display: block;
    background: linear-gradient(135deg, var(--accent) 0%, #a62d3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-split-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    
    
    
}
.hero-split-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    margin-bottom: 2.5rem;
    
    
    
}
.hero-split-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}
.hero-split-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}
.hero-split-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    
    
    
}
.hero-split-image {
    position: relative;
    min-height: 50vh;
    order: 1;
}
@media (min-width: 1024px) {
    .hero-split-image {
        min-height: auto;
        order: 2;
    }
}
.hero-split-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-split-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}
@media (min-width: 1024px) {
    .hero-split-image::before {
        background: linear-gradient(to right, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.4) 30%, rgba(10, 10, 10, 0) 60%);
    }
}
.hero-split-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, #6d1f2a 100%);
    z-index: 10;
}
@media (min-width: 1024px) {
    .hero-split-accent {
        top: 50%;
        left: auto;
        right: 0;
        bottom: auto;
        transform: translateY(-50%);
        width: 6px;
        height: 120px;
        background: linear-gradient(180deg, var(--accent) 0%, #6d1f2a 100%);
    }
}
.hero-split-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    
    
    
    z-index: 10;
}
@media (min-width: 1024px) {
    .hero-split-scroll {
        display: flex;
    }
}
.hero-split-scroll span,
.hero-split-scroll svg {
    animation: bounce 2s infinite;
}
.hero-split-scroll svg {
    width: 20px;
    height: 20px;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}
.hero-split-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    
    
    
}
.hero-split-label::before {
    display: none;
}
.hero-split-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 440px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    
    
    
}
.hero-split-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 400px;
    
    
    
}
@media (min-width: 480px) {
    .hero-split-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}
.hero-stat {
    text-align: left;
}
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-geometric-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    opacity: 0.15;
    pointer-events: none;
}
.hero-geometric-pattern svg {
    width: 100%;
    height: 100%;
}
@media (min-width: 768px) {
    .hero-geometric-pattern {
        width: 300px;
        height: 300px;
    }
}
@media (min-width: 1024px) {
    .hero-geometric-pattern {
        width: 400px;
        height: 400px;
        bottom: -50px;
        right: -50px;
    }
}
.hero-floating-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(139,38,53,0.9);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    display: none;
}
@media (min-width: 1024px) {
    .hero-floating-badge {
        display: block;
    }
}
.hero-floating-badge-number {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}
.hero-floating-badge-text {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}
.hero-corner-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-left: 3px solid var(--accent);
    border-top: 3px solid var(--accent);
    opacity: 0.5;
    display: none;
}
@media (min-width: 1024px) {
    .hero-corner-accent {
        display: block;
        width: 150px;
        height: 150px;
    }
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(1.1); }
    to { opacity: 1; transform: scale(1); }
}
.hero-takarbeten {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 116px;
    background: #000;
}
.hero-takarbeten-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-takarbeten-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.hero-takarbeten-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-takarbeten-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    
    
    
}
.hero-takarbeten-accent {
    width: 6px;
    background: var(--accent);
    flex-shrink: 0;
    border-radius: 3px;
}
.hero-takarbeten-box {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 3rem 3rem 2.5rem;
    border-radius: 0 12px 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
}
.hero-takarbeten-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}
.hero-takarbeten-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.95;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.hero-takarbeten-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-takarbeten-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero-takarbeten-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
    .hero-takarbeten {
        min-height: auto;
        padding-bottom: 3rem;
    }
    .hero-takarbeten-content {
        flex-direction: column;
        padding: 2rem 1rem;
    }
    .hero-takarbeten-accent {
        width: 100%;
        height: 4px;
        border-radius: 2px;
    }
    .hero-takarbeten-box {
        border-radius: 0 0 12px 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
        padding: 2rem 1.5rem;
    }
    .hero-takarbeten-stats {
        flex-direction: column;
        gap: 1.25rem;
    }
    .hero-takarbeten-stats .hero-stat {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .hero-takarbeten-stats .hero-stat-number {
        font-size: 2rem;
        min-width: 60px;
    }
}
@keyframes heroBoxFadeIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
.hero-about {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 116px;
    background: #0a0a0a;
}
.hero-about-grid {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 4rem 2rem;
    }
}
.hero-about-content {
    order: 2;
}
@media (min-width: 1024px) {
    .hero-about-content {
        order: 1;
    }
}
.hero-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    
    
    
}
.hero-about-eyebrow::before {
    display: none;
}
.hero-about-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.95;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    
    
    
}
.hero-about-title span {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 0.6em;
}
.hero-about-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
    
    
    
}
.hero-about-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    
    
    
}
.hero-about-stat {
    position: relative;
}
.hero-about-stat::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
.hero-about-stat:last-child::after {
    display: none;
}
.hero-about-stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.hero-about-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    
    
    
}
.hero-about-visual {
    order: 1;
    position: relative;
    
    
    
}
@media (min-width: 1024px) {
    .hero-about-visual {
        order: 2;
    }
}
.hero-about-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.hero-about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,38,53,0.3) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}
.hero-about-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
@media (min-width: 1024px) {
    .hero-about-image-wrapper img {
        aspect-ratio: 3/4;
        max-height: 70vh;
    }
}
.hero-about-accent-box {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 180px;
    height: 180px;
    border: 3px solid var(--accent);
    border-radius: 0.75rem;
    z-index: -1;
    display: none;
}
@media (min-width: 768px) {
    .hero-about-accent-box {
        display: block;
    }
}
.hero-about-floating-card {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    z-index: 10;
    display: none;
}
@media (min-width: 768px) {
    .hero-about-floating-card {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}
@media (min-width: 1024px) {
    .hero-about-floating-card {
        right: -2rem;
    }
}
.hero-about-floating-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-about-floating-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.hero-about-floating-text {
    font-size: 0.875rem;
    color: #111;
}
.hero-about-floating-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--accent);
    letter-spacing: 0.02em;
}
.hero-about-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(139,38,53,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero-about-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: scrollBounce 2s ease-in-out infinite;
}
@media (max-width: 767px) {
    .hero-about-scroll {
        display: none;
    }
}
.hero-about-scroll svg {
    width: 20px;
    height: 20px;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes heroAboutFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding-top: 116px;
    overflow: hidden;
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: grayscale(30%);
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(139, 38, 53, 0.4) 100%);
}
.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 700px;
}
.contact-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(139, 38, 53, 0.5);
    border-radius: 50px;
}
.contact-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: #fff;
    line-height: 0.95;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.contact-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}
.contact-main {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    padding: 5rem 0;
    position: relative;
}
.contact-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 38, 53, 0.5) 50%, transparent 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.4fr;
        gap: 4rem;
        align-items: start;
    }
}
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-info-header {
    margin-bottom: 0.5rem;
}
.contact-info-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}
.contact-info-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.contact-card:hover {
    border-color: rgba(139, 38, 53, 0.4);
    background: rgba(255, 255, 255, 0.05);
}
.contact-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.contact-detail:first-of-type {
    padding-top: 0;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(139, 38, 53, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}
.contact-detail-content {
    flex: 1;
}
.contact-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.375rem;
}
.contact-detail-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}
.contact-detail-value a {
    color: #fff;
    transition: color 0.2s ease;
}
.contact-detail-value a:hover {
    color: var(--accent);
}
.contact-quick-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.contact-quick-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.contact-quick-link:hover {
    background: #6d1f2a;
    transform: translateY(-2px);
}
.contact-quick-link svg {
    width: 18px;
    height: 18px;
}
.contact-form-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #6d1f2a 100%);
}
@media (min-width: 768px) {
    .contact-form-section {
        padding: 3rem;
    }
}
.contact-form-header {
    margin-bottom: 2rem;
}
.contact-form-header h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.contact-form-header p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}
#contact-form {
    max-width: 100%;
    overflow: hidden;
}
#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);
    }
}
.premium-form,
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .form-row-premium {
        grid-template-columns: 1fr 1fr;
    }
}
.form-field {
    position: relative;
}
.form-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-field label .required {
    color: var(--accent);
    margin-left: 0.25rem;
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #fff;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(139, 38, 53, 0.1);
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.15);
}
.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}
.form-field select option {
    background: #1a1a1a;
    color: #fff;
}
.form-field textarea {
    resize: vertical;
    min-height: 140px;
}
.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, #6d1f2a 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}
.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 38, 53, 0.4);
}
.form-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.form-submit-btn:hover svg {
    transform: translateX(4px);
}
.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.g-recaptcha {
    margin-bottom: 1.5rem;
}
.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}
.form-message-success {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.form-message-error {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.contact-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}
.trust-item span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}
.contact-map-section {
    background: #0a0a0a;
    padding: 0;
}
.map-container {
    position: relative;
    height: 450px;
}
.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, #111 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(85%);
}
.map-info-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}
.map-info-overlay svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}
.map-info-text {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
}
@media (max-width: 640px) {
    .contact-hero {
        min-height: 45vh;
    }
    .contact-hero-content {
        padding: 3rem 1.5rem;
    }
    .contact-main {
        padding: 3rem 0;
    }
    .contact-form-section {
        padding: 1.75rem;
        border-radius: 16px;
    }
    .contact-quick-links {
        flex-direction: column;
    }
    .map-info-overlay {
        left: 1rem;
        right: 1rem;
        transform: none;
        justify-content: center;
    }
    .contact-trust {
        justify-content: center;
    }
}
.ref-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 160px 1.5rem 80px;
    position: relative;
    overflow: hidden;
}
.ref-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(139, 38, 53, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(139, 38, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.ref-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    opacity: 0;
    animation: fadeInHero 1s ease forwards;
}
.ref-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}
.ref-hero-label::before,
.ref-hero-label::after {
    display: none;
}
.ref-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    color: #fff;
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}
.ref-hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--accent) 0%, #a62d3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ref-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}
.ref-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ref-stat {
    text-align: center;
}
.ref-stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
}
.ref-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
}
.gallery-premium {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
}
.gallery-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 38, 53, 0.5), transparent);
}
.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}
.gallery-header-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}
.gallery-header-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 1rem;
}
.gallery-header-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}
.masonry-grid {
    column-count: 2;
    column-gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) {
    .masonry-grid {
        column-count: 3;
        column-gap: 1.25rem;
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .masonry-grid {
        column-count: 4;
        column-gap: 1.5rem;
        padding: 0 2rem;
    }
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInMasonry 0.8s ease forwards;
}
@media (min-width: 768px) {
    .masonry-item {
        margin-bottom: 1.25rem;
    }
}
@media (min-width: 1024px) {
    .masonry-item {
        margin-bottom: 1.5rem;
    }
}
.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
}
.masonry-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}
.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
.masonry-item:hover .masonry-overlay {
    opacity: 1;
}
.masonry-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(139, 38, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.masonry-item:hover .masonry-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.masonry-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.masonry-item:nth-child(1) { animation-delay: 0s; }
.masonry-item:nth-child(2) { animation-delay: 0.05s; }
.masonry-item:nth-child(3) { animation-delay: 0.1s; }
.masonry-item:nth-child(4) { animation-delay: 0.15s; }
.masonry-item:nth-child(5) { animation-delay: 0.2s; }
.masonry-item:nth-child(6) { animation-delay: 0.25s; }
.masonry-item:nth-child(7) { animation-delay: 0.3s; }
.masonry-item:nth-child(8) { animation-delay: 0.35s; }
.masonry-item:nth-child(9) { animation-delay: 0.4s; }
.masonry-item:nth-child(10) { animation-delay: 0.45s; }
.masonry-item:nth-child(11) { animation-delay: 0.5s; }
.masonry-item:nth-child(12) { animation-delay: 0.55s; }
.masonry-item:nth-child(13) { animation-delay: 0.6s; }
.masonry-item:nth-child(14) { animation-delay: 0.65s; }
.masonry-item:nth-child(15) { animation-delay: 0.7s; }
.masonry-item:nth-child(16) { animation-delay: 0.75s; }
.masonry-item:nth-child(17) { animation-delay: 0.8s; }
.masonry-item:nth-child(18) { animation-delay: 0.85s; }
.masonry-item:nth-child(19) { animation-delay: 0.9s; }
.masonry-item:nth-child(20) { animation-delay: 0.95s; }
@keyframes fadeInMasonry {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInHero {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.gallery-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gallery-footer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}
.gallery-footer .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.gallery-footer .btn-secondary:hover {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
}
.ref-cta {
    position: relative;
    padding: 8rem 0;
    background: #0a0a0a;
    overflow: hidden;
}
.ref-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 38, 53, 0.5), transparent);
}
.ref-cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}
.ref-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}
.ref-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.ref-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 1rem;
}
.ref-cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.ref-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
@media (max-width: 640px) {
    .ref-stats {
        gap: 2rem;
    }
    .ref-stat-number {
        font-size: 2rem;
    }
    .gallery-premium {
        padding: 3rem 0;
    }
    .gallery-footer {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    .ref-cta {
        padding: 4rem 0;
    }
}
.gallery-premium .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.gallery-premium .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.fb-icon-btn {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

@media (max-width: 640px) {
    .hero-split {
        min-height: auto;
        padding-bottom: 2rem;
    }
    .hero-split-content {
        padding: 2rem 1.25rem;
    }
    .hero-split-inner {
        margin-left: 0;
    }
    .hero-split-badge {
        font-size: 0.625rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    .hero-split-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-split-features {
        gap: 0.75rem 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-split-feature {
        font-size: 0.8125rem;
    }
    .hero-split-image {
        min-height: 35vh;
    }
    .hero-about {
        min-height: auto;
        padding-bottom: 2rem;
    }
    .hero-about-grid {
        padding: 2rem 1.25rem;
        gap: 2rem;
    }
    .hero-about-eyebrow {
        font-size: 0.6875rem;
        margin-bottom: 1rem;
    }
    .hero-about-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-about-stats {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .hero-about-stat-number {
        font-size: 2rem;
    }
    .hero-about-stat-label {
        font-size: 0.6875rem;
    }
    .hero-takarbeten {
        min-height: auto;
        padding-bottom: 2rem;
    }
    .hero-takarbeten-box {
        padding: 1.5rem 1.25rem;
    }
    .hero-takarbeten-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-takarbeten-stats .hero-stat {
        gap: 0.75rem;
    }
    .hero-takarbeten-stats .hero-stat-number {
        font-size: 1.75rem;
        min-width: 50px;
    }
    .ref-hero {
        min-height: auto;
        padding: 130px 1.25rem 3rem;
    }
    .ref-hero-label {
        font-size: 0.6875rem;
        margin-bottom: 1.5rem;
    }
    .ref-hero-subtitle {
        font-size: 1rem;
    }
    .contact-hero {
        min-height: auto;
    }
    .contact-hero-content {
        padding: 2.5rem 1.25rem;
    }
    .contact-hero-label {
        font-size: 0.6875rem;
        padding: 0.375rem 1rem;
        margin-bottom: 1rem;
    }
    .contact-hero-subtitle {
        font-size: 1rem;
    }
}
