/* =============================================
   CREATIVA DESIGN — Miami Event Photography
   Dark minimal photography portfolio style
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;600;700&family=Cormorant+Garamond:wght@300;400;600&family=Roboto:wght@300;400;500&display=swap');

/* ---- GLOBAL OVERRIDES ---- */
:root {
    --cr-black:       #000000;
    --cr-dark:        #101828;
    --cr-footer:      #2b2b2b;
    --cr-medium:      #475467;
    --cr-light:       #F9FAFB;
    --cr-white:       #ffffff;
    --cr-accent:      #D4455C;
    --cr-gold:        #F4A535;
    --cr-header-h:    70px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--cr-white);
    color: var(--cr-medium);
}

/* ---- HEADER ---- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--cr-header-h);
    background: var(--cr-black);
    z-index: 1000;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
}

.header .container {
    height: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.header .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--cr-white);
    letter-spacing: 0.03em;
}

/* Nav */
.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.25s;
}

.nav-menu a:hover,
.nav-menu .current > a {
    color: var(--cr-white);
}

/* Dropdown */
.nav-menu .dropdown { position: relative; }
.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background: var(--cr-black);
    min-width: 200px;
    padding: 8px 0;
    list-style: none;
    border-top: 2px solid var(--cr-accent);
    z-index: 200;
}
.nav-menu .dropdown:hover .dropdown-menu { display: block; }
.nav-menu .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 0.75rem;
    color: #999;
    white-space: nowrap;
}
.nav-menu .dropdown-menu li a:hover { color: var(--cr-white); background: #111; }

/* CTA button */
.header-cta {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--cr-accent);
    color: var(--cr-white) !important;
    padding: 10px 22px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}
.header-cta:hover {
    background: #b8374d;
    transform: translateY(-1px);
    color: var(--cr-white) !important;
}

/* lang switcher */
.lang-switcher {
    display: flex;
    gap: 6px;
}
.lang-switcher a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.lang-switcher a.active,
.lang-switcher a:hover { color: var(--cr-white); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cr-white);
    transition: all 0.3s;
}

/* ---- HERO SLIDER ---- */
.cr-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.cr-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.cr-hero-slide.active { opacity: 1; z-index: 2; }

.cr-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 3;
}

.cr-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    text-align: center;
    padding: 0 30px;
}

.cr-hero-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.cr-hero-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.05;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cr-white);
    margin-bottom: 0;
}

.cr-hero-title span {
    color: #999999;
    display: block;
}

.cr-hero-sub {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 22px;
    margin-bottom: 36px;
}

.cr-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.cr-hero-btns .btn-cr-primary {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--cr-accent);
    color: var(--cr-white);
    padding: 14px 36px;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.25s;
}
.cr-hero-btns .btn-cr-primary:hover { background: #b8374d; transform: translateY(-2px); }

.cr-hero-btns .btn-cr-outline {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    color: var(--cr-white);
    padding: 14px 36px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.25s;
}
.cr-hero-btns .btn-cr-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Slider nav dots */
.cr-hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.cr-hero-dot {
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}
.cr-hero-dot.active { background: var(--cr-white); transform: scale(1.4); }

/* Scroll indicator */
.cr-scroll-arrow {
    position: absolute;
    bottom: 32px;
    right: 40px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    animation: cr-bounce 2s infinite;
}
.cr-scroll-arrow svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.5); }
@keyframes cr-bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ---- SECTION COMMONS ---- */
.cr-section {
    padding: 90px 0;
}
.cr-section-dark {
    background: var(--cr-dark);
}
.cr-section-gray {
    background: var(--cr-light);
}
.cr-section-black {
    background: var(--cr-black);
}

.cr-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cr-accent);
    margin-bottom: 12px;
}

.cr-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: var(--cr-dark);
    margin-bottom: 18px;
}

.cr-heading-white {
    color: var(--cr-white);
}

.cr-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--cr-medium);
    line-height: 1.7;
    max-width: 560px;
}

