/*
 * Akari Weddings - Exact Match CSS
 * Replicating akariweddings.com design
 */

/* ========================================
   Google Fonts - Matching original
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Albert+Sans:wght@300;400;500;600&display=swap');

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Albert Sans', Helvetica, Arial, sans-serif;

    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-cream: #FEFDF6;
    --color-gray-dark: #424242;
    --color-gray: #666666;
    --color-gray-light: #f5f5f5;

    --transition-fast: 0.3s ease;
    --transition-slow: 0.7s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

/* ========================================
   Header - Fixed Transparent (2026 Minimalist)
   ======================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 80px;
    background: transparent;
}

.header.scrolled {
    background: transparent;
    box-shadow: none;
}

/* Header always visible - removed hidden state */

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-white);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
}

/* Animated underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.nav-flag {
    width: 22px;
    height: auto;
    border-radius: 2px;
}

.header.scrolled .nav-link {
    color: var(--color-white);
}

.nav-link:hover {
    opacity: 1;
}

.nav-link.active {
    font-weight: 500;
}

/* Dark nav for pages with light backgrounds (contact page) */
.contact-page .nav-link,
.contacto-page .nav-link {
    color: var(--color-black);
}

.contact-page .nav-toggle span,
.contacto-page .nav-toggle span {
    background: var(--color-black);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-switch img {
    width: 16px;
    height: 11px;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-cream);
    transition: all var(--transition-fast);
}

.header.scrolled .nav-toggle span {
    background: var(--color-black);
}

/* ========================================
   Hero Section - Full Screen Video
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    padding: 20px;
    margin-top: 80px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 0 0.3em rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--color-white);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 24px;
    display: block;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Section Titles
   ======================================== */
.section-title-block {
    padding: 80px 0 40px;
    text-align: center;
    background: var(--color-white);
}

.main-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 6px;
    line-height: 2em;
    color: var(--color-black);
    margin: 0;
}

/* ========================================
   Wedding Gallery - Divi-matching responsive styles
   ======================================== */
