:root {
 --primary-color: #4A5568; /* a calm, neutral gray-blue */
 --primary-dark: #2D3748;
 --secondary-color: #718096;
 --text-dark: #1A202C;
 --text-light: #4A5568;
 --text-muted: #A0AEC0;
 --bg-light: #F7FAFC;
 --bg-white: #FFFFFF;
 --border-color: #E2E8F0;
 --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
 --radius: 0px; 
 --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-light);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.3;
 color: var(--text-dark);
}

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: var(--transition);
}

a:hover {
 color: var(--primary-dark);
}

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

.section {
 padding: 80px 0;
}

/* Header & Nav */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.8);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 border-bottom: 1px solid transparent;
 transition: var(--transition);
}

.header.scrolled {
 background: rgba(255, 255, 255, 0.95);
 border-bottom: 1px solid var(--border-color);
}

.nav-container {
 max-width: 1280px;
 margin: 0 auto;
 padding: 0 20px;
}
.nav {
 height: 70px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.nav-logo {
 font-size: 1.25rem;
 font-weight: 500;
 color: var(--text-dark);
}

.nav-links {
 display: flex;
 gap: 48px;
 list-style: none;
}

.nav-links a {
 font-size: 0.9rem;
 font-weight: 500;
 color: var(--text-light);
 padding: 8px 0;
 position: relative;
}

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 0;
 height: 1px;
 background: var(--text-dark);
 transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
 color: var(--text-dark);
}

.nav-links a:hover::after, .nav-links a.active::after {
 width: 100%;
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
}

.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--text-dark);
 margin: 5px 0;
 transition: var(--transition);
}

/* Minimalist Zen Layout Styles */
main {
 padding-top: 70px;
}

.hero-zen {
 min-height: calc(85vh - 70px);
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
}

.hero-zen-content {
 max-width: 600px;
}

.hero-zen-title {
 font-size: clamp(1.8rem, 5vw, 2.5rem);
 font-weight: 400;
 letter-spacing: -0.5px;
 margin-bottom: 1rem;
}

.hero-zen-subtitle {
 font-size: 1.1rem;
 color: var(--text-light);
 margin-bottom: 2rem;
}

.hero-zen-line {
 width: 50px;
 height: 2px;
 background: var(--primary-color);
 margin: 0 auto;
 animation: line-anim 2s infinite alternate;
}

@keyframes line-anim {
 from { width: 50px; }
 to { width: 100px; }
}

.page-header-zen {
 padding: 100px 20px;
 text-align: center;
 background: var(--bg-light);
}

.page-title-zen {
 font-size: clamp(2.2rem, 6vw, 3rem);
 font-weight: 500;
 margin-bottom: 1rem;
}

.page-subtitle-zen {
 font-size: 1.1rem;
 color: var(--text-light);
 max-width: 600px;
 margin: 0 auto;
}

.section-inner-zen {
 max-width: 900px;
 margin: 0 auto;
}

.section-inner-zen.centered {
 text-align: center;
}

.section-title-zen {
 font-size: 1.8rem;
 font-weight: 500;
 text-align: center;
 margin-bottom: 3rem;
 position: relative;
 padding-bottom: 1rem;
}

.section-title-zen::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 40px;
 height: 2px;
 background: var(--border-color);
}

.philosophy-section { background: var(--bg-light); }
.philosophy-text {
 font-size: 1.2rem;
 line-height: 1.8;
 text-align: center;
 max-width: 700px;
 margin: 0 auto;
}

.services-zen-stack {
 display: flex;
 flex-direction: column;
 gap: 2rem;
}

.service-zen-item {
 display: flex;
 align-items: flex-start;
 gap: 1.5rem;
 padding: 2rem 0;
 border-bottom: 1px solid var(--border-color);
}
.service-zen-item:last-child {
 border-bottom: none;
}
.service-zen-number {
 font-size: 1rem;
 font-weight: 500;
 color: var(--text-muted);
}
.service-zen-content h3 {
 font-size: 1.3rem;
 font-weight: 500;
 margin-bottom: 0.5rem;
}

.work-zen-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1rem;
}

.work-zen-item {
 position: relative;
 overflow: hidden;
 display: block;
}