.cr-sub-white {
    color: rgba(255,255,255,0.65);
}

/* ---- SERVICES SECTION ---- */
.cr-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
}

.cr-service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.cr-service-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.75);
}

.cr-service-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.6);
}

.cr-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    transition: background 0.4s;
}
.cr-service-card:hover .cr-service-card-overlay {
    background: linear-gradient(to top, rgba(212,69,92,0.6) 0%, rgba(0,0,0,0.4) 100%);
}

.cr-service-card-body {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.cr-service-card-body h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cr-white);
    margin: 0 0 6px;
}

.cr-service-card-body p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.5;
}

.cr-service-card-body .cr-card-line {
    display: block;
    width: 0;
    height: 2px;
    background: var(--cr-accent);
    margin-bottom: 10px;
    transition: width 0.4s ease;
}
.cr-service-card:hover .cr-card-line { width: 40px; }

/* ---- ALTERNATING FEATURE ROWS ---- */
.cr-features-section {
    padding: 0;
}
.cr-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}
.cr-feature-row.reverse { direction: rtl; }
.cr-feature-row.reverse > * { direction: ltr; }

.cr-feature-img {
    overflow: hidden;
}
.cr-feature-img img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.cr-feature-img:hover img { transform: scale(1.04); }

.cr-feature-text {
    background: var(--cr-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.cr-feature-text.light {
    background: var(--cr-light);
}

.cr-feature-text.light .cr-heading { color: var(--cr-dark); }
.cr-feature-text.light .cr-sub { color: var(--cr-medium); }

.cr-feature-text .cr-heading { color: var(--cr-white); margin-bottom: 16px; }
.cr-feature-text .cr-sub { color: rgba(255,255,255,0.65); max-width: 440px; }

.cr-feature-text .cr-divider {
    width: 50px;
    height: 2px;
    background: var(--cr-accent);
    margin: 20px 0;
}

.cr-feature-text .btn-cr-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cr-accent);
    text-decoration: none;
    transition: gap 0.3s;
}
.cr-feature-text .btn-cr-text:hover { gap: 14px; }
.cr-feature-text .btn-cr-text svg { width: 16px; height: 16px; fill: var(--cr-accent); }
.cr-feature-text.light .btn-cr-text { color: var(--cr-accent); }

/* ---- STATS / COUNTER SECTION ---- */
.cr-stats {
    background: var(--cr-black);
    padding: 70px 0;
}
.cr-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.cr-stat-item {
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.cr-stat-item:last-child { border-right: none; }

.cr-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--cr-white);
    line-height: 1;
    margin-bottom: 8px;
}
.cr-stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* ---- PORTFOLIO GRID ---- */
.cr-portfolio-section {
    padding: 90px 0;
    background: var(--cr-white);
}

.cr-portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.cr-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.cr-portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
}
.cr-portfolio-item:nth-child(1) { grid-column: span 2; }
.cr-portfolio-item:nth-child(4) { grid-column: span 2; }

.cr-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.8);
}
.cr-portfolio-item:hover img { transform: scale(1.07); filter: brightness(0.6); }

.cr-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s;
}
.cr-portfolio-item:hover .cr-portfolio-overlay {
    background: rgba(212,69,92,0.35);
}
.cr-portfolio-overlay span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cr-white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
}
.cr-portfolio-item:hover .cr-portfolio-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* ---- QUOTE BANNER ---- */
.cr-quote-banner {
    background: var(--cr-dark);
    padding: 80px 0;
    text-align: center;
}
.cr-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--cr-white);
    font-style: italic;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 16px;
}
.cr-quote-author {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cr-accent);
}

/* ---- VIDEO SECTION ---- */
.cr-video-section {
    padding: 90px 0;
    background: var(--cr-black);
}
.cr-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.cr-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---- CLIENTS ---- */
.cr-clients-section {
    padding: 70px 0;
    background: var(--cr-light);
}
.cr-clients-section .cr-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.cr-clients-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    filter: grayscale(1) opacity(0.5);
    transition: filter 0.3s;
}
.cr-clients-img:hover { filter: grayscale(0.5) opacity(0.8); }

