/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Color Palette */
:root {
    /* Greys (50% and darker) */
    --grey-50: #808080;
    --grey-60: #666666;
    --grey-70: #4d4d4d;
    --grey-80: #333333;
    --grey-90: #1a1a1a;
    
    /* Teal/Turquoise Accent Colors */
    --teal-dark: #2C5F5F;
    --teal-mid: #4A9B9B;
    --teal-light: #5FB3B3;
    --teal-pale: #A8D5D5;
    
    /* Base Colors */
    --bg-primary: #fafafa;
    --bg-secondary: #f5f5f5;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --border-light: #e0e0e0;
    --border-mid: #d0d0d0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--grey-90);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.75rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.25rem;
    margin-top: 3rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    letter-spacing: 0.01em;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--teal-mid);
}

a:focus {
    outline: 2px solid var(--teal-light);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding-top: 80px;
}

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

.section + .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.subtitle {
    font-size: 1.35rem;
    color: var(--grey-60);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* About Section */
.about-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    background-color: var(--teal-mid);
    color: #fff;
    border: 2px solid var(--teal-mid);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(74, 155, 155, 0.2);
}

.btn:hover {
    background-color: transparent;
    color: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 155, 155, 0.3);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(74, 155, 155, 0.2);
}

/* Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem 2rem;
    margin-top: 3rem;
}

.work-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover {
    transform: translateY(-4px);
}

.work-item a {
    display: block;
}

.work-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-60);
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
}

.work-item:hover .work-placeholder {
    background: linear-gradient(135deg, #d8d8d8 0%, #e0e0e0 100%);
    box-shadow: 0 8px 28px rgba(74, 155, 155, 0.12);
    border-color: var(--teal-pale);
}

/* Image Placeholders */
.image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-60);
    font-size: 0.9rem;
}

/* Bio Section */
.bio-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    margin-top: 2.5rem;
}

.bio-image .image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bio-text p {
    margin-bottom: 1.75rem;
    line-height: 1.85;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

/* Timeline (for Bio) */
.timeline {
    list-style: none;
    margin-top: 2rem;
}

.timeline li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: padding-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline li:hover {
    padding-left: 0.5rem;
}

.timeline li:last-child {
    border-bottom: none;
}

.timeline strong {
    color: var(--teal-dark);
    margin-right: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Artist Statement */
.statement-wrapper {
    max-width: 800px;
}

.statement-section {
    margin-bottom: 4rem;
}

.statement-intro {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--grey-80);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.statement-content p {
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 1.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

/* Contact Page */
.contact-section h1 {
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--grey-60);
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-mid), var(--teal-light));
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(74, 155, 155, 0.15);
    border-color: var(--teal-pale);
}

.contact-link-item:hover::before {
    transform: scaleY(1);
}

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle at center,
        rgba(74, 155, 155, 0.12) 0%,
        rgba(74, 155, 155, 0.06) 100%
    );
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link-item:hover .contact-icon {
    background: var(--teal-mid);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--teal-dark);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link-item:hover .contact-icon svg {
    color: #fff;
}

.contact-link-content h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--grey-80);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-link-content p {
    font-size: 1.1rem;
    color: var(--grey-60);
    margin: 0;
    letter-spacing: 0.01em;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link-item:hover .contact-link-content p {
    color: var(--teal-dark);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
    color: #fff;
    padding: 0.25rem 0;
    text-align: center;
    margin-top: 6rem;
    border-top: 2px solid var(--teal-light);
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}
