@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #f5f3f0;
    --color-text: #1a1a1a;
    --color-accent: #d4c5b9;
    --color-button: #2b2520;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Inter', 'Segoe UI', sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background-color: transparent;
    position: relative;
    z-index: 10;
}

.nav-left .brand {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}



.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Stack logo - title - logo */
    align-items: center;
    justify-content: center;
    gap: 5rem;
    /* ~2cm (80px) */
}



.hero-logo-unified {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--color-text);
    width: 100%;
}

.hero-logo-top {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 12vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.hero-logo-bottom {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    max-width: clamp(250px, 80vw, 800px);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-logo-bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-logo-bottom::before,
.hero-logo-bottom::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--color-text);
}

.hero-logo-studio {
    font-family: var(--font-serif);
    font-size: clamp(0.7rem, 2vw, 1.1rem);
    letter-spacing: 0.8em;
    padding: 0 1.5rem;
    text-transform: uppercase;
    font-weight: 400;
}

.typing-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
    color: var(--color-text);
    margin-left: 2px;
    font-weight: 100;
}

.typing-cursor.finished::after {
    display: none;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-logo-top {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        letter-spacing: 0.05em;
    }

    .hero-logo-studio {
        font-size: 0.6rem;
        letter-spacing: 0.5em;
        padding: 0 1rem;
    }

    .hero-content {
        gap: 3rem;
    }
}





/* CTA Button */
.cta-button {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    padding: 2rem 3rem;
}

.btn-work {
    background-color: var(--color-button);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-work:hover {
    background-color: #3d3428;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-work:active {
    transform: translateY(0);
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 1rem;
    }





    .cta-button {
        padding: 1.5rem;
        justify-content: center;
    }

    .btn-work {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* About Page Styles */
.about-main {
    padding: 2rem 3rem;
    max-width: 1400px;
    margin: 10rem auto 0 auto;
    /* Reduced to ~4cm spacing */
}

.about-header {
    margin: 4rem 0;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 8rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
    /* Rise text by ~2cm from previous 4cm push */
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 450px;
}

.about-visuals {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.portrait-container {
    width: 80%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.portrait-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.keyboard-container {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 45%;
    aspect-ratio: 1/1;
    overflow: hidden;
    z-index: 3;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}

.keyboard-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.calendly-section {
    margin: 18rem 0 10rem 0;
    /* Increased top margin by ~8rem (3cm) */
    display: flex;
    justify-content: center;
}

.calendly-frame {
    border: 15px solid var(--color-accent);
    /* ~#d4c5b9 */
    border-style: ridge;
    /* Gives a 3D "old fashioned" frame look */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    /* Ensure border is included in dimensions */
}

.calendly-block {
    background-color: #ffe499;
    /* Pale yellow from mockup */
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendly-block:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.calendly-text {
    font-family: var(--font-sans);
    color: var(--color-text);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    font-weight: 400;
}

/* Responsive About */
@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-visuals {
        justify-content: center;
        margin-top: 4rem;
    }

    .portrait-container {
        width: 100%;
        max-width: 500px;
    }

    .keyboard-container {
        width: 50%;
        left: -5%;
        bottom: -10%;
    }
}

@media (max-width: 768px) {
    .about-main {
        padding: 1.5rem;
    }

    .about-header {
        margin: 2rem 0;
    }

    .about-title {
        font-size: clamp(2rem, 10vw, 3rem);
        letter-spacing: 0.05em;
        text-align: center;
    }

    .calendly-block {
        aspect-ratio: 1.5/1;
    }
}

/* Services Section Styles */
.services-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-bottom: 6rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 6rem;
}

.service-card {
    background-color: #f3efe9;
    /* Beige/Cream background */
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    flex: 1 1 300px;
    /* Grow, Shrink, Basis */
    max-width: 350px;
    /* Prevent them from getting too wide */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-wrapper {
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.service-icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: #e89578;
    /* Peach/coral accent color from image */
    stroke-width: 1.5;
}

.service-card h3 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    max-width: 280px;
    margin: 0 auto;
}

.reviews-cta-container {
    text-align: center;
    margin-top: 5rem;
    width: 100%;
    position: relative;
    left: 20px;
    /* Slight shift to match "2cm" visual request more accurately if padding is too much, but user said 2cm */
    padding-left: 5rem;
    /* ~2cm shift right */
}

@media (max-width: 768px) {
    .reviews-cta-container {
        padding-left: 0;
        left: 0;
        margin-top: 3rem;
        display: flex;
        justify-content: center;
    }
}

.reviews-cta-btn {
    background-color: #000;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.reviews-cta-btn:hover {
    background-color: #333;
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-main-title {
        margin-bottom: 3rem;
        letter-spacing: 0.1em;
    }
}

/* Portfolio Folder Styles */
.portfolio-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    perspective: 1000px;
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    /* Vertical stack */
    align-items: center;
    gap: 0;
    /* No gap to simulate stacking */
    padding-bottom: 250px;
    width: 100%;
}

.folder-item {
    position: relative;
    width: 90%;
    /* Much wider */
    max-width: 800px;
    height: auto;
    /* Allow height to be determined by content if needed, but tabs are key */
    margin-bottom: 2.5rem;
    /* Separated by ~1cm+ (40px) as requested */
    /* Overlap borders slightly */
    transform-style: preserve-3d;
    z-index: 1;
}

/* Specific z-indexes for stacking context */
.folder-item:nth-child(1) {
    z-index: 5;
}

.folder-item:nth-child(2) {
    z-index: 4;
}

.folder-item:nth-child(3) {
    z-index: 3;
}

.folder-item:nth-child(4) {
    z-index: 2;
}

.folder-item:nth-child(5) {
    z-index: 1;
}

.folder-tab {
    background-color: transparent;
    /* Container is transparent now */
    padding: 0;
    text-align: left;
    clip-path: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
    height: 80px;
    /* Fixed height for the visible strip */
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
    width: 100%;
    filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.05));
    /* Shadow on the shapes */
    transition: transform 0.3s ease;
    border: none;
    box-shadow: none;
}