/* ---- CONTACT SECTION ---- */
.cr-contact-section {
    padding: 90px 0;
    background: var(--cr-white);
}
.cr-contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}
.cr-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--cr-dark);
    margin-bottom: 30px;
}
.cr-form .form-group {
    margin-bottom: 20px;
}
.cr-form label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cr-dark);
    margin-bottom: 8px;
}
.cr-form input,
.cr-form select,
.cr-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    background: var(--cr-white);
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: var(--cr-dark);
    border-radius: 2px;
    transition: border-color 0.25s;
    outline: none;
}
.cr-form input:focus,
.cr-form select:focus,
.cr-form textarea:focus { border-color: var(--cr-accent); }
.cr-form textarea { min-height: 130px; resize: vertical; }
.cr-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-cr-submit {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--cr-accent);
    color: var(--cr-white);
    padding: 14px 42px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
}
.btn-cr-submit:hover { background: #b8374d; transform: translateY(-2px); }

.cr-contact-info {
    padding-top: 20px;
}
.cr-contact-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--cr-dark);
    margin-bottom: 24px;
}
.cr-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}
.cr-contact-info-item:last-child { border-bottom: none; }
.cr-info-icon {
    width: 40px; height: 40px;
    background: var(--cr-accent);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cr-info-icon svg { width: 18px; height: 18px; fill: var(--cr-white); }
.cr-info-text h5 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cr-dark);
    margin-bottom: 4px;
}
.cr-info-text p, .cr-info-text a {
    font-size: 0.9rem;
    color: var(--cr-medium);
    text-decoration: none;
    margin: 0;
    line-height: 1.5;
}
.cr-info-text a:hover { color: var(--cr-accent); }

/* ---- FOOTER ---- */
.footer {
    background: var(--cr-footer);
    padding: 70px 0 0;
    margin-top: 0;
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer .footer-brand .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--cr-white);
}

.footer .footer-brand p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: 14px;
}

.footer .footer-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cr-white);
    margin-bottom: 20px;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-links li {
    margin-bottom: 10px;
}
.footer .footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer .footer-links a:hover { color: var(--cr-white); }
.footer .footer-links li:not(:has(a)) {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s;
}
.footer-social a:hover { background: var(--cr-accent); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }

.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
}
.footer .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.05em;
}

/* ---- PAGE HERO (internal pages) ---- */
.cr-page-hero {
    height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: var(--cr-header-h);
}
.cr-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
}
.cr-page-hero-content {
    position: relative;
    z-index: 2;
}
.cr-page-hero-content .cr-label { color: var(--cr-gold); }
.cr-page-hero-content .cr-heading {
    color: var(--cr-white);
    font-size: clamp(2rem, 5vw, 3.5rem);
}
.cr-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.cr-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.cr-breadcrumb a:hover { color: var(--cr-white); }
.cr-breadcrumb span { color: rgba(255,255,255,0.3); }
.cr-breadcrumb .current { color: var(--cr-gold); }

/* ---- BLOG GRID ---- */
.cr-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.cr-blog-card {
    background: var(--cr-white);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s, transform 0.3s;
    display: block;
    text-decoration: none;
}
.cr-blog-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.cr-blog-card-img {
    overflow: hidden;
    height: 220px;
}
.cr-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.cr-blog-card:hover .cr-blog-card-img img { transform: scale(1.05); }
.cr-blog-card-body {
    padding: 24px;
}
.cr-blog-card-cat {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cr-accent);
    margin-bottom: 8px;
    display: block;
}
.cr-blog-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--cr-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}
.cr-blog-card-body p {
    font-size: 0.875rem;
    color: var(--cr-medium);
    line-height: 1.6;
    margin: 0;
}