.wedding-gallery {
    background: var(--color-white);
    padding: 0 0 80px;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-link {
    display: block;
    cursor: pointer;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 1s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background var(--transition-slow);
}

.gallery-title {
    font-family: 'Cardo', serif;
    font-size: 20px;
    font-weight: 400;
    color: transparent;
    transition: color var(--transition-slow);
    text-align: center;
    padding: 15px 10px;
    width: 90%;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-title {
    color: var(--color-white);
}

.about-section {
    background-image: url('/assets/images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.about-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.about-heading {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 40px;
}

.about-text {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

/* ========================================
   Carousel Section
   ======================================== */
.carousel-section {
    background: var(--color-white);
    padding: 60px 0;
    overflow: hidden;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 380px;
    height: auto;
    border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    background: var(--color-white);
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    line-height: 1.4em;
    margin-bottom: 15px;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 2em;
}

.service-icon {
    font-size: 29px;
    color: #262626;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: var(--color-black);
    color: var(--color-white);
    padding: 100px 0;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-left: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: border-color var(--transition-fast);
}

.contact-section .form-group input,
.contact-section .form-group textarea {
    border-bottom-color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #c9a87c;
}

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

.btn-submit {
    align-self: flex-end;
    padding: 20px 24px;
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-submit:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-gray-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-col h5 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: var(--color-gray-dark);
}

.footer-col a:hover {
    color: var(--color-black);
}

.footer-social {
    text-align: center;
    margin-bottom: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-3px);
    background: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--color-gray);
}

/* ========================================
   About Page Styles
   ======================================== */
.page-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/images/about-hero-bw.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: normal;
}

.about-page-section {
    padding: 100px 0;
    background: var(--color-white);
}

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

.about-image .image-frame {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content .about-text-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.about-content .about-text-content p {
    margin-bottom: 20px;
}

.about-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: normal;
    color: #c9a87c;
    margin: 30px 0 20px;
}

.about-cta {
    font-style: normal;
    color: var(--color-gray);
}

/* ========================================
   404 Page
   ======================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
    text-align: center;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 400;
    color: #c9a87c;
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.error-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #c9a87c;
    color: var(--color-black);
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary:hover {
    background: #b8976b;
}

/* ========================================
   Video Lightbox
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

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

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-video,
.lightbox-iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 980px) {
    .about-section {
        padding: 130px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .service-item {
        padding-bottom: 30px;
    }

    .service-center {
        display: none;
    }

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

    .gallery-overlay {
        background: rgba(0, 0, 0, 0.3);
    }

    /* Tablet gallery - Divi matching */
    .wedding-gallery {
        width: 90%;
        padding: 0 0 60px;
    }

    .gallery-grid {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #f2f2f2;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right var(--transition-fast);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        font-size: 18px;
        color: var(--color-black);
    }

    .nav-toggle {
        display: flex;
        z-index: 10001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        padding: 60% 20px;
    }

    /* Phone gallery - Divi matching */
    .wedding-gallery {
        width: 95%;
        padding: 0 0 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-section {
        padding: 50px 0;
        background-attachment: scroll;
    }

    .about-tagline {
        font-size: 16px;
    }

    .about-text {
        font-size: 16px;
    }

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

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

/* ========================================
   Notification Toast
   ======================================== */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    background: #c9a87c;
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

.notification--error {
    background: #dc3545;
    color: #fff;
}

.notification__close {
    background: none;
    border: none;
    color: inherit;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========================================
   Utility
   ======================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   Contact Page - Animated Design
   ======================================== */

/* Hero with Ken Burns zoom */
.contact-hero-animated {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: kenBurns 20s ease infinite alternate;
}

.hero-bg-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content-animated {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-title-typewriter {
    font-family: var(--font-body);
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--color-white);
}

.typewriter-cursor {
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Our Story Section */
.our-story-section {
    padding: 120px 0;
    background: var(--color-white);
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.story-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-gray);
    display: block;
    margin-bottom: 20px;
}

.story-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 60px;
}

.story-title .ampersand {
    font-style: normal;
    color: var(--color-gray);
}

.story-block {
    margin-bottom: 50px;
}

.story-text-large {
    font-family: var(--font-body);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-black);
}

.story-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 50px 0;
}

.story-contrast {
    text-align: center;
}

.contrast-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.contrast-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
}

.contrast-icon {
    font-size: 40px;
    color: var(--color-black);
}

.story-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 15px;
}

.story-content em {
    font-family: var(--font-heading);
    font-style: normal;
    font-size: 20px;
    color: var(--color-black);
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: var(--color-cream);
}

.why-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.why-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 30px;
}

.why-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

.love-word {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.love-letter {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 400;
    color: var(--color-black);
    animation: lovePulse 2s ease infinite;
}

.love-letter:nth-child(1) {
    animation-delay: 0s;
}

.love-letter:nth-child(2) {
    animation-delay: 0.1s;
}

.love-letter:nth-child(3) {
    animation-delay: 0.2s;
}

.love-letter:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes lovePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--color-white);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-form-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 15px;
}

.contact-form-header p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-gray);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-form-animated .form-field {
    margin-bottom: 25px;
}