/* The actual Tab Shape */
.folder-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 100%;
    background-color: #e3d3c3;
    /* Manila-like color */
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px 10px 0 0;
    width: 45%;
    /* Tab width */
    z-index: 2;
    transition: background-color 0.3s ease;
}

/* The Rim (Rest of folder width) */
.folder-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 65%;
    /* Shorter than the tab */
    width: 100%;
    background-color: #dccbb9;
    /* Slightly darker/recessed */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 8px 0 0;
    z-index: 1;
}

/* Left Aligned Tab */
.folder-item:nth-child(odd) .folder-tab::before {
    left: 0;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    /* Right slant */
}

.folder-item:nth-child(odd) .folder-tab {
    padding-left: 2rem;
    /* Text padding */
}

/* Right Aligned Tab */
.folder-item:nth-child(even) .folder-tab::before {
    right: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    /* Left slant */
}

.folder-item:nth-child(even) .folder-tab {
    justify-content: flex-end;
    /* Align text content right */
    padding-right: 2rem;
}

/* Text Content Positioning */
.folder-number,
.folder-name {
    position: relative;
    z-index: 5;
    /* Above background */
    margin-bottom: 1.2rem;
    /* Align vertically in tab */
    color: var(--color-text);
    pointer-events: none;
}

.folder-item:nth-child(odd) .folder-name,
.folder-item:nth-child(odd) .folder-number {
    margin-right: 1.5rem;
}

.folder-item:nth-child(even) .folder-name,
.folder-item:nth-child(even) .folder-number {
    margin-left: 1.5rem;
    order: 2;
    /* Ensure consistent order if flex-direction is row */
}

.folder-tab:hover {
    transform: translateY(-4px);
    box-shadow: none;
    background-color: transparent;
}

.folder-tab:hover::before {
    background-color: #dcd0bf;
}

