@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
    --color-primary: #8B4513;
    --color-secondary: #D2691E;
    --color-accent: #CD853F;
    --color-dark: #2C1810;
    --color-light: #FDF5E6;
    --color-cream: #FAF0E6;
    --color-warm: #F5DEB3;
    --color-text: #3D2914;
    --color-text-light: #6B4423;
    --color-border: #D4C4B0;
    --color-success: #5D8A5D;
    --color-error: #C75050;
    --color-overlay: rgba(44, 24, 16, 0.85);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Work Sans', sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 50%;
    --shadow-sm: 0 1px 2px rgba(44, 24, 16, 0.08);
    --shadow-md: 0 4px 6px rgba(44, 24, 16, 0.1);
    --shadow-lg: 0 10px 15px rgba(44, 24, 16, 0.1);
    --shadow-xl: 0 20px 25px rgba(44, 24, 16, 0.15);
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --max-width: 75rem;
    --header-height: 4rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.header {
    position: fixed;
    top: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - var(--space-xl));
    max-width: 50rem;
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) var(--space-md);
    transition: all var(--transition-base);
}

.header.hidden {
    transform: translateX(-50%) translateY(-150%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

.logo:hover {
    color: var(--color-primary);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-desktop a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.burger {
    width: 1.75rem;
    height: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transition: all var(--transition-base);
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: translateY(0.5625rem) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-0.5625rem) rotate(-45deg);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.nav-mobile a {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-light);
    font-weight: 500;
}

.nav-mobile a:hover {
    color: var(--color-accent);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 50%, var(--color-warm) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 69, 19, 0.1);
    border-radius: var(--radius-sm);
}

.hero-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
    color: var(--color-dark);
}

.hero-desc {
    font-size: var(--text-base);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    height: auto;
}

.section {
    padding: var(--space-3xl) 0;
}

.section-alt {
    background: var(--color-cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    color: var(--color-text-light);
    max-width: 35rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--color-light);
    font-size: var(--text-xl);
}

.service-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: var(--text-sm);
}

.feature-content h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.feature-content p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.step-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-primary);
    color: var(--color-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
}

.step-content h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.step-content p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.product-card {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--space-lg);
}

.product-info h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.product-info p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.product-price {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-card {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    color: var(--color-light);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-section h2 {
    color: var(--color-light);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: var(--color-warm);
    margin-bottom: var(--space-xl);
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--color-light);
    color: var(--color-dark);
}

.cta-section .btn-primary:hover {
    background: var(--color-warm);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.contact-info-card h3 {
    color: var(--color-light);
    margin-bottom: var(--space-lg);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-detail i {
    font-size: var(--text-lg);
    color: var(--color-accent);
    margin-top: 2px;
}

.contact-detail p {
    font-size: var(--text-sm);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--color-light);
}

.contact-detail a:hover {
    color: var(--color-accent);
}

.contact-form-card {
    background: var(--color-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-cream);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.form-checkbox input {
    width: 1rem;
    height: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

.form-checkbox label {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.form-checkbox a {
    text-decoration: underline;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-2xl);
}

.map-container iframe {
    width: 100%;
    height: 18rem;
    border: none;
}

.footer {
    background: var(--color-dark);
    color: var(--color-warm);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-light);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-md);
}

.footer-links a {
    font-size: var(--text-xs);
    color: var(--color-warm);
}

.footer-links a:hover {
    color: var(--color-light);
}

.footer-copy {
    font-size: var(--text-xs);
    color: var(--color-border);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-light);
    padding: var(--space-md);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: var(--text-sm);
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.cookie-buttons .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
}

.page-header {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: var(--color-text-light);
    max-width: 35rem;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    color: var(--color-text-light);
}

.breadcrumb span {
    color: var(--color-border);
}

.content-section {
    padding: var(--space-2xl) 0;
}

.content-section h2 {
    margin-bottom: var(--space-md);
}

.content-section h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.content-section p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.content-section ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-section li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
    position: relative;
    padding-left: var(--space-md);
}

.content-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
}

.error-content h1 {
    font-size: var(--text-5xl);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.error-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm) 100%);
}

.thank-you-content {
    max-width: 30rem;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    background: var(--color-success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    color: var(--color-light);
    font-size: var(--text-3xl);
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.value-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--color-light);
    font-size: var(--text-lg);
}

.value-card h4 {
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.tool-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.tool-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: var(--text-lg);
}

.tool-card h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.tool-card p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: var(--text-2xl);
    }

}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    :root {
        --text-4xl: 2.75rem;
        --text-5xl: 4rem;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .burger {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-desc {
        margin-left: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .about-intro {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .header {
        max-width: 60rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
    }
    
    .map-container iframe {
        height: 22rem;
    }
}