.contact-form-animated input,
.contact-form-animated textarea {
    width: 100%;
    padding: 20px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-black);
    background: var(--color-gray-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form-animated input:focus,
.contact-form-animated textarea:focus {
    background: var(--color-white);
    border-color: var(--color-black);
}

.contact-form-animated input::placeholder,
.contact-form-animated textarea::placeholder {
    color: var(--color-gray);
}

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

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-animated {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-white);
    background: var(--color-black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-animated:hover {
    gap: 25px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-animated:hover .btn-arrow {
    transform: translateX(5px);
}

/* Contact Bar */
.contact-bar {
    padding: 60px 0;
    background: var(--color-black);
}

.contact-bar-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    padding: 0 40px;
}

.contact-bar-item {
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.bar-label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.bar-value {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-white);
    transition: opacity 0.3s ease;
}

a.contact-bar-item:hover .bar-value {
    opacity: 0.7;
}

/* Fade-in animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 767px) {
    .story-grid {
        gap: 40px;
    }

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

    .contact-bar-content {
        gap: 40px;
    }

    .btn-animated {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Contact Page - Stepped Storytelling

/* Individual Step */
.contact-step {
    padding: 80px 0;
    background: var(--color-white);
}

.contact-step-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.contact-step-reverse .contact-step-container {
    direction: rtl;
}

.contact-step-reverse .contact-step-container>* {
    direction: ltr;
}

.contact-step-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.contact-step:hover .contact-step-image img {
    filter: grayscale(0%);
}

.contact-step-content {
    padding: 20px 0;
}

.step-number {
    font-family: var(--font-heading);
    font-size: clamp(60px, 10vw, 100px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-gray-light);
    line-height: 0.8;
    display: block;
    margin-bottom: 10px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 25px;
}

.contact-step-content p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 15px;
}

/* Ready Section */
.contact-ready {
    padding: 100px 0;
    background: var(--color-white);
}

.contact-ready-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.contact-ready-image img {
    width: 100%;
    height: auto;
}

.ready-title-serif {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 0;
    line-height: 1;
}

.ready-title-large {
    font-family: var(--font-body);
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--color-black);
    margin-bottom: 30px;
    line-height: 1;
}

.contact-ready-content p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

.ready-intro {
    font-size: 17px !important;
    font-weight: 400 !important;
}

.ready-email-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-black);
    text-decoration: none;
    border-bottom: 1px solid var(--color-black);
    padding-bottom: 3px;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.ready-email-link:hover {
    opacity: 0.6;
}

/* Form Section */
.contact-form-section {
    padding: 80px 0 100px;
    background: var(--color-gray-light);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-form-elegant .form-field {
    margin-bottom: 30px;
}

.contact-form-elegant label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.contact-form-elegant input,
.contact-form-elegant textarea {
    width: 100%;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form-elegant input:focus,
.contact-form-elegant textarea:focus {
    border-bottom-color: var(--color-black);
}

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

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.btn-elegant {
    display: inline-block;
    padding: 18px 60px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-elegant:hover {
    background: var(--color-gray-dark);
}

/* Social Section */
.contact-social-section {
    padding: 60px 0;
    background: var(--color-white);
    text-align: center;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact-social-links a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-social-links a:hover {
    opacity: 0.6;
}

.social-divider {
    color: var(--color-gray);
}

/* ========================================
   Contact Page - Visual Design
   ======================================== */

/* Full-Screen Hero */
.contact-hero-full {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.hero-bg-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-full .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content-centered {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
}

.hero-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--color-white);
}

.scroll-hint span {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        height: 60px;
    }

    50% {
        opacity: 0.5;
        height: 40px;
    }
}

/* Content Block - Centered Text */
.content-block {
    padding: 120px 0;
    background: var(--color-white);
}

.content-block-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-large-centered {
    text-align: center;
}

.lead-text {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 40px;
    line-height: 1.4;
}

.text-large-centered p {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

/* Full-Width Image Break */
.image-break {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.image-break:hover img {
    filter: grayscale(0%);
}

/* Split Sections - Image + Text */
.split-section {
    padding: 100px 0;
    background: var(--color-white);
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    align-items: center;
}

.split-reverse .split-container {
    direction: rtl;
}

.split-reverse .split-container>* {
    direction: ltr;
}

.split-image img {
    width: 100%;
    height: auto;
    filter: grayscale(40%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.split-section:hover .split-image img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.split-content {
    padding: 20px 0;
}

.split-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 30px;
}

.split-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

.poetic-block {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 2px solid var(--color-gray-light);
}

.poetic-block em {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: normal;
    color: var(--color-black);
    line-height: 2;
}

/* Quote Section with Background */
.quote-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-white);
    line-height: 1.5;
}

/* About Section Full */
.about-section-full {
    padding: 120px 0;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    align-items: center;
}

.about-image-col img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.about-section-full:hover .about-image-col img {
    filter: grayscale(0%);
}

.about-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 25px;
}

.about-intro {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-text-col p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 18px;
}

.about-yin-yang {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0 20px;
    padding: 30px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.yin-yang-item {
    text-align: center;
}

.yin-yang-item .contrast-label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gray);
    margin-bottom: 5px;
}

.yin-yang-item .contrast-sign {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: normal;
    color: var(--color-black);
}

.yin-yang-item .contrast-trait {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--color-gray);
    margin-top: 3px;
}