/* Folder Content Styles */
.folder-content {
    position: absolute;
    bottom: 85%;
    /* Start slightly tucked under */
    left: 2%;
    /* Indent slightly for nested look */
    width: 96%;
    height: 450px;
    background-color: #fbf9f6;
    /* Paper white/cream */
    border: 1px solid #e0dcd5;
    overflow: hidden;

    /* Animation Start State (Hidden inside) */
    opacity: 0;
    transform-origin: bottom center;
    transform: rotateX(-10deg) translateY(20px) scale(0.98);
    visibility: hidden;

    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: 10;
    /* Pop OUT above tabs */
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

/* Desktop Click Interaction (Transition and Transform) */
.folder-item.active .folder-content {
    visibility: visible;
    opacity: 1;
    transform: rotateX(0deg) translateY(-85px) scale(1);
    /* Move UP out of folder */
    pointer-events: auto;
    z-index: 100;
}

.folder-item.active {
    z-index: 100;
    /* Bring entire folder to top stack */
}

/* Unified Active Interaction */
.folder-item.active .folder-content {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    z-index: 100;
}

.project-preview {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.project-preview.has-thumbnail {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 2rem 4rem;
}

.project-thumbnail {
    flex: 1;
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-preview.has-thumbnail .preview-text {
    flex: 1.5;
    text-align: left;
}

@media (max-width: 768px) {
    .project-preview.has-thumbnail {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .project-thumbnail {
        max-width: 100%;
    }

    .project-preview.has-thumbnail .preview-text {
        text-align: center;
    }
}

.close-folder {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text);
    z-index: 110;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0.5rem;
}

.close-folder:hover {
    color: var(--color-button);
    transform: scale(1.1);
}

.view-project-link {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-button);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--color-accent);
    transition: all 0.3s;
    width: fit-content;
}

.coming-soon {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    font-weight: 600;
    margin-top: 1.5rem;
    font-style: italic;
}

.view-project-link:hover {
    border-bottom-color: var(--color-button);
    transform: translateX(5px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .folder-tab {
        height: 70px;
    }

    .folder-item:nth-child(even) .folder-tab::before,
    .folder-item:nth-child(odd) .folder-tab::before {
        width: 100%;
        clip-path: none;
        border-radius: 8px 8px 0 0;
        left: 0;
        right: 0;
    }

    .folder-tab::after {
        display: none;
    }

    .folder-item:nth-child(even) .folder-tab {
        padding: 0 1.5rem;
        justify-content: space-between;
        align-items: center;
        /* Center vertically on mobile */
    }

    .folder-item:nth-child(odd) .folder-tab {
        padding: 0 1.5rem;
        justify-content: space-between;
        align-items: center;
        /* Center vertically on mobile */
    }

    .folder-number,
    .folder-name {
        margin-bottom: 0;
        /* Align centered vertically */
        font-size: 0.85rem;
    }

    .folder-content {
        bottom: auto;
        /* Reset positioning for accordion */
        transform: none !important;
        /* Force reset transforms */
        position: relative;
        width: 100%;
        left: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: height 0.4s ease, opacity 0.3s ease;
    }

    .folder-item.active .folder-content {
        height: auto;
        min-height: 200px;
        /* Reduced min-height to fit content better */
        transform: none !important;
        overflow: visible;
        /* Ensure text doesn't get cut off */
    }

    .project-preview {
        padding: 1.5rem !important;
    }

    .project-preview.has-thumbnail {
        padding: 1.5rem !important;
    }
}

/* FAQ Section Styling */
.faq-section {
    padding: 8rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: visible;
}

.faq-section .services-main-title {
    margin-top: -3cm;
}

.faq-container {
    width: 100%;
    position: relative;
    /* Anchor for leaves */
}

/* Leaf Decorations */
.leaf-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.leaf-top-left {
    top: -80px;
    left: -120px;
    transform: rotate(-10deg);
}

.leaf-bottom-right {
    bottom: -80px;
    right: -120px;
    transform: rotate(10deg);
}

.leaf-decoration svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    .leaf-decoration {
        width: 100px;
        height: 100px;
    }

    .leaf-top-left {
        left: -20px;
        top: -50px;
    }

    .leaf-bottom-right {
        right: -20px;
        bottom: -50px;
    }
}

.faq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    /* Above leaves */
}

