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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.7;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a1a;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1a1a1a;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Visual Section */
.hero-visual {
    margin-top: 70px;
    height: 90vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Page Hero (smaller hero for internal pages) */
.page-hero {
    margin-top: 70px;
    height: 50vh;
    min-height: 400px;
    position: relative;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary:hover {
    background: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}

/* Intro Statement */
.intro-statement {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

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

.large-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.5;
    color: #1a1a1a;
}

/* Visual Story Section */
.visual-story {
    padding: 6rem 2rem;
}

.story-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-text {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.story-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Image Break */
.image-break {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

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

.image-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 300;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #f8f8f8;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0 1.5rem 1.5rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 1.5rem 1rem;
}

.select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #333;
}

/* CTA Visual Block */
.cta-visual-block {
    height: 50vh;
    min-height: 400px;
    position: relative;
}

.cta-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.cta-overlay-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: #f8f8f8;
}

.approach-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.approach-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    background: #f8f8f8;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #ffffff;
}

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

.btn-submit {
    padding: 1.1rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #333;
}

/* Final Visual */
.final-visual {
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

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

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-section a {
    display: block;
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #f0f0f0;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* About Page Specific */
.about-intro {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

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

.about-story {
    padding: 6rem 2rem;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.story-visual {
    flex: 1;
    min-width: 300px;
}

.story-narrative {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.story-narrative h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.story-narrative p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.philosophy-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.philosophy-point {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
}

.philosophy-point h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.philosophy-point p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
}

.experience-visual {
    position: relative;
    height: 60vh;
    min-height: 500px;
}

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

.work-approach {
    padding: 6rem 2rem;
    background: #f8f8f8;
}

.approach-container {
    max-width: 900px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

.approach-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.publications {
    padding: 6rem 2rem;
}

.pub-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.pub-wrapper h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
}

.pub-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pub-item {
    display: flex;
    gap: 2rem;
    align-items: baseline;
    padding: 1.5rem;
    background: #f8f8f8;
}

.pub-year {
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 80px;
    color: #1a1a1a;
}

.pub-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.cta-simple {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

/* Services Page Specific */
.services-intro {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

.services-detailed {
    padding: 6rem 2rem;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-info {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.service-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.price-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-includes {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.service-includes li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.pricing-note {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

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

.note-container h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.note-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

/* Contact Page Specific */
.contact-intro {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

.contact-details {
    padding: 6rem 2rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 3rem;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.info-item a {
    color: #1a1a1a;
    text-decoration: underline;
}

.info-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #777;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
    min-width: 300px;
}

.faq-section {
    padding: 6rem 2rem;
    background: #f8f8f8;
}

.faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #ffffff;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Thanks Page Specific */
.thanks-section {
    padding: 8rem 2rem;
    min-height: 70vh;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
    min-width: 300px;
}

.thanks-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background: #f8f8f8;
    margin-bottom: 2rem;
    display: none;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #333;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #555;
}

.thanks-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.thanks-visual {
    flex: 1;
    min-width: 300px;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 2rem 6rem;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 1rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #444;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.7rem;
    color: #444;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background: #f8f8f8;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem 2rem;
        gap: 1rem;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-visual {
        height: 70vh;
        min-height: 500px;
    }

    .story-grid,
    .approach-wrapper,
    .service-detail,
    .story-container,
    .contact-container,
    .thanks-container {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .thanks-cta {
        flex-direction: column;
    }

    .thanks-cta a {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .large-text {
        font-size: 1.3rem;
    }

    .service-card {
        max-width: 100%;
    }
}