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

:root {
--charcoal: #2d3436;
--slate: #636e72;
--forest: #27ae60;
--silver: #f8f9fa;
--copper: #d35400;
--sage: #95a5a6;
--teal: #16a085;
--white: #ffffff;
}

body {
font-family: 'Jost', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--charcoal);
background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

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

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

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--charcoal);
color: var(--white);
padding: 20px;
z-index: 1000;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content p {
flex: 1;
font-size: 14px;
}

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-actions a {
color: var(--copper);
font-size: 14px;
}

.privacy-actions button {
background: var(--copper);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
}

.header {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid rgba(0,0,0,0.1);
position: relative;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--forest);
}

.nav {
display: flex;
gap: 30px;
}

.nav a {
color: var(--charcoal);
font-size: 14px;
position: relative;
}

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

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: var(--charcoal);
cursor: pointer;
}

.hero {
background: linear-gradient(135deg, var(--forest) 0%, var(--teal) 100%);
color: var(--white);
padding: 80px 0;
text-align: center;
}

.hero-content h1 {
margin-bottom: 20px;
}

.hero-content p {
font-size: 1.1rem;
margin-bottom: 30px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 30px;
border-radius: 4px;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.btn-primary {
background: var(--copper);
color: var(--white);
}

.btn-primary:hover {
background: #e67e22;
transform: translateY(-2px);
}

.btn-secondary {
background: transparent;
color: var(--charcoal);
border-color: var(--charcoal);
}

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

.services {
padding: 60px 0;
background: var(--silver);
}

.section-header {
text-align: center;
margin-bottom: 40px;
}

.section-header h2 {
margin-bottom: 10px;
}

.section-header p {
color: var(--slate);
font-size: 1rem;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.service-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
transition: transform 0.3s ease;
}

.service-card:hover {
transform: translateY(-5px);
}

.service-card i {
font-size: 2.5rem;
color: var(--forest);
margin-bottom: 15px;
}

.service-card h3 {
margin-bottom: 15px;
font-size: 1.3rem;
}

.service-card p {
color: var(--slate);
font-size: 14px;
}

.expertise {
padding: 60px 0;
background: var(--silver);
}

.expertise-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.expertise-image img {
border-radius: 8px;
width: 100%;
}

.expertise-text h2 {
margin-bottom: 20px;
}

.expertise-text p {
color: var(--slate);
margin-bottom: 15px;
}

.expertise-text .btn-secondary {
margin-top: 20px;
}

.sustainability {
padding: 60px 0;
}

.sustainability-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.sustainability-image img {
border-radius: 8px;
width: 100%;
}

.sustainability-text h2 {
margin-bottom: 20px;
}

.sustainability-text p {
color: var(--slate);
margin-bottom: 15px;
}

.sustainability-text .btn-secondary {
margin-top: 20px;
}

.philosophy {
padding: 60px 0;
}

.philosophy-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.philosophy-text h2 {
margin-bottom: 20px;
}

.philosophy-text p {
margin-bottom: 15px;
color: var(--slate);
}

.philosophy-text .btn-secondary {
margin-top: 20px;
}

.philosophy-image img {
border-radius: 8px;
width: 100%;
}

.process {
padding: 60px 0;
background: var(--silver);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.step {
background: var(--white);
padding: 30px;
border-radius: 8px;
}

.step-number {
font-family: 'Cormorant Garamond', serif;
font-size: 2.5rem;
color: var(--copper);
margin-bottom: 15px;
}

.step h3 {
margin-bottom: 15px;
font-size: 1.2rem;
}

.step p {
color: var(--slate);
font-size: 14px;
}

.featured-projects {
padding: 60px 0;
}

.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.project-card {
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.project-card:hover {
transform: translateY(-5px);
}

.project-card img {
width: 100%;
}

.project-info {
padding: 25px;
}

.project-info h3 {
margin-bottom: 10px;
font-size: 1.3rem;
}

.project-info p {
color: var(--slate);
margin-bottom: 15px;
font-size: 14px;
}

.project-info a {
color: var(--forest);
font-weight: 500;
font-size: 14px;
}

.project-info a:hover {
color: var(--teal);
}

.cta {
padding: 60px 0;
background: var(--forest);
color: var(--white);
text-align: center;
}

.cta-content h2 {
margin-bottom: 15px;
}

.cta-content p {
margin-bottom: 25px;
font-size: 1.1rem;
}

.footer {
background: var(--charcoal);
color: var(--white);
padding: 30px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
font-size: 13px;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
font-size: 13px;
color: var(--silver);
}

.footer-links a:hover {
color: var(--copper);
}

.page-hero {
background: var(--charcoal);
color: var(--white);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
margin-bottom: 10px;
}

.page-hero p {
font-size: 1.1rem;
color: var(--silver);
}

.gallery-intro {
padding: 60px 0;
}

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

.intro-content h2 {
margin-bottom: 20px;
}

.intro-content p {
color: var(--slate);
font-size: 1rem;
}

.products-section {
padding: 60px 0;
background: var(--silver);
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.product-card {
background: var(--white);
padding: 35px;
border-radius: 8px;
text-align: center;
position: relative;
transition: transform 0.3s ease;
}

.product-card:hover {
transform: translateY(-5px);
}

.product-card.featured {
border: 2px solid var(--copper);
}

.product-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--copper);
color: var(--white);
padding: 5px 12px;
border-radius: 20px;
font-size: 12px;
}

.product-icon i {
font-size: 3rem;
color: var(--forest);
margin-bottom: 20px;
}

.product-card h3 {
margin-bottom: 15px;
font-size: 1.4rem;
}

.product-card p {
color: var(--slate);
margin-bottom: 20px;
font-size: 14px;
}

.product-price {
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
color: var(--copper);
margin-bottom: 20px;
font-weight: 600;
}

.product-features {
list-style: none;
margin-bottom: 25px;
text-align: left;
}

.product-features li {
padding: 8px 0;
font-size: 14px;
color: var(--slate);
}

.product-features i {
color: var(--forest);
margin-right: 10px;
}

.gallery-projects {
padding: 60px 0;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}

.gallery-item {
position: relative;
overflow: hidden;
border-radius: 8px;
cursor: pointer;
}

.gallery-item img {
width: 100%;
transition: transform 0.4s ease;
}

.gallery-item:hover img {
transform: scale(1.1);
}

.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
color: var(--white);
padding: 25px;
transform: translateY(100%);
transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
transform: translateY(0);
}

.gallery-overlay h3 {
margin-bottom: 5px;
font-size: 1.2rem;
}

.gallery-overlay p {
font-size: 13px;
}

.testimonials {
padding: 60px 0;
background: var(--silver);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
border-left: 4px solid var(--forest);
}

.testimonial-card p {
font-style: italic;
color: var(--slate);
margin-bottom: 15px;
font-size: 14px;
}

.testimonial-author {
font-weight: 500;
color: var(--charcoal);
font-size: 14px;
}

.minimalist-intro {
padding: 60px 0;
}

.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: start;
}