.work-zen-item img {
 width: 100%;
 height: 250px;
 object-fit: cover;
 transition: transform 0.5s ease;
}

.work-zen-item:hover img {
 transform: scale(1.05);
}

.work-zen-overlay {
 position: absolute;
 inset: 0;
 background: rgba(0,0,0,0.5);
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 1rem;
 opacity: 0;
 transition: var(--transition);
}

.work-zen-item:hover .work-zen-overlay {
 opacity: 1;
}

.work-zen-overlay p {
 color: var(--bg-white);
 font-size: 1.1rem;
 font-weight: 500;
 transform: translateY(10px);
 transition: var(--transition);
}

.work-zen-item:hover .work-zen-overlay p {
 transform: translateY(0);
}

.cta-container {
 text-align: center;
 margin-top: 3rem;
}

.testimonials-zen-section {
 background: var(--bg-light);
}

.testimonial-zen-item {
 text-align: center;
 max-width: 650px;
 margin: 0 auto 3rem;
}

.testimonial-zen-text {
 font-size: 1.3rem;
 font-style: italic;
 line-height: 1.7;
 margin-bottom: 1rem;
 color: var(--text-dark);
}

.testimonial-zen-author {
 color: var(--text-muted);
}

.cta-zen-section {
 padding: 100px 0;
}
.cta-zen-text {
 max-width: 550px;
 margin-left: auto;
 margin-right: auto;
 margin-bottom: 2rem;
}

.about-zen-container {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4rem;
 align-items: center;
}
.about-zen-image img {
 width: 100%;
 height: 500px;
 object-fit: cover;
}

.about-founder-zen-section {
 background: var(--bg-light);
}

.about-founder-zen-section .section-inner-zen {
 display: flex;
 gap: 4rem;
 align-items: center;
}

.about-founder-portrait img {
 width: 200px;
 height: 200px;
 object-fit: cover;
 border-radius: 50%;
}

.articles-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
 gap: 2rem;
}

.article-card-zen {
 background: var(--bg-white);
 border: 1px solid var(--border-color);
 transition: var(--transition);
}

.article-card-zen:hover {
 box-shadow: var(--shadow-md);
 transform: translateY(-5px);
}

.article-card-zen img {
 width: 100%;
 height: 200px;
 object-fit: cover;
}

.article-card-zen-content {
 padding: 1.5rem;
}

.article-card-zen-category {
 font-size: 0.8rem;
 font-weight: 500;
 color: var(--secondary-color);
 margin-bottom: 0.5rem;
 display: block;
}

.article-card-zen-content h3 {
 font-size: 1.2rem;
 font-weight: 500;
 margin-bottom: 0.75rem;
}

.article-card-zen-date {
 display: block;
 font-size: 0.8rem;
 color: var(--text-muted);
 margin-top: 1rem;
}

.pagination {
 display: flex;
 justify-content: center;
 gap: 8px;
 margin-top: 48px;
}
.pagination a {
 padding: 8px 16px;
 color: var(--text-light);
 border: 1px solid var(--border-color);
 font-weight: 500;
}
.pagination a.active, .pagination a:hover {
 background: var(--primary-color);
 color: white;
 border-color: var(--primary-color);
}

.contact-zen-container {
 display: grid;
 grid-template-columns: 1fr 1.5fr;
 gap: 4rem;
}

.contact-info-item-zen {
 margin-bottom: 2rem;
}
.contact-info-item-zen h3 {
 font-size: 1rem;
 font-weight: 500;
 margin-bottom: 0.25rem;
 color: var(--text-dark);
}
.contact-info-item-zen p, .contact-info-item-zen a {
 color: var(--text-light);
}

.form-zen .form-group {
 margin-bottom: 1.5rem;
}
.form-zen .form-label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 500;
 color: var(--text-dark);
}
.form-zen .form-control {
 width: 100%;
 padding: 0.75rem 1rem;
 border: 1px solid var(--border-color);
 background: var(--bg-white);
 color: var(--text-dark);
 font-family: inherit;
 font-size: 1rem;
 transition: var(--transition);
}

.form-zen .form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.2);
}
textarea.form-control {
 resize: vertical;
}

