/* ===== CSS Variables ===== */
:root {
    --bg-color: #f5f3f0;
    --text-color: #1a1a1a;
    --text-muted: #666666;
    --accent-color: #e8e4df;
}

/* ===== Intro/Opening Screen ===== */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: introFadeOut 0.8s ease-in-out 3s forwards;
}

.intro-content {
    text-align: center;
    animation: introContentIn 1s ease-out 0.3s both;
}

.intro-sparkle {
    display: block;
    font-size: 1.5rem;
    color: #3a3a3a;
    margin-bottom: 1rem;
    animation: sparkleRotate 2s ease-in-out infinite;
}

.intro-sparkle-2 {
    margin-top: 1.5rem;
    margin-bottom: 0;
    animation-delay: 0.5s;
}

.intro-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.intro-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: #6a6a6a;
    margin-bottom: 1.5rem;
}

.intro-line {
    width: 60px;
    height: 1px;
    background: #aaa;
    margin: 0 auto 1.5rem;
    animation: lineExpand 1s ease-out 0.8s both;
}

.intro-welcome {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
}

/* Intro Animations */
@keyframes introFadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@keyframes introContentIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sparkleRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

@keyframes lineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 60px;
    }
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* ===== Portfolio Layout ===== */
.portfolio {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===== Name ===== */
.name {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 3;
}

/* ===== Photo ===== */
.photo-wrapper {
    position: relative;
    margin-bottom: 2rem;
    margin-top: -1rem;
}

.photo-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-42%, -48%);
    width: 420px;
    height: 340px;
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(220,220,215,0.5) 50%, rgba(200,200,195,0.3) 100%);
    border-radius: 10px;
    z-index: 1;
    box-shadow: 
        inset 20px 20px 60px rgba(255,255,255,0.4),
        inset -5px -5px 30px rgba(180,180,175,0.2);
}

.photo {
    position: relative;
    z-index: 2;
    width: 380px;
    height: 320px;
    overflow: hidden;
    border: none;
    outline: none;
}

.photo img {
    width: 102%;
    height: 102%;
    margin: -1%;
    object-fit: cover;
    object-position: center 15%;
    border: none;
    outline: none;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #d4d0cb 0%, #bfb9b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder::after {
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

/* ===== Portfolio Title ===== */
.title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* ===== Tagline ===== */
.tagline {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--text-color);
    color: var(--text-color);
    transition: all 0.2s ease;
}

.social-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.social-link-filled {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.social-link-filled:hover {
    background-color: #333;
    border-color: #333;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .photo-background {
        width: 350px;
        height: 280px;
    }

    .photo {
        width: 320px;
        height: 260px;
    }
}

@media (max-width: 600px) {
    .portfolio {
        padding: 2rem 1rem;
    }

    .name {
        margin-bottom: 0.5rem;
    }

    .photo-background {
        width: 300px;
        height: 240px;
    }

    .photo {
        width: 270px;
        height: 220px;
    }

    .title {
        letter-spacing: 0.1em;
    }

    .tagline {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

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

@media (max-width: 400px) {
    .photo-background {
        width: 260px;
        height: 210px;
    }

    .photo {
        width: 230px;
        height: 190px;
    }
}

/* ===== Reviews Section ===== */
.reviews-section {
    min-height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
}

.reviews-section .container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 3.5rem;
    width: 100%;
    text-align: center;
}

/* Section Divider - moved inside container */
.reviews-section .section-divider {
    margin-top: 3.5rem;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 8rem;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}

/* Reviews Column */
.reviews-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
}