.yin-yang-symbol {
    font-size: 32px;
    color: var(--color-black);
}

.about-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: var(--color-gray);
}

/* Form Section with Side Image */
.form-section-visual {
    background: var(--color-white);
}

.form-visual-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.form-image-side {
    position: relative;
    overflow: hidden;
}

.form-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.form-content-side {
    padding: 100px 80px;
    background: var(--color-gray-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 15px;
}

.form-intro {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-gray);
    margin-bottom: 40px;
}

/* Dark Footer */
.contact-footer-dark {
    padding: 100px 0 60px;
    background: var(--color-black);
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-white);
    margin-bottom: 40px;
}

.footer-details p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-email {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 3px;
    transition: border-color 0.3s ease;
}

.footer-email:hover {
    border-color: var(--color-white);
}

.footer-social {
    margin: 50px 0 40px;
}

.footer-social a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social span {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

/* Responsive Visual Contact */
@media (max-width: 980px) {

    .split-container,
    .about-grid,
    .form-visual-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split-reverse .split-container {
        direction: ltr;
    }

    .split-container {
        padding: 0 40px;
    }

    .about-grid {
        padding: 0 40px;
    }

    .form-image-side {
        height: 50vh;
        min-height: 300px;
    }

    .form-content-side {
        padding: 60px 40px;
    }

    .about-yin-yang {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .contact-hero-full {
        min-height: 500px;
    }

    .content-block {
        padding: 80px 0;
    }

    .content-block-inner {
        padding: 0 25px;
    }

    .split-section,
    .about-section-full {
        padding: 60px 0;
    }

    .split-container,
    .about-grid {
        padding: 0 25px;
        gap: 30px;
    }

    .image-break {
        height: 40vh;
        min-height: 250px;
    }

    .quote-section {
        height: 50vh;
        min-height: 300px;
    }

    .form-content-side {
        padding: 50px 25px;
    }

    .about-yin-yang {
        flex-direction: column;
        gap: 20px;
    }

    .yin-yang-symbol {
        order: -1;
    }
}

/* Welcome Section */
.contact-welcome {
    padding: 140px 0 100px;
    background: var(--color-white);
    text-align: center;
}

.contact-welcome-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.welcome-title {
    font-family: var(--font-body);
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.8;
    color: var(--color-black);
    margin-bottom: 50px;
}

.welcome-content p {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 25px;
}

/* Content Sections */
.contact-section {
    padding: 80px 0;
    background: var(--color-white);
}

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

.contact-section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.section-heading {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 40px;
}

.section-content p {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 25px;
}

.poetic-lines {
    margin: 35px 0;
}

.poetic-lines em {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 22px);
    font-style: normal;
    color: var(--color-black);
    display: block;
    line-height: 2;
}

/* Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--color-gray-light);
}

.form-heading {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 60px;
}

/* About Us Section */
.contact-about {
    padding: 100px 0;
    background: var(--color-white);
}

.contact-about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.contact-about:hover .about-image img {
    filter: grayscale(0%);
}

.about-content .section-heading {
    text-align: left;
    margin-bottom: 30px;
}

.about-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

.about-details {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.about-contrast {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.contrast-item {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-gray-dark);
}

.contrast-item em {
    font-family: var(--font-heading);
    font-style: normal;
    color: var(--color-black);
}

.contrast-divider {
    font-size: 20px;
    color: var(--color-gray);
}

.about-year {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-gray);
    margin-top: 15px;
    font-style: normal;
}

/* Ready Footer Section */
.contact-ready-footer {
    padding: 100px 0 60px;
    background: var(--color-black);
    text-align: center;
    color: var(--color-white);
}

.ready-footer-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
}

.ready-heading {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-white);
    margin-bottom: 40px;
}