.faq-question {
    background-color: #f3efe9;
    /* Beige pill */
    padding: 1rem 3rem;
    border-radius: 50px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0;
    width: 100%;
    max-width: 650px;
    /* Fixed width matched to longest question */
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 2;
    position: relative;
}

.faq-question:hover {
    background-color: #e8e4de;
}

.faq-answer {
    background-color: #f3efe9;
    /* Beige box */
    padding: 0 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;

    /* Hidden State */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: -20px;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 1000px;
    /* Large enough for content */
    opacity: 1;
    padding: 2.5rem;
    margin-top: 1rem;
    transform: translateY(0);
}

.faq-item.active .faq-question {
    background-color: #e3dcd3;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        /* Full width on mobile */
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }

    .leaf-decoration {
        display: none;
    }

    /* Hide leaves on small mobile */

}

/* Latest Reviews Section */
.reviews-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.reviews-header .services-main-title {
    margin-bottom: 0;
    /* Override default */
    white-space: nowrap;
}

.header-line {
    height: 2px;
    background-color: #000;
    flex-grow: 1;
    max-width: 300px;
}

.review-card {
    background-color: #f3efe9;
    /* Beige background */
    padding: 4rem;
    border-radius: 4px;
    /* Slightly sharper corners as per image */
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.review-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    /* for mobile */
}

.client-name {
    font-family: var(--font-sans);
    /* Or serif based on prefs, looks sans/bold in image */
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.review-body {
    font-family: 'Courier New', Courier, monospace;
    /* Typewriter font */
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    max-width: 750px;
    margin: 0 auto 3rem auto;
}

.review-body p {
    margin-bottom: 1.5rem;
}

.review-author {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-line {
        width: 100px;
    }

    .review-card {
        padding: 2rem;
    }

    .review-header {
        flex-direction: column;
        gap: 1rem;
    }

}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12rem;
    /* Increased gap to push form significantly to the right (approx 3cm shift) */
    flex-wrap: wrap;
}

/* Left Column: Info */
.contact-info {
    flex: 1;
    min-width: 300px;
    padding-top: 2rem;
}

.contact-header-group {
    margin-bottom: 4rem;
    position: relative;
    height: 120px;
    /* Space for stacked text */
}

.lets-text {
    font-family: var(--font-sans);
    font-size: 3rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
}

.talk-text {
    font-family: 'Pinyon Script', cursive;
    font-size: 8rem;
    color: #000;
    position: absolute;
    top: 10px;
    left: 150px;
    line-height: 1;
    font-weight: 400;
}

.contact-details {
    margin-bottom: 4rem;
}

.contact-detail-item {
    margin-bottom: 2rem;
}

.contact-detail-item label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-detail-item p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    color: #444;
    letter-spacing: 0.05em;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.black-contact-btn {
    background-color: #000;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.black-contact-btn:hover {
    background-color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.icon-link {
    color: #1a1a1a;
    transition: transform 0.3s;
}

.icon-link:hover {
    transform: translateY(-2px);
}

/* Right Column: Form */
.contact-form-wrapper {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    background-color: #000;
    padding: 3rem;
    border-radius: 12px;
    color: #fff;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 400;
    color: #f3efe9;
    /* Beige text */
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #f3efe9;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #000;
    border: 1px solid #555;
    /* Subtle border */
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f3efe9;
    /* Beige glow on focus */
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #ffe499;
    /* Pale yellow/beige button */
    border: none;
    border-radius: 50px;
    color: #1a1a1a;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: scale(1.02);
    background-color: #ffd700;
}

.form-disclaimer {
    font-size: 0.6rem;
    color: #666;
    margin-top: 1.5rem;
    text-align: center;
    line-height: 1.4;
}

.form-disclaimer a {
    color: #888;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-header-group {
        height: auto;
        margin-bottom: 2rem;
    }

    .talk-text {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        margin-top: -20px;
    }

    .contact-actions {
        justify-content: center;
    }

    .contact-form-wrapper {
        width: 100%;
    }
}