.reviewer-name {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.stars {
    color: #1a1a1a;
    letter-spacing: 1px;
}

.rating {
    font-weight: 600;
    color: var(--text-color);
}

.time {
    color: var(--text-muted);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Video Column */
.video-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 70vh;
    background: linear-gradient(145deg, #e8dfd4 0%, #d4c9bc 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.video-placeholder span {
    font-size: 0.875rem;
    font-weight: 500;
}

.reviews-media {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Section Divider */
.section-divider {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 3rem auto 0;
}

.section-divider.divider-top {
    margin: 0 auto 3rem;
}

.portfolio .section-divider {
    margin-top: 4rem;
}

/* Reviews Responsive */
@media (max-width: 1100px) {
    .reviews-content {
        gap: 5rem;
    }
}

@media (max-width: 900px) {
    .reviews-content {
        gap: 3rem;
    }

    .video-wrapper {
        max-width: 260px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        min-height: auto;
        padding: 4rem 1rem;
    }

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

    .video-column {
        order: -1;
    }

    .video-wrapper {
        max-width: 240px;
    }

    .video-placeholder {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 3rem 1rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .video-wrapper {
        max-width: 200px;
    }
}

/* ===== Meet Section ===== */
.meet-section {
    min-height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
}

.meet-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.meet-section .section-title {
    text-align: left;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 3rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.meet-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    width: 100%;
    max-width: 1100px;
    align-items: center;
}

/* Left Side - Photo and Stats */
.meet-left {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.meet-photo {
    width: 300px;
    height: 400px;
    flex-shrink: 0;
}

.meet-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #d4d0cb 0%, #bfb9b2 100%);
    border-radius: 16px;
}

.meet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.stats-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    margin-left: -60px;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-row:last-child {
    border-bottom: none;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
}

.stat-icon {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Right Side - Bio and Analytics */
.meet-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.bio-text p {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.social-stats {
    list-style: disc;
    padding-left: 1.75rem;
}

.social-stats li {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.social-stats a {
    color: #2aa198;
    text-decoration: underline;
}

.social-stats a:hover {
    opacity: 0.8;
}

/* Analytics Section */
.analytics-section {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1rem;
}

.analytics-label {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
}

.analytics-label span:last-child {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.analytics-arrow {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.analytics-card {
    background: white;
    padding: 1.25rem 2rem;
    border-radius: 14px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    min-width: 320px;
}

.analytics-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.analytics-row:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 0.25rem;
}

.analytics-row span:first-child {
    font-size: 1.05rem;
    color: var(--text-color);
}

.analytics-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.analytics-value .value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.analytics-value .change {
    font-size: 0.9rem;
    font-weight: 500;
}

.analytics-value .change.positive {
    color: #10b981;
}

/* Meet Section Responsive */
@media (max-width: 1024px) {
    .meet-content {
        gap: 3rem;
    }

    .meet-photo {
        width: 260px;
        height: 350px;
    }

    .bio-text p {
        font-size: 1.2rem;
    }

    .social-stats li {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .meet-section {
        min-height: auto;
        padding: 4rem 1rem;
    }

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

    .meet-left {
        justify-content: center;
    }

    .meet-photo {
        width: 220px;
        height: 300px;
    }

    .meet-section .section-title {
        text-align: center;
    }

    .bio-text p {
        text-align: center;
    }

    .social-stats {
        text-align: left;
        display: inline-block;
    }

    .analytics-section {
        flex-wrap: wrap;
        justify-content: center;
    }

    .analytics-card {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .meet-photo {
        width: 180px;
        height: 250px;
    }

    .stats-card {
        margin-left: -40px;
        padding: 1rem;
    }

    .stat-item {
        min-width: 45px;
    }

    .stat-value {
        font-size: 0.85rem;
    }

    .bio-text p {
        font-size: 1.1rem;
    }

    .social-stats li {
        font-size: 1rem;
    }

    .analytics-card {
        min-width: 240px;
        padding: 1rem 1.25rem;
    }

    .analytics-row span:first-child {
        font-size: 0.95rem;
    }

    .analytics-value .value {
        font-size: 1.1rem;
    }
}

/* ===== Video Showcase Section ===== */
.showcase-section {
    min-height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
}

.showcase-section .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.showcase-title-area {
    position: relative;
}

.sparkle {
    position: absolute;
    top: -10px;
    left: -30px;
    font-size: 1.5rem;
    color: #c9a87c;
}

.showcase-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    font-style: italic;
    color: #5a4a3b;
    margin-bottom: 0.75rem;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.showcase-stats-box {
    background: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.showcase-stats-box p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.showcase-stats-box .highlight {
    color: #2aa198;
    text-decoration: underline;
    font-weight: 500;
}

/* Video Grid */
.video-showcase-grid {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 1rem;
}

.showcase-video {
    position: relative;
    width: 220px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
}

.showcase-video-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    background: linear-gradient(180deg, #3d3d3d 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.showcase-img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 24px;
}

.placeholder-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* To add your video, replace the placeholder div with:
   <video src="your-video.mp4" autoplay muted loop playsinline></video>
   or
   <img src="your-thumbnail.jpg" alt="Video thumbnail">
*/
.showcase-video video,
.showcase-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-views {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Showcase Responsive */
@media (max-width: 1200px) {
    .showcase-video {
        width: 190px;
    }

    .video-showcase-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 1050px) {
    .showcase-video {
        width: 170px;
    }

    .video-showcase-grid {
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .showcase-video {
        width: 150px;
    }

    .video-showcase-grid {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .video-showcase-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .showcase-video {
        width: 140px;
        border-radius: 18px;
    }
}

@media (max-width: 600px) {
    .showcase-section {
        min-height: auto;
        padding: 4rem 1rem;
    }

    .showcase-video {
        width: 120px;
        border-radius: 16px;
    }

    .video-showcase-grid {
        gap: 0.75rem;
    }

    .showcase-title {
        font-size: 1.75rem;
    }

    .sparkle {
        left: -20px;
        font-size: 1.2rem;
    }

    .showcase-stats-box {
        padding: 1rem 1.5rem;
    }

    .showcase-stats-box p {
        font-size: 1rem;
    }

    .video-views {
        font-size: 0.85rem;
        bottom: 10px;
        left: 10px;
    }
}

/* ===== Contact / Work With Me Section ===== */
.contact-section {
    min-height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
}

.contact-section .container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

/* Left Side */
.contact-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-left .sparkle-top {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 1.5rem;
    color: #2a2a2a;
}

.contact-left .sparkle-top-right {
    position: absolute;
    top: -25px;
    left: 50%;
    font-size: 2rem;
    color: #2a2a2a;
}

.contact-left .sparkle-bottom {
    position: absolute;
    bottom: -15px;
    left: 30px;
    font-size: 1.25rem;
    color: #2a2a2a;
}

.process-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: -2rem;
    margin-left: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.process-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: #3d3d3d;
    text-align: center;
}

.process-list {
    list-style: none;
}

.process-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.875rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #3d3d3d;
    text-align: center;
}

.process-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    font-size: 0.5rem;
    top: 0.4rem;
}

.process-step {
    font-weight: 600;
}

.contact-photo {
    width: 300px;
    height: 320px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #d8d4cf 0%, #c5c0b8 100%);
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Middle/Right Side */
.contact-right {
    position: relative;
    padding-left: 2rem;
}

.contact-text {
    margin-bottom: 2.5rem;
}

.work-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 400;
    font-style: italic;
    color: #5d4d3d;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.work-subtitle {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-style: italic;
    color: #7d6d5d;
    font-weight: 400;
}

.cta-area {
    margin-bottom: 0;
    margin-top: 2rem;
}

.click-below {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-cta {
    display: inline-block;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #5a4a3a;
    text-decoration: none;
    border-bottom: 4px solid #5a4a3a;
    padding-bottom: 0.2rem;
    transition: all 0.2s ease;
}

.contact-cta:hover {
    color: #4a3a2a;
    border-color: #4a3a2a;
    opacity: 1;
}

/* Contact Social Links - Far Right */
.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: center;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    transition: all 0.2s ease;
}

.contact-social-link:hover {
    background: var(--text-color);
    color: var(--bg-color);
    opacity: 1;
}

.contact-socials .sparkle-social {
    font-size: 1.25rem;
    color: #2a2a2a;
    text-align: center;
    margin-top: 1rem;
}

.contact-socials .sparkle-social-2 {
    font-size: 1.75rem;
    color: #2a2a2a;
    margin-top: 0.5rem;
}

/* Contact Responsive */
@media (max-width: 1100px) {
    .contact-content {
        gap: 2rem;
    }

    .contact-photo {
        width: 260px;
        height: 280px;
    }

    .process-card {
        max-width: 380px;
    }
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: auto 1fr;
        gap: 2rem;
    }

    .contact-socials {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .contact-right {
        padding-right: 80px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        min-height: auto;
        padding: 4rem 1rem;
    }

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

    .contact-left {
        align-items: center;
    }

    .contact-photo {
        width: 240px;
        height: 260px;
    }

    .process-card {
        max-width: 380px;
        margin-left: 0;
        margin-bottom: -1.5rem;
    }

    .contact-right {
        text-align: center;
        padding-right: 0;
        padding-left: 0;
    }

    .contact-socials {
        position: relative;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }

    .contact-socials .sparkle-social {
        margin-top: 0;
        margin-left: 0.5rem;
    }
}

@media (max-width: 480px) {
    .work-title {
        font-size: 2.5rem;
    }

    .contact-cta {
        font-size: 1.75rem;
    }

    .contact-photo {
        width: 200px;
        height: 220px;
    }

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

    .process-title {
        font-size: 1.5rem;
    }

    .process-list li {
        font-size: 0.85rem;
    }

    .contact-social-link {
        width: 42px;
        height: 42px;
    }
}