/* ---- SERVICES SUBPAGE ---- */
.cr-service-alternating {
    padding: 0;
}
.cr-service-alt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}
.cr-service-alt-img {
    overflow: hidden;
}
.cr-service-alt-img img {
    width: 100%; height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}
.cr-service-alt-img:hover img { transform: scale(1.04); }
.cr-service-alt-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background: var(--cr-light);
}
.cr-service-alt-text .cr-heading { color: var(--cr-dark); font-size: 2rem; }
.cr-service-alt-text .cr-sub { color: var(--cr-medium); }
.cr-service-alt-row.dark-text-bg .cr-service-alt-text { background: var(--cr-dark); }
.cr-service-alt-row.dark-text-bg .cr-heading { color: var(--cr-white); }
.cr-service-alt-row.dark-text-bg .cr-sub { color: rgba(255,255,255,0.65); }

/* ---- PROPOSAL MODAL ---- */
.proposal-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.proposal-modal.open {
    display: flex;
}
.proposal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}
.proposal-modal-content {
    position: relative;
    background: var(--cr-white);
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 2px;
    z-index: 1;
}
.proposal-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
}
.proposal-modal-close svg { width: 20px; height: 20px; fill: var(--cr-medium); }
.proposal-modal-body {
    padding: 40px;
}
.proposal-modal-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--cr-dark);
    margin-bottom: 8px;
}
.proposal-modal-body > p {
    font-size: 0.9rem;
    color: var(--cr-medium);
    margin-bottom: 24px;
}
.proposal-modal-body .form-group { margin-bottom: 16px; }
.proposal-modal-body label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cr-dark);
    margin-bottom: 6px;
}
.proposal-modal-body input,
.proposal-modal-body select,
.proposal-modal-body textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    background: var(--cr-white);
    font-size: 0.875rem;
    color: var(--cr-dark);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.25s;
}
.proposal-modal-body input:focus,
.proposal-modal-body select:focus,
.proposal-modal-body textarea:focus { border-color: var(--cr-accent); }
.proposal-modal-body textarea { min-height: 100px; resize: vertical; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .cr-services-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-contact-grid { grid-template-columns: 1fr; }
    .cr-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-portfolio-item:nth-child(1),
    .cr-portfolio-item:nth-child(4) { grid-column: span 1; }
    .cr-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-main { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cr-black); flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 999; }
    .nav-main.open { display: flex; }
    .nav-menu { flex-direction: column; align-items: center; gap: 20px; }
    .nav-menu a { font-size: 1rem; letter-spacing: 0.15em; color: var(--cr-white); }
    .hamburger { display: flex; }

    .cr-feature-row,
    .cr-service-alt-row { grid-template-columns: 1fr; }
    .cr-feature-row.reverse { direction: ltr; }
    .cr-feature-img img,
    .cr-service-alt-img img { min-height: 280px; height: 280px; }
    .cr-feature-text,
    .cr-service-alt-text { padding: 40px 24px; }

    .cr-services-grid { grid-template-columns: 1fr; }
    .cr-service-card img { height: 280px; }
    .cr-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-contact-grid { grid-template-columns: 1fr; }
    .cr-form .form-row { grid-template-columns: 1fr; }
    .cr-portfolio-grid { grid-template-columns: 1fr 1fr; }
    .cr-portfolio-item:nth-child(1),
    .cr-portfolio-item:nth-child(4) { grid-column: span 2; }
    .cr-blog-grid { grid-template-columns: 1fr; }

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

    .cr-page-hero { height: 280px; }
}

@media (max-width: 480px) {
    .cr-stats-grid { grid-template-columns: 1fr 1fr; }
    .cr-portfolio-grid { grid-template-columns: 1fr; }
    .cr-portfolio-item:nth-child(1),
    .cr-portfolio-item:nth-child(4) { grid-column: span 1; }
    .cr-hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .cr-hero-btns { flex-direction: column; align-items: center; }
}