.intro-text h2 {
margin-bottom: 20px;
}

.intro-text p {
color: var(--slate);
margin-bottom: 15px;
}

.intro-stats {
display: flex;
flex-direction: column;
gap: 30px;
}

.stat-item {
text-align: center;
}

.stat-item i {
font-size: 2.5rem;
color: var(--forest);
margin-bottom: 15px;
}

.stat-item h3 {
margin-bottom: 10px;
font-size: 1.2rem;
}

.stat-item p {
color: var(--slate);
font-size: 14px;
}

.design-principles {
padding: 60px 0;
background: var(--silver);
}

.principles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.principle-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
}

.principle-card h3 {
margin-bottom: 15px;
color: var(--forest);
font-size: 1.2rem;
}

.principle-card p {
color: var(--slate);
font-size: 14px;
}

.material-focus {
padding: 60px 0;
}

.material-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.material-image img {
border-radius: 8px;
width: 100%;
}

.material-text h2 {
margin-bottom: 20px;
}

.material-text p {
color: var(--slate);
margin-bottom: 15px;
}

.material-list {
list-style: none;
margin-top: 20px;
}

.material-list li {
padding: 8px 0;
color: var(--slate);
font-size: 14px;
}

.material-list i {
color: var(--forest);
margin-right: 10px;
}

.plant-selection {
padding: 60px 0;
background: var(--silver);
}

.plants-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.plant-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
}

.plant-card h3 {
margin-bottom: 15px;
color: var(--forest);
font-size: 1.2rem;
}

.plant-card p {
color: var(--slate);
font-size: 14px;
}

