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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

/* Typography - Minimal Premium: Big, Bold, Spacious */
h1, h2, h3, h4 {
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

a:hover {
    opacity: 0.7;
}

/* Navigation - Minimal Premium: Clean, Floating */
.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.nav-brand a {
    color: #1a1a1a;
}

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

.nav-links a {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 400;
}

.nav-links a.active {
    color: #1a1a1a;
    font-weight: 500;
}

/* Hero - Minimal Premium: Large Spacing, Minimal Elements */
.hero-minimal {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 12rem 5% 8rem;
    gap: 4rem;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-visual {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* CTAs - Minimal Premium: Clean Buttons */
.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.125rem;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cta-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-size: 1.125rem;
    border-radius: 2px;
    transition: background 0.3s ease, color 0.3s ease;
}

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

/* Statement Section - Large Typography */
.intro-statement {
    padding: 10rem 5%;
    background: #f8f8f8;
}

.statement-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.large-statement {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.3;
    color: #1a1a1a;
}

/* Value Narrative - Split Layout */
.value-narrative {
    padding: 10rem 5%;
}

.narrative-block {
    display: flex;
    gap: 8rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.narrative-text {
    flex: 1;
}

.narrative-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.narrative-text p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.narrative-image {
    flex: 1;
}

.narrative-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Trust Section - Centered Quote */
.trust-section {
    padding: 8rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.trust-quote {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #ffffff;
}

.trust-author {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Services Preview */
.services-preview {
    padding: 10rem 5%;
}

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

.services-intro h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.25rem;
    color: #6a6a6a;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 3rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: #1a1a1a;
}

.service-icon {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #f8f8f8;
    color: #1a1a1a;
    border-radius: 2px;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

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

.services-footer {
    text-align: center;
    margin-top: 4rem;
}

.link-underline {
    font-size: 1.125rem;
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
}

/* Approach Section */
.approach-section {
    padding: 10rem 5%;
    background: #f8f8f8;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.step {
    flex: 1;
    min-width: 250px;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 200;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
}

/* CTA Bold Section */
.cta-bold {
    padding: 12rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.cta-bold-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-bold-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 300;
}

.cta-bold-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Form Section */
.form-section {
    padding: 10rem 5%;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.form-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.form-intro p {
    font-size: 1.125rem;
    color: #6a6a6a;
}

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

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

.form-group label {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    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;
}

.btn-submit {
    padding: 1.25rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: inherit;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
    padding: 12rem 5% 6rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.5rem;
    color: #6a6a6a;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 6rem 5%;
}

.story-wrapper {
    display: flex;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Values Section */
.values-section {
    padding: 8rem 5%;
    background: #f8f8f8;
}

.values-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.values-intro h2 {
    font-size: 3rem;
    font-weight: 300;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 8rem 5%;
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.team-intro h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.25rem;
    color: #6a6a6a;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.member-image {
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 4px;
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
}

.member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.member-role {
    font-size: 1rem;
    color: #6a6a6a;
    margin-bottom: 1rem;
}

.member p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Approach Detail */
.approach-detail {
    padding: 8rem 5%;
}

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

.approach-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.approach-intro {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: #6a6a6a;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.approach-item p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 10rem 5%;
    background: #f8f8f8;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #6a6a6a;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.125rem;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Services Detail */
.services-detail {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    margin-bottom: 8rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 3rem;
}

.service-detail-info {
    flex: 1;
}

.service-detail-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.service-tagline {
    font-size: 1.25rem;
    color: #6a6a6a;
}

.service-detail-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.price-label {
    font-size: 0.9rem;
    color: #8a8a8a;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.service-detail-content {
    display: flex;
    gap: 6rem;
    margin-bottom: 3rem;
}

.service-description {
    flex: 1.2;
}

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

.service-description h4 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.service-description ul {
    list-style: none;
    padding: 0;
}

.service-description li {
    font-size: 1rem;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-description li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.service-detail-footer {
    text-align: center;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.btn-service:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Pricing Notes */
.pricing-notes {
    padding: 4rem 5%;
    background: #f8f8f8;
    margin: 4rem 0;
}

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

.notes-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.notes-content p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Info */
.contact-info-section {
    padding: 6rem 5%;
}

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

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.8;
}

.contact-item a {
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.contact-note {
    font-size: 0.9rem;
    color: #8a8a8a;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links a {
    font-size: 1rem;
    color: #1a1a1a;
}

/* Contact Text Section */
.contact-text-section {
    padding: 6rem 5%;
    background: #f8f8f8;
}

.contact-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-text-content p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 4px;
}

.map-overlay p {
    font-size: 1.125rem;
    margin: 0;
    color: #1a1a1a;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 5%;
}

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

.faq-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
}

.faq-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.faq-item p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.email-link {
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

/* Thanks Page */
.thanks-hero {
    padding: 12rem 5% 6rem;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
}

.thanks-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.thanks-message {
    font-size: 1.25rem;
    color: #6a6a6a;
    margin-bottom: 1rem;
}

.thanks-service {
    font-size: 1.125rem;
    color: #1a1a1a;
    font-weight: 500;
    display: none;
}

/* Next Steps */
.next-steps {
    padding: 6rem 5%;
}

.steps-content {
    max-width: 1000px;
    margin: 0 auto;
}

.steps-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 200;
    color: #d0d0d0;
    min-width: 60px;
}

.step-text h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.step-text p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Thanks Resources */
.thanks-resources {
    padding: 6rem 5%;
    background: #f8f8f8;
}

.resources-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.resources-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.resources-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.resources-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.resource-link {
    padding: 1rem 2rem;
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.resource-link:hover {
    opacity: 1;
    border-color: #1a1a1a;
}

/* Legal Pages */
.legal-page {
    padding: 12rem 5% 6rem;
}

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

.legal-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.legal-intro {
    font-size: 1rem;
    color: #8a8a8a;
    margin-bottom: 4rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 3rem 0 1.5rem;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.legal-content h4 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 500;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #6a6a6a;
}

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

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

.gdpr-table th,
.cookie-table th {
    background: #f8f8f8;
    font-weight: 500;
}

/* Footer */
.site-footer {
    padding: 6rem 5% 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: #ffffff;
}

.footer-brand p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.footer-col a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 2rem 5%;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: inherit;
}

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

.btn-cookie.reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }

    .hero-title { font-size: 4rem; }
    .large-statement { font-size: 2.5rem; }

    .narrative-block,
    .story-wrapper,
    .service-detail-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .service-detail-price {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .minimal-nav {
        padding: 2rem 5%;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-minimal {
        padding: 10rem 5% 6rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .large-statement {
        font-size: 2rem;
    }

    .service-cards,
    .approach-steps,
    .values-grid,
    .team-members {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .cta-bold-content h2 {
        font-size: 2.75rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-value {
        font-size: 2rem;
    }

    .service-detail-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
    }
}
