/* DESIGN SYSTEM: Organic Corporate / Zen Growth */
:root {
  --green-deep: #1e3932; /* Forest Green */
  --green-light: #4a7a68;
  --gold: #d4af37; /* Elegant Gold accent */
  --sand: #f5f5f0; /* Warm background */
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-grey: #666666;

  --font-serif: "Playfair Display", serif;
  --font-sans: "Lato", sans-serif;

  --radius-soft: 8px;
  --radius-organic: 0 40px 0 40px; /* Signature shape */
  --container: 1200px;

  --shadow-soft: 0 10px 40px rgba(30, 57, 50, 0.08);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* UTILS */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}
ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 25px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
}
.bg-sand {
  background-color: var(--sand);
}
.bg-green {
  background-color: var(--green-deep);
}
.text-light {
  color: var(--white);
}
.center {
  text-align: center;
  margin-bottom: 60px;
}
.narrow-container {
  max-width: 800px;
  margin: 0 auto;
}

/* BUTTONS */
.btn-organic {
  padding: 12px 28px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: 0.3s;
  display: inline-block;
}
.btn-organic:hover {
  background: var(--gold);
  color: var(--green-deep);
}

.btn-organic-dark {
  padding: 18px 40px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius-organic);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  transition: 0.3s;
  display: inline-block;
}
.btn-organic-dark:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-3px);
}

.btn-organic-full {
  width: 100%;
  padding: 18px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}
.btn-organic-full:hover {
  background: var(--gold);
}

.link-clean {
  font-weight: 700;
  color: var(--green-deep);
  font-size: 0.95rem;
}
.link-clean:hover {
  color: var(--gold);
}

.link-underline {
  text-decoration: underline;
  color: var(--green-deep);
  font-weight: 600;
}
.link-underline:hover {
  color: var(--gold);
}

.btn-text {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-serif);
  font-style: italic;
}
.btn-text:hover {
  color: var(--green-deep);
  padding-left: 5px;
}

/* HEADER */
.zen-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.zh-wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--green-deep);
}

.zh-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav {
  display: flex;
  gap: 30px;
}
.desktop-nav a {
  font-size: 1rem;
  color: var(--text-grey);
  font-weight: 400;
}
.desktop-nav a:hover {
  color: var(--green-deep);
}

.burger-lines {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.line {
  width: 30px;
  height: 2px;
  background: var(--green-deep);
  transition: 0.3s;
}

/* MOBILE MENU */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.mobile-overlay.active {
  transform: translateX(0);
}
.mo-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #eee;
  gap: 40px;
}
.mo-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green-deep);
}
#closeMob {
  background: none;
  border: none;
  cursor: pointer;
}
.mo-links a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--green-deep);
}
.mo-accent {
  font-size: 1.2rem !important;
  font-family: var(--font-sans) !important;
  color: var(--gold) !important;
  margin-top: 30px;
}
.mo-image {
  background: url("https://images.unsplash.com/photo-1491438590914-bc09fcaaf77a?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80")
    center/cover;
}

/* HERO */
.hero-zen {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 50px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sub-heading {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-txt em {
  font-style: italic;
  color: var(--gold);
}
.hero-lead {
  font-size: 1.2rem;
  color: var(--text-grey);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-vis {
  position: relative;
}
.image-mask {
  border-radius: var(--radius-organic);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-soft);
}
.image-mask img {
  height: 100%;
}
.floating-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--white);
  padding: 20px 30px;
  box-shadow: var(--shadow-soft);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}
.floating-badge span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #999;
}
.floating-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--green-deep);
  font-family: var(--font-serif);
}

/* CONCEPT */
.split-text {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
}
.line-decor {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin-top: 20px;
}
.text-body {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
}
.text-body strong {
  color: var(--green-deep);
}

/* SERVICES */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.srv-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.srv-item.reverse {
  direction: rtl;
} /* Quick hack for zig-zag, content needs ltr reset */
.srv-item.reverse .srv-content {
  direction: ltr;
}

.srv-img {
  height: 400px;
  border-radius: var(--radius-organic);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.srv-img img {
  height: 100%;
}
.srv-content {
  padding: 20px;
}
.srv-content p {
  color: var(--text-grey);
  margin-bottom: 25px;
  font-size: 1.1rem;
}
.srv-list {
  margin-bottom: 30px;
  border-left: 1px solid #ddd;
  padding-left: 20px;
}
.srv-list li {
  margin-bottom: 10px;
  color: var(--green-deep);
  font-weight: 500;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* FAQ (Details/Summary) */
.zen-accordion details {
  border-bottom: 1px solid #ddd;
  padding: 25px 0;
}
.zen-accordion summary {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.zen-accordion summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
}
.zen-accordion details[open] summary::after {
  content: "-";
}
.details-content {
  padding-top: 20px;
  font-size: 1rem;
  color: var(--text-grey);
  max-width: 90%;
}

/* CONTACT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.cw-intro h2 {
  margin-bottom: 20px;
}
.cw-intro p {
  margin-bottom: 40px;
  color: var(--text-grey);
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cib-row {
  display: flex;
  gap: 15px;
  align-items: center;
  color: var(--green-deep);
  font-weight: 600;
}
.cib-row i {
  color: var(--gold);
}

.clean-form {
  background: var(--white);
  padding: 50px;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.fg-item {
  margin-bottom: 25px;
}
.fg-item label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #999;
}
.fg-item input,
.fg-item select {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-deep);
  transition: 0.3s;
}
.fg-item input:focus,
.fg-item select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.captcha-wrap input {
  width: 100px;
  text-align: center;
}

.fg-agree {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: #888;
}
.fg-agree a {
  color: var(--green-deep);
  text-decoration: underline;
}

/* FOOTER */
.zen-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 100px 0 30px;
}
.fc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
  margin-bottom: 60px;
}
.f-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.f-socials a {
  color: #fff;
  margin-left: 20px;
  font-size: 0.9rem;
  transition: 0.3s;
}
.f-socials a:hover {
  color: var(--gold);
}

.fc-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.fc-col h5 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: #666;
}
.fc-col a {
  display: block;
  margin-bottom: 12px;
  color: #ccc;
  font-size: 0.95rem;
}
.fc-col a:hover {
  color: var(--gold);
}

.address-col p {
  color: #ccc;
  margin-bottom: 5px;
  font-size: 0.95rem;
}
.f-email {
  color: var(--gold) !important;
  margin-top: 20px;
  font-weight: 700;
}

.fc-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #555;
}

/* COOKIE */
.cookie-bar {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 20px 30px;
  border-radius: 50px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 500;
}
.cookie-bar p {
  font-size: 0.9rem;
  color: var(--text-dark);
}
.btn-cookie {
  padding: 8px 20px;
  background: var(--green-deep);
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desktop-nav,
  .zh-right .btn-organic,
  .zh-right .link-clean {
    display: none;
  }
  .burger-lines {
    display: flex;
  }

  .hero-grid,
  .split-text,
  .srv-item,
  .contact-wrapper,
  .fc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-vis {
    order: -1;
  }
  .image-mask {
    height: 300px;
  }
  .floating-badge {
    right: -10px;
    left: auto;
  }

  .srv-item.reverse {
    direction: ltr;
  } /* Reset order on mobile */
  .mobile-overlay {
    grid-template-columns: 1fr;
  }
  .mo-image {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
