:root {
    --color-primary: #C0544E;
    --color-secondary: #E07B6C;
    --color-accent: #2A5C7B;
    --color-bg: #FFF8F6;
    --color-surface: #FFFFFF;
    --color-text: #3A1F1D;
    --color-text-light: #8A6B66;
    --font-heading: 'Bookman Old Style', 'URW Bookman', serif;
    --font-body: 'Lucida Sans', 'Lucida Sans Unicode', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(192, 84, 78, 0.03) 35px,
        rgba(192, 84, 78, 0.03) 36px
    );
    pointer-events: none;
    z-index: 1;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

header.scrolled {
    background: var(--color-surface);
    box-shadow: 0 2px 10px rgba(58, 31, 29, 0.1);
}

#main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-primary);
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-surface) 100%);
    scroll-snap-align: start;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 84, 78, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.founder-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1rem;
    position: relative;
}

.founder-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-primary);
    position: absolute;
    top: -1rem;
    left: -2rem;
}

.quote-attribution {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: var(--color-surface);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.cta-button, .submit-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    min-height: 44px;
    min-width: 44px;
}

.cta-button:hover, .submit-button:hover {
    background: var(--color-secondary);
    box-shadow: 0 4px 15px rgba(192, 84, 78, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    min-height: 100vh;
    scroll-snap-align: start;
    position: relative;
    z-index: 2;
}

.story-section {
    background: var(--color-surface);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.values-section {
    background: linear-gradient(135deg, rgba(42, 92, 123, 0.05) 0%, rgba(224, 123, 108, 0.05) 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.services-overview {
    background: var(--color-bg);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.team-preview {
    background: var(--color-surface);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.contact-teaser {
    background: linear-gradient(135deg, rgba(192, 84, 78, 0.05) 0%, var(--color-bg) 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--color-text);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}

.value-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 0 0 8px 8px;
    border-top: 6px solid var(--color-primary);
    box-shadow: 0 2px 10px rgba(58, 31, 29, 0.1);
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.value-card.visible {
    transform: translateX(0);
    opacity: 1;
}

.value-card:nth-child(even) {
    transform: translateX(50px);
}

.value-card:nth-child(even).visible {
    transform: translateX(0);
}

/* Services Bands */
.services-bands {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-band {
    background: var(--color-surface);
    padding: 2rem;
    border-left: 6px solid var(--color-primary);
    margin-bottom: 1px;
}

.service-band:nth-child(even) {
    background: rgba(192, 84, 78, 0.02);
    border-left-color: var(--color-secondary);
}

.service-band:nth-child(3) {
    border-left-color: var(--color-accent);
}

.service-band h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-primary);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.team-avatar::before {
    content: attr(data-initials);
}

.team-avatar:nth-child(3n+2) {
    background: var(--color-secondary);
}

.team-avatar:nth-child(3n+3) {
    background: var(--color-accent);
}

/* Contact Section */
.contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    text-align: center;
}

.contact-info a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Services Page Styles */
.services-detailed {
    background: var(--color-surface);
    padding: 80px 0;
}

.service-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.service-section:nth-child(even) {
    background: rgba(224, 123, 108, 0.03);
    padding: 3rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.service-features ul,
.service-deliverables ul {
    list-style: none;
    padding: 0;
}

.service-features li,
.service-deliverables li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(58, 31, 29, 0.1);
}

.service-features li::before,
.service-deliverables li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-approach {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Tab System */
.service-tabs {
    background: rgba(42, 92, 123, 0.05);
    padding: 80px 0;
}

.tab-container {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(58, 31, 29, 0.1);
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-text-light);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    min-height: 44px;
}

.tab-button.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.comparison-item {
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

/* About Page Styles */
.solution-section {
    background: var(--color-surface);
    padding: 80px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    padding: 1.5rem;
    background: rgba(192, 84, 78, 0.03);
    border-radius: 8px;
}

.milestones-section {
    background: rgba(224, 123, 108, 0.05);
    padding: 80px 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-year {
    background: var(--color-primary);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.timeline-content {
    margin-left: 2rem;
    flex: 1;
}

.team-spotlight {
    background: var(--color-surface);
    padding: 80px 0;
}

.team-detailed {
    display: grid;
    gap: 3rem;
}

.team-member-detail {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(42, 92, 123, 0.02);
    border-radius: 8px;
}

.team-member-detail:nth-child(even) {
    background: rgba(224, 123, 108, 0.02);
    flex-direction: row-reverse;
}

.member-info {
    flex: 1;
}

.member-title {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Portfolio Page Styles */
.portfolio-showcase {
    background: var(--color-surface);
    padding: 80px 0;
}

.case-study {
    margin-bottom: 4rem;
    background: var(--color-bg);
    padding: 3rem;
    border-radius: 8px;
    border-top: 6px solid var(--color-primary);
}

.case-study:nth-child(even) {
    border-top-color: var(--color-secondary);
}

.case-study-header {
    text-align: center;
    margin-bottom: 2rem;
}

.case-study-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.case-study-meta span {
    background: var(--color-surface);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.challenge, .solution {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 8px;
}

.outcomes {
    background: linear-gradient(135deg, rgba(42, 92, 123, 0.05) 0%, rgba(192, 84, 78, 0.05) 100%);
    padding: 2rem;
    border-radius: 8px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.outcome-stat {
    text-align: center;
}

.stat-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--color-primary) 0deg, var(--color-primary) calc(var(--percentage) * 3.6deg), #e0e0e0 calc(var(--percentage) * 3.6deg));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.stat-circle::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--color-surface);
    border-radius: 50%;
}

.stat-number {
    position: relative;
    z-index: 1;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.outcome-summary {
    font-style: italic;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 2rem;
}

/* Testimonial Section */
.testimonial-section {
    background: rgba(192, 84, 78, 0.05);
    padding: 80px 0;
    text-align: center;
}

.full-width-testimonial {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

.full-width-testimonial::before,
.full-width-testimonial::after {
    content: '"';
    font-size: 3rem;
    color: var(--color-primary);
    position: absolute;
    top: -1rem;
}

.full-width-testimonial::before {
    left: -3rem;
}

.full-width-testimonial::after {
    right: -3rem;
}

.testimonial-attribution {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* FAQ Page Styles */
.faq-section {
    background: var(--color-surface);
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(58, 31, 29, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--color-bg);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    min-height: 44px;
}

.faq-question:hover {
    background: rgba(192, 84, 78, 0.05);
}

.faq-question[aria-expanded="true"] {
    background: var(--color-primary);
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 1000px;
}

.faq-content {
    padding: 1.5rem;
    background: var(--color-surface);
}

/* Contact Page Styles */
.contact-section {
    background: var(--color-surface);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(58, 31, 29, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-surface);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-surface);
    padding: 0 0.5rem;
    color: var(--color-text-light);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group textarea + label {
    top: 1rem;
    transform: translateY(0);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: 0;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    position: static;
    transform: none;
    background: none;
    padding: 0;
}

.consultation-section {
    background: rgba(224, 123, 108, 0.05);
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Legal Pages */
.legal-content {
    background: var(--color-surface);
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.privacy-qa .qa-item {
    margin-bottom: 3rem;
}

.privacy-qa .qa-item h2 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-details {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Footer */
footer {
    background: var(--color-text);
    color: var(--color-bg);
    position: relative;
    overflow: hidden;
    padding: 60px 0 20px;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    font-family: var(--font-heading);
    opacity: 0.05;
    white-space: nowrap;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-bg);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 248, 246, 0.2);
    position: relative;
    z-index: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-text);
    color: var(--color-bg);
    padding: 1rem 2rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: flex;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

#accept-cookies {
    background: var(--color-primary);
    color: white;
}

#accept-cookies:hover {
    background: var(--color-secondary);
}

#decline-cookies {
    background: transparent;
    color: var(--color-bg);
    border: 1px solid var(--color-bg);
}

#decline-cookies:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

/* Animation Classes */
.animate-slide-in {
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-slide-in:nth-child(even) {
    transform: translateX(50px);
}

.animate-slide-in.visible {
    transform: translateX(0);
    opacity: 1;
}

/* Mobile Styles */
@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
    }
    
    section {
        min-height: auto;
        scroll-snap-align: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-surface);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        padding: 1rem;
    }

    .founder-quote {
        font-size: 1.5rem;
    }

    .founder-quote::before {
        font-size: 3rem;
        top: -0.5rem;
        left: -1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .services-bands {
        gap: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

    .case-study-content {
        grid-template-columns: 1fr;
    }

    .case-study-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }

    .team-member-detail {
        flex-direction: column;
        text-align: center;
    }

    .team-member-detail:nth-child(even) {
        flex-direction: column;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .footer-watermark {
        font-size: 20vw;
    }

    .full-width-testimonial {
        font-size: 1.5rem;
    }

    .full-width-testimonial::before,
    .full-width-testimonial::after {
        font-size: 2rem;
    }

    .full-width-testimonial::before {
        left: -2rem;
    }

    .full-width-testimonial::after {
        right: -2rem;
    }
}

@media (max-width: 480px) {
    #main-nav {
        padding: 0.5rem 1rem;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .founder-quote {
        font-size: 1.2rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .case-study {
        padding: 2rem 1rem;
    }

    .legal-content {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: 900px;
    }

    .founder-quote {
        font-size: 2.5rem;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
        scroll-snap-type: none;
    }

    section {
        scroll-snap-align: none;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-slide-in {
        transform: none;
        opacity: 1;
    }

    .value-card {
        transform: none;
        opacity: 1;
    }
}