.map-container {
 width: 100%;
 height: 450px;
 overflow: hidden;
 filter: grayscale(1);
}
.map-container iframe {
 width: 100%;
 height: 100%;
 border: none;
}
/* General Buttons */
.btn {
 display: inline-block;
 padding: 12px 28px;
 font-size: 0.9rem;
 font-weight: 500;
 cursor: pointer;
 text-align: center;
 transition: var(--transition);
 border: 1px solid transparent;
}

.btn-primary {
 background: var(--primary-color);
 color: var(--bg-white);
 border-color: var(--primary-color);
}
.btn-primary:hover {
 background: var(--primary-dark);
 color: var(--bg-white);
 border-color: var(--primary-dark);
}
.btn-secondary {
 background: transparent;
 color: var(--text-dark);
 border: 1px solid var(--text-dark);
}
.btn-secondary:hover {
 background: var(--text-dark);
 color: var(--bg-white);
}

/* Footer (Minimalist but compliant) */
.footer {
 background: var(--bg-light);
 color: var(--text-light);
 padding: 60px 0 30px;
 margin-top: 80px;
 border-top: 1px solid var(--border-color);
}
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 20px;}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-brand {}
.footer-logo { font-size: 1.25rem; font-weight: 500; color: var(--text-dark); margin-bottom: 1rem; display: block; }
.footer-description { font-size: 0.9rem; line-height: 1.6; max-width: 300px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
 width: 36px; height: 36px;
 display: flex; align-items: center; justify-content: center;
 color: var(--text-light);
 border: 1px solid var(--border-color);
 border-radius: 50%;
}
.footer-social a:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }
.footer-heading { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-light); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text-dark); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; color: var(--secondary-color); }
.footer-contact-item a { color: var(--text-light); }
.footer-contact-item a:hover { color: var(--text-dark); }
.footer-divider { height: 1px; background: var(--border-color); margin: 30px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal-links a:hover { color: var(--text-dark); }

/* Legal Page */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { font-size: 2.5rem; margin-bottom: 1rem; text-align: center; }
.legal-page > .container > p { text-align: center; margin-bottom: 4rem; color: var(--text-muted); }
.legal-page section { margin-bottom: 2.5rem; }
.legal-page h2 { font-size: 1.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-color);}
.legal-page p, .legal-page ul { margin-bottom: 1rem; }
.legal-page ul { margin-left: 20px; }
.cookie-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem;}
.cookie-table th, .cookie-table td { border: 1px solid var(--border-color); padding: 12px; text-align: left; }
.cookie-table th { background-color: var(--bg-light); font-weight: 500;}

/* Cookie Banner */
#cookie-banner {
 display: none;
 position: fixed;
 bottom: 1rem;
 left: 1rem;
 right: 1rem;
 background: var(--bg-white);
 color: var(--text-dark);
 padding: 1.5rem;
 box-shadow: var(--shadow-md);
 z-index: 2000;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 max-width: 600px;
}
#cookie-banner p { margin: 0; }
#cookie-banner div { display: flex; gap: 0.5rem; }

/* Scroll Animations */
.fade-in {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
 opacity: 1;
 transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .about-zen-container, .contact-zen-container { grid-template-columns: 1fr; }
 .about-zen-image { order: -1; }
 .about-founder-zen-section .section-inner-zen { flex-direction: column; text-align: center;}
}

@media (max-width: 768px) {
 .nav-toggle { display: block; z-index: 1001; }
 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: var(--bg-white);
 flex-direction: column;
 padding: 100px 40px;
 gap: 2rem;
 align-items: center;
 justify-content: center;
 transform: translateX(100%);
 transition: transform 0.4s ease-in-out;
 }
 .nav-links.active { transform: translateX(0); }
 .nav-links a { font-size: 1.5rem; }
 .work-zen-grid { grid-template-columns: 1fr 1fr; }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-brand { max-width: 100%; display: flex; flex-direction: column; align-items: center;}
 .footer-social { justify-content: center; }
 .footer-bottom { flex-direction: column; text-align: center; }
 .contact-zen-container { gap: 3rem; }
}

@media (max-width: 576px) {
 .work-zen-grid { grid-template-columns: 1fr; }
 #cookie-banner { flex-direction: column; text-align: center; }
}