.ready-info p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.ready-email a {
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: border-color 0.3s ease;
}

.ready-email a:hover {
    border-color: var(--color-white);
}

.ready-social {
    margin: 50px 0 40px;
}

.ready-social a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.ready-social a:hover {
    opacity: 0.7;
}

.social-dot {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.4);
}

.ready-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-location {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive for new contact sections */
@media (max-width: 980px) {
    .contact-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content .section-heading {
        text-align: center;
    }

    .about-content p {
        text-align: center;
    }

    .about-contrast {
        justify-content: center;
    }

    .about-year {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .contact-welcome {
        padding: 120px 0 60px;
    }

    .contact-welcome-container,
    .contact-section-container,
    .ready-footer-container {
        padding: 0 25px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-about,
    .contact-ready-footer {
        padding: 60px 0 40px;
    }

    .contact-about-container {
        padding: 0 25px;
    }
}

/* Responsive */
@media (max-width: 980px) {

    .contact-step-container,
    .contact-ready-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-step-reverse .contact-step-container {
        direction: ltr;
    }

    .step-number {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .contact-step {
        padding: 50px 0;
    }

    .contact-step-container,
    .contact-ready-container {
        padding: 0 20px;
    }

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

    .btn-elegant {
        width: 100%;
        text-align: center;
    }
}

@media print {

    .header,
    .hero-video,
    .scroll-indicator,
    .contact-form {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* Contact Hero */
.contact-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Contact Main Section */
.contact-main {
    padding: 100px 0;
    background: var(--color-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Form Column */
.contact-form-column {
    padding-right: 40px;
}

.contact-form-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--color-black);
}

.contact-form-elegant .form-field {
    margin-bottom: 35px;
}

.contact-form-elegant label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.contact-form-elegant input,
.contact-form-elegant textarea {
    width: 100%;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form-elegant input:focus,
.contact-form-elegant textarea:focus {
    border-bottom-color: var(--color-black);
}

.contact-form-elegant input::placeholder,
.contact-form-elegant textarea::placeholder {
    color: #bbb;
}

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

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.btn-elegant {
    display: inline-block;
    padding: 18px 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-elegant:hover {
    background: var(--color-gray-dark);
    transform: translateY(-2px);
}

/* Info Column */
.contact-info-column {
    padding-left: 40px;
    border-left: 1px solid #eee;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block .info-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.contact-info-block .info-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-block a.info-value:hover {
    color: var(--color-gray);
}

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--color-black);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

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

/* Contact Page Responsive */
@media (max-width: 980px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .contact-form-column {
        padding-right: 0;
    }

    .contact-info-column {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        min-height: 500px;
    }

    .contact-hero-title {
        letter-spacing: 4px;
    }

    .contact-main {
        padding: 60px 0;
    }

    .contact-layout {
        padding: 0 20px;
    }

    .contact-form-heading {
        font-size: 24px;
        margin-bottom: 40px;
    }

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

    .btn-elegant {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Scroll Reveal Animations
   ======================================== */

/* Base reveal states - hidden initially */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

/* Visible state - triggered by Intersection Observer */
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered delays for cascade effect */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Scroll reveal for sections (subtle fade) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image hover effects - enhanced */
.contact-step-image img,
.contact-ready-image img {
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.contact-step:hover .contact-step-image img,
.contact-ready:hover .contact-ready-image img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* LOVE letters pulse animation */
.love-letter {
    display: inline-block;
    animation: lovePulse 2s ease-in-out infinite;
}

.love-letter:nth-child(1) {
    animation-delay: 0s;
}

.love-letter:nth-child(2) {
    animation-delay: 0.15s;
}

.love-letter:nth-child(3) {
    animation-delay: 0.3s;
}

.love-letter:nth-child(4) {
    animation-delay: 0.45s;
}

@keyframes lovePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.8;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .love-letter {
        animation: none;
    }

    .contact-step-image img,
    .contact-ready-image img {
        filter: grayscale(0%);
        transition: none;
    }

    .carousel-track {
        animation: none !important;
    }
}

/* ========================================
   Contact Page - Original Site Structure
   ======================================== */

/* Parallax Window Section */
.parallax-window-section {
    padding: 120px 0 80px;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-window {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
}

.parallax-inner {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    overflow: hidden;
}

.parallax-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
}

.parallax-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    text-align: center;
}

.tagline-italic {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3vw, 28px);
    font-style: italic;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 1px;
    margin: 0;
}

/* About Text Section */
.about-text-section {
    padding: 80px 0 100px;
    background: var(--color-white);
    text-align: center;
}

.about-text-section .section-title {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--color-black);
    margin-bottom: 50px;
}

.about-paragraphs {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-paragraphs p {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 300;
    line-height: 2;
    color: var(--color-gray-dark);
    margin-bottom: 30px;
    text-align: left;
}

.about-paragraphs p strong {
    font-weight: 500;
    color: var(--color-black);
}

/* Auto-Sliding Photo Carousel */
.photo-carousel-section {
    width: 100%;
    overflow: hidden;
    padding: 0;
    background: var(--color-white);
}

.carousel-track {
    display: flex;
    gap: 10px;
    animation: slideLeft 40s linear infinite;
}

.carousel-slide {
    flex-shrink: 0;
    width: 400px;
    height: 500px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-2460px);
        /* 6 slides * 410px (400px + 10px gap) */
    }
}

/* Contact Form Section - Original Style */
.contact-form-section {
    padding: 100px 0;
    background: var(--color-white);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    align-items: center;
}

.form-image-oval {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-image-oval img {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    filter: sepia(10%);
}

.form-content {
    text-align: left;
}

.form-content .form-heading {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 5px;
    text-align: left;
}

.form-subheading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.contact-form .form-field {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-gray);
    letter-spacing: 3px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--color-black);
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    display: inline-block;
    padding: 15px 50px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-black);
    background: transparent;
    border: 1px solid var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Contact Footer - Original Style */
.contact-footer {
    padding: 80px 0 60px;
    background: var(--color-white);
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 40px;
}

.footer-col {
    text-align: center;
}

.footer-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-black);
    margin-bottom: 10px;
}

.footer-value {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-gray);
    letter-spacing: 1px;
}

.footer-social {
    margin: 40px 0;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: var(--color-black);
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.6;
}

.footer-brand {
    margin-top: 30px;
}

.brand-name {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 8px;
}

.brand-year {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-gray);
}

