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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #c49a6c;
    --color-accent: #8b7355;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-alt: #f8f6f3;
    --color-border: #e0d7cc;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

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

.main-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    padding: 1.5rem 0;
}

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

.brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

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

.nav-links a {
    color: var(--color-text);
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-btn {
    background-color: var(--color-secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(139, 115, 85, 0.8)),
                url('../images/hero-background.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

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

.hero-section h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.cta-primary {
    background-color: var(--color-secondary);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.story-intro {
    background-color: var(--color-bg);
    padding: 6rem 0;
}

.story-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
}

.story-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.problem-amplification {
    background-color: var(--color-bg-alt);
    padding: 6rem 0;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.image-block img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.insight-section {
    background-color: var(--color-primary);
    color: white;
    padding: 6rem 0;
}

.insight-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.insight-intro {
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 4rem;
    opacity: 0.95;
}

.insight-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.cta-mid {
    padding: 5rem 2rem;
    text-align: center;
    background-color: var(--color-bg);
}

.cta-centered {
    max-width: 700px;
    margin: 0 auto;
}

.cta-secondary {
    background-color: transparent;
    color: var(--color-accent);
    padding: 1.25rem 3rem;
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--color-accent);
    color: white;
}

.collections-preview {
    padding: 6rem 2rem;
    background-color: var(--color-bg-alt);
}

.collections-preview h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.collection-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.collection-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.collection-item.reverse {
    flex-direction: row-reverse;
}

.collection-item img {
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.collection-text {
    flex: 1;
}

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

.trust-building {
    background-color: var(--color-bg);
    padding: 6rem 0;
}

.trust-elements {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 1rem;
}

.testimonials-inline {
    background-color: var(--color-bg-alt);
    padding: 6rem 0;
}

.testimonials-inline h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.process-reveal {
    background-color: var(--color-bg);
    padding: 6rem 0;
}

.process-steps {
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.benefits-reveal {
    background-color: var(--color-bg-alt);
    padding: 6rem 2rem;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.benefit-block {
    flex: 1 1 calc(50% - 1.5rem);
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-block h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.pricing-section {
    background-color: var(--color-bg);
    padding: 6rem 0;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 4rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: white;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.price-card p {
    flex-grow: 1;
    color: var(--color-text-light);
    font-size: 1rem;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-price {
    background-color: var(--color-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.btn-price:hover {
    background-color: var(--color-secondary);
}

.urgency-section {
    background-color: #fff8f0;
    padding: 4rem 0;
    border-top: 3px solid var(--color-secondary);
    border-bottom: 3px solid var(--color-secondary);
}

.urgency-content p {
    font-size: 1.15rem;
}

.urgency-content strong {
    color: var(--color-secondary);
    font-weight: 700;
}

.form-section {
    background-color: var(--color-bg-alt);
    padding: 6rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    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: var(--color-accent);
}

.btn-submit {
    background-color: var(--color-secondary);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--color-accent);
}

.final-cta {
    background-color: var(--color-primary);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-final {
    background-color: var(--color-secondary);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: flex;
    gap: 4rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-cookie.accept {
    background-color: var(--color-secondary);
    color: white;
}

.btn-cookie.accept:hover {
    background-color: var(--color-accent);
}

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(139, 115, 85, 0.8)),
                url('../images/page-hero.jpg') center/cover;
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    color: white;
    font-size: 3.5rem;
}

.about-intro,
.services-intro {
    padding: 5rem 2rem;
}

.lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.about-journey {
    background-color: var(--color-bg-alt);
    padding: 6rem 0;
}

.journey-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.journey-block {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.journey-block.reverse {
    flex-direction: row-reverse;
}

.journey-block img {
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.journey-text {
    flex: 1;
}

.about-mission {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.about-artisans {
    background-color: var(--color-bg-alt);
    padding: 6rem 0;
}

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

.artisan-card {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.artisan-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.artisan-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.about-values {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item h3 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.about-cta,
.services-cta,
.visit-section,
.contact-final-cta {
    text-align: center;
    padding: 5rem 0;
}

.service-detailed {
    padding: 5rem 2rem;
    background-color: var(--color-bg);
}

.service-detailed.reverse {
    background-color: var(--color-bg-alt);
}

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-content {
    flex: 1;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-includes {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
}

.service-includes h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-service {
    background-color: var(--color-accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--color-secondary);
}

.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.info-block h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    overflow: hidden;
}

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

.map-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.thanks-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(139, 115, 85, 0.8)),
                url('../images/thanks-bg.jpg') center/cover;
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

.thanks-hero h1 {
    color: white;
}

.thanks-message {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
}

.thanks-content {
    padding: 5rem 0;
}

.thanks-info {
    margin-bottom: 4rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.step-text h3 {
    margin-bottom: 0.5rem;
}

.thanks-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    padding: 1rem 2rem;
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: white;
}

.thanks-testimonial {
    background-color: var(--color-bg-alt);
    padding: 4rem 0;
}

.featured-testimonial {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.featured-testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.featured-testimonial cite {
    font-style: normal;
    color: var(--color-text-light);
}

.legal-content {
    padding: 5rem 2rem;
    background-color: var(--color-bg);
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

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

.legal-table th,
.legal-table td,
.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid var(--color-border);
    text-align: left;
}

.legal-table th,
.cookie-table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .split-content,
    .collection-item,
    .journey-block,
    .service-container,
    .contact-grid {
        flex-direction: column;
    }

    .collection-item.reverse,
    .journey-block.reverse {
        flex-direction: column;
    }

    .insight-grid,
    .trust-elements,
    .artisan-grid {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .price-card {
        flex: 1 1 100%;
    }
}

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

    h2 {
        font-size: 2rem;
    }

    .hero-section h1 {
        font-size: 2.75rem;
    }

    .nav-links {
        display: none;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .content-narrow,
    .content-wide {
        padding: 3rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}