/*
Theme Name: Ukiyo Office
Theme URI: https://example.com
Author: AI Assistant
Description: A high-end, atmospheric theme for Ukiyo.
Version: 1.2.0
Text Domain: ukiyo-office
*/

:root {
    --bg-color: #f7f6f3;
    --bg-color-dark: #181817;

    --text-color: #2a2a2a;
    --text-light: #4a5565;
    --text-meta: #99a1af;
    --text-white: #fdfdfd;

    --border-color: #d1d5dc;
    --border-light: #e5e7eb;

    --font-serif: "Shippori Mincho", serif;

    /* Grid System */
    --container-std: 90rem;
    --container-wide: 120rem;
    --gutter: 3rem;

    font-size: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-serif);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* Noise Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.09; /* 从 0.04 增加到 0.08，让颗粒更明显 */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Animation Initial States */
[data-animate="reveal"] {
    clip-path: inset(0 0 100% 0);
    will-change: clip-path;
}

[data-animate="slideRight"] {
    clip-path: inset(0 100% 0 0);
    will-change: clip-path;
}

[data-animate="fadeIn"],
[data-animate="slideUp"],
[data-animate="slideDown"] {
    opacity: 0;
    will-change: opacity, transform;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

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

a:hover {
    opacity: 0.7;
}

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

/* Layout System */
.container {
    max-width: var(--container-std);
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    position: relative;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    position: relative;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--gutter);
}

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

.justify-between {
    justify-content: space-between;
}

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

.mb-0 {
    margin-bottom: 0;
}

/* Header */
.site-header {
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle-line {
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 3rem;
}

.main-navigation a {
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.0875rem;
    color: var(--text-color);
}

.main-navigation a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-text {
    position: absolute;
    left: 7rem;
    top: 10rem;
    z-index: 10;
    width: 50%;
}

.hero-title {
    font-size: 12rem;
    line-height: 1;
    letter-spacing: -0.45rem;
    margin-bottom: 4rem;
    font-weight: 400;
    color: var(--text-color);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.875rem;
    font-style: italic;
    letter-spacing: 0.046875rem;
    color: #364153;
    margin-bottom: 3.75rem;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.75rem;
    color: var(--text-color);
    margin-bottom: 0;
    text-decoration: underline;
}

/* Hero Image - 与顶部有距离，不是全高 */
.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 18rem;
    width: 65%;
    height: calc(100vh - 18rem);
    z-index: 1;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
}

.hero-carousel-image.active {
    opacity: 0.9;
    z-index: 1;
}

.hero-image-wrapper img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}

/* Sections General */
.section {
    padding: 7.5rem 0;
    position: relative;
}

.section-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 5rem;
    letter-spacing: -0.15rem;
    font-style: italic;
    color: var(--text-color);
}

/* About Section */
.about-section {
    position: relative;
    padding-top: 20rem;
    background-color: var(--bg-color-dark);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./assets/images/about-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    margin-bottom: 4rem;
}