.contact-section {
padding: 60px 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.contact-info h2 {
margin-bottom: 20px;
}

.contact-info > p {
color: var(--slate);
margin-bottom: 30px;
}

.info-items {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-item {
display: flex;
gap: 20px;
}

.info-item i {
font-size: 1.5rem;
color: var(--forest);
margin-top: 5px;
}

.info-item h3 {
margin-bottom: 5px;
font-size: 1.1rem;
}

.info-item p {
color: var(--slate);
font-size: 14px;
line-height: 1.6;
}

.contact-form-wrapper h2 {
margin-bottom: 25px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

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

.form-group label {
margin-bottom: 8px;
font-weight: 500;
font-size: 14px;
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-family: 'Jost', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--forest);
}

.checkbox-group {
flex-direction: row;
align-items: start;
}

.checkbox-label {
display: flex;
gap: 10px;
align-items: start;
cursor: pointer;
font-size: 13px;
}

.checkbox-label input {
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--forest);
text-decoration: underline;
}

.map-section {
padding: 60px 0;
background: var(--silver);
}

.map-section h2 {
text-align: center;
margin-bottom: 30px;
}

.map-wrapper {
border-radius: 8px;
overflow: hidden;
}

.contact-cta {
padding: 60px 0;
}

.thankyou-section, .error-section {
padding: 100px 0;
text-align: center;
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
}

.thankyou-content, .error-content {
max-width: 600px;
margin: 0 auto;
}

.thankyou-icon {
font-size: 4rem;
color: var(--forest);
margin-bottom: 25px;
}

.thankyou-content h1, .error-content h1 {
margin-bottom: 20px;
}

.thankyou-content p, .error-content p {
color: var(--slate);
margin-bottom: 30px;
font-size: 1.1rem;
}

.thankyou-actions, .error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-family: 'Cormorant Garamond', serif;
font-size: 8rem;
color: var(--copper);
font-weight: 600;
line-height: 1;
margin-bottom: 20px;
}

.policy-section {
padding: 60px 0;
}

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

.policy-content h1 {
margin-bottom: 10px;
}

.policy-date {
color: var(--slate);
font-size: 14px;
margin-bottom: 40px;
}

.policy-content h2 {
margin-top: 40px;
margin-bottom: 20px;
color: var(--forest);
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 15px;
font-size: 1.2rem;
}

.policy-content p {
margin-bottom: 15px;
color: var(--slate);
line-height: 1.8;
}

.policy-content ul {
margin-bottom: 20px;
margin-left: 25px;
}

.policy-content li {
margin-bottom: 10px;
color: var(--slate);
line-height: 1.8;
}

.cookie-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 14px;
}

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

.cookie-table th {
background: var(--silver);
font-weight: 500;
}

.policy-content table {
display: block;
overflow-x: auto;
white-space: nowrap;
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
  
.nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
gap: 15px;
}

.nav.active {
display: flex;
}

.menu-toggle {
display: block;
}

.hero {
padding: 50px 0;
}

.hero-content h1 {
font-size: 1.8rem;
}

.hero-content p {
font-size: 1rem;
}

.services, .process, .featured-projects, .gallery-projects, .products-section, .testimonials, .design-principles, .plant-selection, .expertise, .sustainability {
padding: 40px 0;
}

.philosophy, .minimalist-intro, .material-focus, .contact-section {
padding: 40px 0;
}

.philosophy-content, .intro-grid, .material-content, .contact-grid, .expertise-content, .sustainability-content {
grid-template-columns: 1fr;
gap: 30px;
}

.services-grid, .process-steps, .projects-grid, .products-grid, .gallery-grid, .testimonials-grid, .principles-grid, .plants-grid {
grid-template-columns: 1fr;
gap: 20px;
}

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

.footer-links {
justify-content: center;
}

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

.privacy-actions {
justify-content: center;
}

.thankyou-section, .error-section {
padding: 60px 0;
min-height: calc(100vh - 150px);
}

.error-number {
font-size: 5rem;
}

.thankyou-actions, .error-actions {
flex-direction: column;
}

.thankyou-actions a, .error-actions a {
width: 100%;
text-align: center;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

h1 { font-size: 1.6rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }

.hero {
padding: 40px 0;
}

.services, .process, .featured-projects, .gallery-projects, .products-section, .testimonials, .design-principles, .plant-selection, .philosophy, .minimalist-intro, .material-focus, .contact-section, .expertise, .sustainability {
padding: 30px 0;
}

.service-card, .step, .product-card, .principle-card, .plant-card {
padding: 20px;
}

.project-info, .testimonial-card {
padding: 20px;
}

.btn-primary, .btn-secondary {
padding: 10px 20px;
font-size: 13px;
}

.footer {
padding: 20px 0;
}

.policy-content {
padding: 0 10px;
}
}

@media (max-width: 320px) {
body {
font-size: 14px;
}

h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }
h3 { font-size: 1rem; }

.logo {
font-size: 1.2rem;
}

.hero-content h1 {
font-size: 1.5rem;
}

.product-price {
font-size: 1.6rem;
}

.error-number {
font-size: 4rem;
}
}
