/* ===================================
   Reset & Base Styles
   =================================== */

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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6d4c41;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ===================================
   Container & Layout
   =================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #2c2c2c;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f5f5f5;
    color: #6d4c41;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #6d4c41;
    color: #ffffff;
    border: 2px solid #6d4c41;
}

.btn-primary:hover {
    background-color: #5a3d33;
    border-color: #5a3d33;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #6d4c41;
    border: 2px solid #6d4c41;
}

.btn-secondary:hover {
    background-color: #6d4c41;
    color: #ffffff;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f6f4 0%, #ffffff 100%);
}

.hero-content {
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-visual {
    margin-top: 2rem;
}

/* ===================================
   Page Hero
   =================================== */

.page-hero {
    padding: 3rem 0 2rem;
    background-color: #f8f6f4;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6d6d6d;
}

/* ===================================
   Sections
   =================================== */

section {
    padding: 3.5rem 0;
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

/* ===================================
   Company Story
   =================================== */

.company-story {
    background-color: #fafafa;
}

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

.story-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

/* ===================================
   Philosophy
   =================================== */

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

.philosophy-text {
    max-width: 700px;
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 1.5rem;
    background-color: #fafafa;
    border-left: 4px solid #6d4c41;
}

.value-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.value-item p {
    color: #6d6d6d;
    margin-bottom: 0;
}

/* ===================================
   Featured Pieces
   =================================== */

.featured-pieces {
    background-color: #f8f6f4;
}

.pieces-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.piece-card {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.piece-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.piece-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.piece-icon img {
    width: 100%;
    height: 100%;
}

.piece-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.piece-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.piece-highlight {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #6d4c41;
}

/* ===================================
   Process
   =================================== */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    padding: 1.5rem;
    background-color: #fafafa;
    border-left: 4px solid #6d4c41;
}

.step-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #6d4c41;
    margin-bottom: 0.75rem;
}

.step h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: #4a4a4a;
    margin-bottom: 0;
}

/* ===================================
   Testimonials
   =================================== */

.testimonials {
    background-color: #fafafa;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #6d4c41;
    font-style: italic;
}

.testimonial p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: #6d6d6d;
    font-size: 0.9375rem;
    margin-top: 1rem;
}

/* ===================================
   Statistics
   =================================== */

.statistics {
    background-color: #6d4c41;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* ===================================
   Materials
   =================================== */

.materials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.material-card {
    padding: 1.5rem;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
}

.material-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #6d4c41;
}

.material-card p {
    color: #4a4a4a;
    margin-bottom: 0;
}

/* ===================================
   FAQ
   =================================== */

.faq {
    background-color: #fafafa;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f6f4;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #6d4c41;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* ===================================
   Trust Indicators
   =================================== */

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background-color: #fafafa;
}

.trust-item img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: #4a4a4a;
    margin-bottom: 0;
}

/* ===================================
   CTA Section
   =================================== */

.cta {
    background-color: #6d4c41;
    color: #ffffff;
    text-align: center;
}

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

.cta h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===================================
   Timeline
   =================================== */

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #6d4c41;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #6d4c41;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #6d4c41;
}

.timeline-year {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6d4c41;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #4a4a4a;
}

/* ===================================
   Team Grid
   =================================== */

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    padding: 2rem;
    background-color: #fafafa;
    border-left: 4px solid #6d4c41;
}

.member-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.member-icon img {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #4a4a4a;
    margin-bottom: 0;
}

/* ===================================
   Values Deep
   =================================== */

.values-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-block {
    max-width: 800px;
    margin: 0 auto;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #6d4c41;
}

.value-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* ===================================
   Achievements
   =================================== */

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-card {
    padding: 1.5rem;
    background-color: #fafafa;
    border-left: 4px solid #6d4c41;
}

.achievement-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.achievement-card p {
    color: #4a4a4a;
    margin-bottom: 0;
}

/* ===================================
   Services List
   =================================== */

.services-intro {
    background-color: #f8f6f4;
    padding: 2rem 0;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-item {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon {
    width: 72px;
    height: 72px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-title-price h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-price {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: #6d4c41;
}

.service-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    line-height: 1.7;
    list-style: none;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6d4c41;
    font-weight: 700;
}

.service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f8f6f4;
    color: #6d6d6d;
    font-style: italic;
    border-left: 3px solid #6d4c41;
}

/* ===================================
   Service Benefits
   =================================== */

.service-benefits {
    background-color: #f8f6f4;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #6d4c41;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #4a4a4a;
    margin-bottom: 0;
}

/* ===================================
   Process Overview
   =================================== */

.process-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step-simple {
    padding: 1.5rem;
    background-color: #fafafa;
}

.process-step-simple h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #6d4c41;
}

.process-step-simple p {
    color: #4a4a4a;
    margin-bottom: 0;
}

/* ===================================
   Pricing
   =================================== */

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

.pricing-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.pricing-factors {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.pricing-factors li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    list-style: none;
}

.pricing-factors li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6d4c41;
    font-weight: 700;
}

/* ===================================
   Contact Page
   =================================== */

.contact-intro {
    background-color: #f8f6f4;
    padding: 2rem 0;
}

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