.about-content {
    padding-left: 8rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .section-title {
    color: var(--text-white);
}

.about-desc {
    color: var(--text-white);
    font-size: 1rem;
    line-height: 2rem;
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-content-image {
    width: 100%;
    display: flex;
    justify-content: end;
}

.about-content-image img {
    width: 25%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Vision Section */
.vision-section {
    text-align: center;
    padding-top: 20rem;
    padding-bottom: 20rem;
}

.vision-title {
    margin-bottom: 2rem;
    line-height: 1;
}

.vision-divider {
    width: 1px;
    height: 6rem;
    background: var(--border-color);
    margin: 0 auto 2rem;
}

.vision-statement {
    font-size: 1.5rem;
    line-height: 2.5rem;
    margin-bottom: 6rem;
}

.vision-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: start;
}

.vision-gallery img {
    width: 100%;
    object-fit: cover;
}

.vision-gallery img:nth-child(1),
.vision-gallery img:nth-child(2),
.vision-gallery img:nth-child(3) {
    height: 70vh;
}

.vision-gallery img:nth-child(1),
.vision-gallery img:nth-child(3) {
    margin-top: 3rem;
}

.vision-footer {
    max-width: 40rem;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2rem;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Services Section */
.services-section {
    padding-top: 20rem;
}

.services-section .section-header {
    border-bottom: none;
    padding-bottom: 0;
}

.services-container {
    width: 100%;
}

.service-row {
    display: flex;
    width: 100%;
    min-height: 37.5rem;
    border-bottom: 1px solid #fff;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-col {
    width: 50%;
    position: relative;
}

/* Services图片：统一4:3尺寸 */
.service-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

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

.service-info {
    padding: 8rem;
    background: #fdfdfb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.service-content {
    padding-left: 2rem;
    border-left: 1px solid var(--border-color);
}

.service-h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1rem;
    line-height: 2rem;
    margin-bottom: 3rem;
    text-align: justify;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

.feature-item {
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.125rem;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4375rem;
    width: 0.375rem;
    height: 0.375rem;
    background: var(--text-color);
    border-radius: 50%;
}

.service-num {
    position: absolute;
    top: -2.5rem;
    left: 0;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

/* Partners Section - 无限横向滚动 */
.partners-section {
    padding-top: 10rem;
    overflow: hidden;
    background: var(--bg-color);
}

.partners-container {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.partners-image {
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    max-width: 33vw;
    overflow: hidden;
}

.partners-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Performance Section */
.performance-section {
    padding-top: 20rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 2rem;
    margin-bottom: 8rem;
}

.stat-item {
    border-top: 1px solid #f3f4f6;
    padding-top: 2rem;
}

.stat-val {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.stat-key {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.075rem;
    color: var(--text-meta);
    text-align: center;
}

.case-studies {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

.case-title-text {
    width: 30%;
}

.case-title-text h3 {
    width: fit-content;
    font-size: 1.5rem;
    font-weight: 700;
    transform: rotate(90deg);
    transform-origin: left top;
    margin-left: 1.5rem;
    white-space: nowrap;
}

.case-grid {
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.case-card {
    background: #fdfdfb;
    padding: 2rem;
}

.case-label {
    font-size: 0.75rem;
    color: var(--text-meta);
    margin-bottom: .5rem;
    display: block;
}

.case-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.case-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    padding: 0.25rem 0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.case-row .dt {
    width: 30%;
}

.case-row .dd {
    width: 70%;
    text-align: right;
}

.case-extra {
    font-size: 0.75rem;
    color: var(--text-meta);
    margin-top: 1rem;
}

/* Process Section */
.process-section {
    padding: 20rem 0;
}

/* Image Section */
.image-section {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
}

.image-section-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-section-wrapper img {
    width: 100%;
    height: 130%; /* 比容器高，为视差提供空间 */
    object-fit: cover;
    margin-top: -15%; /* 初始位置居中 */
    will-change: transform;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.process-item {
    position: relative;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.process-num {
    font-size: 2rem;
    color: var(--text-color);
    flex-shrink: 0;
    font-style: italic;
}

.process-divider {
    width: 1px;
    height: 2rem;
    background: var(--border-color);
    flex-shrink: 0;
}

.process-content {
    flex: 1;
}

.process-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.process-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact / Footer */
.site-footer {
    padding-top: 10rem;
    padding-bottom: 4rem;
    background: var(--bg-color-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "ukiyo";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.01);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: var(--font-serif);
    letter-spacing: -0.05em;
}

.contact-hero {
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.contact-desc {
    font-size: 1rem;
    color: rgba(253, 253, 253, 0.7);
    margin-bottom: 5rem;
    line-height: 1.8;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem;
}

.contact-col {
    padding: 2.5rem 4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    min-width: 17.5rem;
    flex: 1;
}

.contact-col:last-child {
    border-right: none;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(253, 253, 253, 0.6);
    letter-spacing: 0.1rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
    display: block;
}

.contact-val {
    font-size: 1.125rem;
    color: var(--text-white);
    line-height: 1.6;
}

.contact-val a {
    color: var(--text-white);
    transition: opacity 0.3s;
}

.contact-val a:hover {
    opacity: 0.7;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(253, 253, 253, 0.6);
}

.footer-meta .copyright {
    font-size: 0.875rem;
}

.footer-meta .slogan {
    font-size: 0.875rem;
    font-style: italic;
}

@media (max-width: 2000px) {
    .hero-title  {
        font-size: 9rem;
    }
}

@media (max-width: 1400px) {
    .hero-title  {
        font-size: 8rem;
    }

    .service-info {
        padding: 4rem;
    }
}


@media (max-width: 1024px) {
    .site-header {
        padding: 1.5rem 1.5rem;
    }

    .site-title {
        font-size: 1.25rem;
    }

    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 20rem;
        height: 100vh;
        background: var(--bg-color);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 2rem;
    }

    .main-navigation a {
        font-size: 1rem;
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    /* Container Mobile */
    .container,
    .container-wide {
        padding: 0 1.5rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding-top: 6rem;
    }

    .hero-bg-text {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        transform: none;
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 4.5rem;
        letter-spacing: -0.1rem;
        margin-bottom: 2rem;
    }

    .hero-text {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        top: 0;
        margin-top: 2rem;
        aspect-ratio: 1/1;
        height: auto;
    }

    /* About Section Mobile */
    .about-section {
        padding-top: 8rem;
        height: auto;
    }

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

    .about-content {
        padding-left: 20%;
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .about-desc {
        line-height: 1.8;
    }

    .about-content-image img {
        width: 50%;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: -0.05rem;
    }

    /* Vision Section Mobile */
    .vision-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .vision-title {
        font-size: 3rem;
    }

    .vision-statement {
        font-size: 1.25rem;
        line-height: 2rem;
        margin-bottom: 3rem;
    }

    .vision-gallery {
        display: block;
        position: relative;
        height: 60vh;
        margin-bottom: 3rem;
    }

    .vision-gallery img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 60vh !important;
        object-fit: cover;
        margin-top: 0 !important;
        z-index: 1;
    }
    
    .vision-gallery img:nth-child(2) {
        z-index: 2;
    }
    
    .vision-gallery img:nth-child(3) {
        z-index: 3;
    }

    .vision-footer {
        padding: 0;
        text-align: left;
        line-height: 1.8;
    }

    /* Services Section Mobile */
    .services-section {
        padding-top: 8rem;
    }

    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
        min-height: auto;
    }

    .service-col {
        width: 100%;
    }
	
	.service-col.right {
		width: calc(100% - 1.5rem);
		margin-top: -2rem;
		margin-left: 1.5rem;
	}

    .service-img-wrapper {
        aspect-ratio: 4/3;
        height: auto;
    }
	
	.service-content {
		padding-left: 1.5rem;
	}

    .service-info {
        padding: 3rem;
    }

    .service-h3 {
        font-size: 1.5rem;
    }

    .service-desc  {
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-features-wrapper:first-child {
        margin-bottom: 1.5rem;
    }

    .service-num {
        font-size: 4rem;
        top: -1.5rem;
    }

    /* Case Study Section Mobile */
    .case-title-text h3 {
        font-size: 1rem;
        margin-left: 1rem;
    }

    .case-name {
        font-size: 1rem;
    }

    /* Partners Section Mobile */
    .partners-section {
        padding-top: 8rem;
    }

    .partners-image {
        max-width: 60vw;
    }

    .partners-container {
        gap: 1rem;
    }

    /* Performance Section Mobile */
    .performance-section {
        padding-top: 8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .stat-val {
        font-size: 2.5rem;
    }

    .stat-key {
        font-size: 0.75rem;
    }

    .case-studies {
        gap: 0;
    }

    .case-studies:last-child {
        margin-bottom: 0;
    }

    .case-title-text {
        width: 10%;
    }

    .case-grid {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-card {
        padding: 1.5rem;
    }

    .case-row {
        font-size: 0.75rem;
    }

    /* Process Section Mobile */
    .process-section {
        padding: 8rem 0;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item {
        padding: 1rem;
    }

    .process-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

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

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

    .process-divider {
        height: 1px;
        width: 100%;
        margin: .5rem 0;
    }

    /* Footer Mobile */
    .site-footer {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

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

    .contact-desc {
        font-size: 0.875rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .contact-info-grid {
        flex-direction: column;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 3rem;
    }

    .contact-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem 1.5rem;
        min-width: auto;
    }

    .contact-col:last-child {
        border-bottom: none;
    }

    .contact-label {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .contact-val {
        font-size: 1rem;
    }

    .footer-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 2rem;
        font-size: 0.75rem;
    }

    /* Image Section Mobile */
    .image-section {
        height: 70vh;
    }
}