/* Responsive - New Contact Structure */
@media (max-width: 980px) {
    .parallax-window {
        max-width: 90%;
        height: 350px;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 40px;
    }

    .form-image-oval {
        order: -1;
    }

    .form-content .form-heading {
        text-align: center;
    }

    .form-subheading {
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .carousel-slide {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 767px) {
    .parallax-window-section {
        padding: 100px 0 60px;
    }

    .parallax-window {
        height: 300px;
    }

    .about-text-section {
        padding: 60px 0 80px;
    }

    .about-paragraphs {
        padding: 0 25px;
    }

    .about-paragraphs p {
        text-align: center;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .form-container {
        padding: 0 25px;
    }

    .contact-footer {
        padding: 60px 0 40px;
    }

    .footer-container {
        padding: 0 25px;
    }

    .carousel-slide {
        width: 250px;
        height: 350px;
    }
}

@media print {

    .header,
    .hero-video,
    .scroll-indicator,
    .contact-form {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* ========================================
   Minimalist Contact Page Styles
   ======================================== */
.minimal-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 140px 30px 80px;
}

.minimal-section {
    padding: 60px 0;
    text-align: center;
}

.minimal-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: var(--color-black);
}

.minimal-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

.minimal-text:last-child {
    margin-bottom: 0;
}

.minimal-poetic {
    font-style: italic;
    color: var(--color-gray);
}

.minimal-divider {
    border: none;
    height: 1px;
    background: #e0e0e0;
    max-width: 60px;
    margin: 0 auto;
}

/* Minimal Form */
.minimal-form {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: left;
}

.minimal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.minimal-form .form-field {
    margin-bottom: 0;
}

.minimal-form .form-field.full {
    grid-column: 1 / -1;
}

.minimal-form input,
.minimal-form textarea {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s ease;
}

.minimal-form input::placeholder,
.minimal-form textarea::placeholder {
    color: #999;
    font-weight: 300;
    letter-spacing: 1px;
}

.minimal-form input:focus,
.minimal-form textarea:focus {
    border-bottom-color: var(--color-black);
}

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

.minimal-button {
    display: block;
    width: 100%;
    margin-top: 40px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-black);
    background: transparent;
    border: 1px solid var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.minimal-button:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Minimal Footer */
.minimal-footer {
    padding-top: 40px;
}

.minimal-location {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.minimal-email {
    margin-top: 30px;
    font-size: 14px;
    color: var(--color-gray);
}

.minimal-email a {
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.minimal-email a:hover {
    opacity: 0.6;
}

.minimal-social {
    margin-top: 40px;
    font-size: 13px;
    letter-spacing: 1px;
}

.minimal-social a {
    color: var(--color-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.minimal-social a:hover {
    color: var(--color-black);
}

.minimal-social span {
    margin: 0 12px;
    color: #ccc;
}

.minimal-copyright {
    margin-top: 50px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-gray);
}

/* Responsive Minimal */
@media (max-width: 600px) {
    .minimal-page {
        padding: 120px 25px 60px;
    }

    .minimal-section {
        padding: 40px 0;
    }

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

    .minimal-text br {
        display: none;
    }
}

/* ========================================
   Vanessaivo-Inspired Contact Page
   ======================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.contact-hero .hero-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-white);
    margin: 0 auto 30px;
}

.contact-hero h1 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
}

/* Contact Wrapper */
.contact-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 30px 100px;
}

/* Intro */
.contact-intro {
    text-align: center;
    padding: 40px 0 60px;
}

.contact-intro p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-gray-dark);
}

/* Divider */
.contact-wrapper .divider {
    border: none;
    height: 1px;
    background: #e5e5e5;
    max-width: 50px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.contact-form .form-field input,
.contact-form .form-field textarea {
    width: 100%;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
    color: #aaa;
    font-weight: 300;
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
    border-bottom-color: var(--color-black);
}

.contact-form .form-field.full {
    margin-bottom: 25px;
}

.contact-form .form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-send {
    display: block;
    margin: 40px auto 0;
    padding: 15px 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-black);
    background: transparent;
    border: 1px solid var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-send:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Contact Sections */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-section .section-line {
    display: block;
    width: 40px;
    height: 1px;
    background: #ddd;
    margin: 0 auto 30px;
}

.contact-section h2 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: var(--color-black);
}

.contact-section p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 15px;
}

.contact-section p:last-child {
    margin-bottom: 0;
}

/* Numbered Items */
.numbered-item {
    text-align: center;
}

.numbered-item .number {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 20px;
}

.numbered-item h3 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 25px;
    color: var(--color-black);
}

.numbered-item p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Footer Section */
.contact-footer-section {
    padding: 80px 0 40px;
    text-align: center;
}

.contact-footer-section .location-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 10px;
}

.contact-footer-section .location-value {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-gray-dark);
    margin-bottom: 40px;
}

.contact-footer-section .email-line {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: #999;
    margin-bottom: 30px;
}

.contact-footer-section .email-line a {
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-footer-section .email-line a:hover {
    opacity: 0.6;
}

.contact-footer-section .social-links {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.contact-footer-section .social-links a {
    color: var(--color-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-footer-section .social-links a:hover {
    color: var(--color-black);
}

.contact-footer-section .social-links span {
    margin: 0 15px;
    color: #ccc;
}

.contact-footer-section .copyright {
    font-size: 11px;
    letter-spacing: 2px;
    color: #bbb;
}

/* Contact Page Responsive */
@media (max-width: 600px) {
    .contact-hero {
        height: 50vh;
        min-height: 300px;
    }

    .contact-wrapper {
        padding: 60px 25px 80px;
    }

    .contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form .form-field {
        margin-bottom: 20px;
    }

    .contact-intro p br {
        display: none;
    }
}