.contact-card {
    padding: 2rem;
    background-color: #fafafa;
    border-left: 4px solid #6d4c41;
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.contact-icon img {
    width: 100%;
    height: 100%;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-card a {
    color: #6d4c41;
    font-weight: 600;
}

.contact-note {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: #6d6d6d;
    font-style: italic;
}

/* ===================================
   Visit Info
   =================================== */

.visit-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.visit-block h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #6d4c41;
}

.visit-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* ===================================
   Directions
   =================================== */

.directions {
    background-color: #fafafa;
}

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

.direction-method {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #6d4c41;
}

.direction-method h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.direction-method p {
    color: #4a4a4a;
    line-height: 1.7;
}

.direction-method ul {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
}

.direction-method li {
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    list-style: disc;
}

.direction-note {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: #6d6d6d;
    font-style: italic;
}

.directions-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f6f4;
    border-left: 4px solid #6d4c41;
}

/* ===================================
   Company Info Block
   =================================== */

.company-info-block {
    background-color: #f8f6f4;
}

.legal-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* ===================================
   Thank You Page
   =================================== */

.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-icon img {
    width: 100%;
    height: 100%;
}

.thank-you-lead {
    font-size: 1.25rem;
    color: #6d4c41;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.next-steps {
    background-color: #fafafa;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #6d4c41;
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: #6d4c41;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background-color: #fafafa;
    border-left: 4px solid #6d4c41;
}

.info-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.info-card a {
    color: #6d4c41;
    font-weight: 600;
}

/* ===================================
   Legal Pages
   =================================== */

.legal-hero {
    padding: 3rem 0 2rem;
    background-color: #f8f6f4;
    text-align: center;
}

.legal-date {
    font-size: 0.9375rem;
    color: #6d6d6d;
    font-style: italic;
}

.legal-content {
    padding: 3rem 0;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.legal-text h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #6d4c41;
}

.legal-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-text li {
    padding-left: 1rem;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    line-height: 1.7;
    list-style: disc;
}

.note-box {
    padding: 1.25rem;
    background-color: #fff8e1;
    border-left: 4px solid #ffb300;
    margin: 1.5rem 0;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

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

.footer-col p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: #e0e0e0;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.875rem;
}

/* ===================================
   Cookie Banner
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-cookie-accept,
.btn-cookie-settings {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #6d4c41;
    color: #ffffff;
    border: none;
}

.btn-cookie-accept:hover {
    background-color: #5a3d33;
}

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

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

/* ===================================
   Cookie Modal
   =================================== */

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 3000;
    padding: 1.5rem;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: #ffffff;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    border-radius: 4px;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.25rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cookie-option span {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.btn-cookie-save,
.btn-cookie-close {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-save {
    background-color: #6d4c41;
    color: #ffffff;
    border: none;
}

.btn-cookie-save:hover {
    background-color: #5a3d33;
}

.btn-cookie-close {
    background-color: transparent;
    color: #6d4c41;
    border: 2px solid #6d4c41;
}

.btn-cookie-close:hover {
    background-color: #f8f6f4;
}

/* ===================================
   Craftsmanship Section
   =================================== */

.craftsmanship {
    background-color: #fafafa;
}

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

.craftsmanship-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #6d4c41;
}

.detail-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.detail-item p {
    color: #4a4a4a;
    margin-bottom: 0;
}

/* ===================================
   Responsive Design - Tablet (768px+)
   =================================== */

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

    h2 {
        font-size: 2.25rem;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: transparent;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-content {
        margin-bottom: 0;
    }

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

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-image {
        flex: 1;
    }

    .philosophy-grid {
        flex-direction: row;
        gap: 4rem;
    }

    .philosophy-text {
        flex: 1;
    }

    .philosophy-values {
        flex: 1;
    }

    .pieces-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .piece-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .step {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .testimonial {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat {
        flex: 1 1 calc(50% - 1rem);
    }

    .materials-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .material-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .trust-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .team-member {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .achievements-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .achievement-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .service-header {
        flex-direction: row;
        align-items: center;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .directions-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .direction-method {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .steps-grid {
        flex-direction: row;
        gap: 1.5rem;
    }

    .step-card {
        flex: 1;
    }

    .info-grid {
        flex-direction: row;
        gap: 1.5rem;
    }

    .info-card {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 calc(50% - 1rem);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-direction: row;
        flex-shrink: 0;
    }

    .craftsmanship-details {
        flex-direction: row;
        gap: 1.5rem;
    }

    .detail-item {
        flex: 1;
    }
}

/* ===================================
   Responsive Design - Desktop (1024px+)
   =================================== */

@media (min-width: 1024px) {
    .pieces-grid {
        gap: 2rem;
    }

    .piece-card {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .process-steps {
        gap: 2rem;
    }

    .step {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .testimonials-grid {
        gap: 2rem;
    }

    .testimonial {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .materials-grid {
        gap: 2rem;
    }

    .material-card {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .trust-grid {
        gap: 2rem;
    }

    .trust-item {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .team-grid {
        gap: 2rem;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .achievements-grid {
        gap: 2rem;
    }

    .achievement-card {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .benefits-grid {
        gap: 2rem;
    }

    .benefit-card {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-card {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .directions-content {
        gap: 2rem;
    }

    .direction-method {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-col {
        flex: 1 1 calc(25% - 1.5rem);
    }
}

/* ===================================
   Accessibility & Print Styles
   =================================== */

:focus {
    outline: 2px solid #6d4c41;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid #6d4c41;
    outline-offset: 2px;
}

@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .mobile-menu-toggle,
    .cta {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    a {
        text-decoration: underline;
    }
}