* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ff3b30;
    --accent-color: #ff9500;
    --text-color: #333;
    --light-gray: #fafafa;
    --light-coral: #ffe8e6;
    --border-color: #e0e0e0;
    --max-width: 900px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -20%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, transparent 40%, var(--secondary-color) 40%, var(--secondary-color) 42%, transparent 42%);
    z-index: -1;
    opacity: 0.08;
    transform: rotate(10deg);
}

body::after {
    content: '';
    position: fixed;
    bottom: -60%;
    left: -30%;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, transparent 45%, var(--accent-color) 45%, var(--accent-color) 47%, transparent 47%);
    z-index: -1;
    opacity: 0.15;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

header {
    background: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: visible;
}

.header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-content::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    opacity: 0.05;
    transform: rotate(45deg);
    z-index: -1;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -2px;
    line-height: 1;
}

.tagline {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

nav {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 8px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

main {
    padding: 80px 0;
}

.intro {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 80px;
    color: var(--primary-color);
    padding: 0;
    position: relative;
    max-width: 70%;
    font-weight: 300;
}

.intro::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -40px;
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    opacity: 0.1;
    transform: rotate(45deg);
}

.intro a,
.about a,
.key-work a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.intro a:hover,
.about a:hover,
.key-work a:hover {
    border-bottom: 1px solid var(--secondary-color);
}

section {
    margin-bottom: 140px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -20px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    opacity: 0.2;
    z-index: -1;
}

.about {
    padding-left: 80px;
    position: relative;
    margin-bottom: 80px;
}

.about::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
}

.about p {
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.key-work {
    background-color: var(--light-gray);
    margin-left: -40px;
    margin-right: -40px;
    padding: 60px 40px;
    position: relative;
}

.key-work .container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.key-work::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    opacity: 0.07;
    transform: rotate(15deg);
}

.key-work ul {
    list-style: none;
    display: grid;
    gap: 24px;
}

.key-work li {
    padding: 20px;
    background: white;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.key-work li:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.newsletter {
    margin-bottom: 140px;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.newsletter-about p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.newsletter-about p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #666;
}

.newsletter-embed {
    background-color: var(--light-gray);
    padding: 40px;
}

.newsletter-placeholder {
    color: #666;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    padding: 20px;
    background: white;
    text-align: center;
}

footer {
    background-color: var(--light-gray);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav {
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 24px;
    }
    
    .intro {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .about {
        padding-left: 20px;
    }
    
    .key-work {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-embed {
        padding: 30px 20px;
    }
}