/* =====================================================
   MENTIS.CA — site.css
   ===================================================== */

:root {
  --forest:      #2C4A2E;
  --forest-mid:  #3D6640;
  --wood:        #8B5E3C;
  --wood-dark:   #6B4423;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE7DA;
  --dark:        #1C1C1C;
  --mid:         #444;
  --muted:       #777;
}

/* ----- BASE ----- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background: #fff;
}

/* ----- NAVBAR ----- */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28, 28, 28, 0.0);
  backdrop-filter: blur(0px);
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}

#mainNav.scrolled {
  background: rgba(28, 28, 28, 0.96);
  backdrop-filter: blur(10px);
  padding: 0.6rem 0;
}

#mainNav .navbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #fff !important;
  letter-spacing: 0.03em;
}

#mainNav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem !important;
  transition: color 0.2s;
}

#mainNav .nav-link:hover { color: #fff !important; }

/* ----- SHARED SECTION STYLES ----- */
.section-pad { padding: 6rem 0; }

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 0.6rem;
}

.section-eyebrow.on-dark { color: rgba(255,255,255,0.5); }

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-heading.on-dark { color: #fff; }

.bg-cream  { background-color: var(--cream); }
.bg-cream-dark { background-color: var(--cream-dark); }

/* ----- HERO ----- */
#hero {
  min-height: 100vh;
  background: url('/images/hero.jpg') center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(28, 28, 28, 0.78) 0%,
    rgba(44, 74, 46, 0.55) 100%
  );
}

.hero-content { position: relative; z-index: 1; }

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--wood);
  margin: 1.5rem 0;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.btn-hero {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2.5rem;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}

.btn-hero:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* ----- ABOUT ----- */
.about-photo {
  border-radius: 4px;
  box-shadow: 12px 12px 0 var(--cream-dark);
}

.about-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 50px;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-pill i {
  font-size: 1.1rem;
  color: var(--wood);
}

/* ----- QUOTE BAND ----- */
.quote-band {
  background: var(--dark);
  padding: 5rem 0;
  text-align: center;
}

.quote-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  border: none;
  padding: 0;
  position: relative;
}

.quote-text::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--wood);
  margin: 0 auto 2rem;
}

.quote-text::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--wood);
  margin: 2rem auto 0;
}

/* ----- PROJECTS ----- */
.projects-bg {
  background: linear-gradient(160deg, #1a1a1a 0%, var(--forest) 100%);
}

.project-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.project-thumb {
  height: 230px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-thumb img { transform: scale(1.07); }

.project-body {
  padding: 1.5rem;
}

.project-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
  display: block;
  margin-bottom: 0.4rem;
}

.project-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.project-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  margin: 0;
  line-height: 1.7;
}

/* ----- WORKSHOP ----- */
.workshop-img {
  border-radius: 4px;
  box-shadow: -12px 12px 0 var(--cream-dark);
}

.btn-wood {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: var(--wood);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-wood:hover { background: var(--wood-dark); color: #fff; }

/* ----- FOREST ----- */
#forest {
  min-height: 75vh;
  background: url('/images/forest/hero.jpg') center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 0;
}

.forest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 20, 20, 0.88) 0%,
    rgba(44, 74, 46, 0.55) 55%,
    rgba(0,0,0,0.1) 100%
  );
}

.forest-content { position: relative; z-index: 1; }

.forest-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.forest-feature i {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.forest-feature-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.forest-feature-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ----- WORK ----- */
.work-card {
  padding: 2.25rem 2rem;
  border-radius: 6px;
  border: 1px solid #ece8e0;
  background: #fff;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}

.work-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.work-icon {
  font-size: 2.2rem;
  color: var(--forest);
  display: block;
  margin-bottom: 1rem;
}

.work-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.work-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ----- FAMILY ----- */
.family-img {
  border-radius: 4px;
  box-shadow: 12px 12px 0 var(--cream-dark);
}

/* ----- FOOTER ----- */
.site-footer {
  background: var(--dark);
}

.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0;
}

.footer-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-tool-link {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.footer-tool-link:hover { color: rgba(255,255,255,0.6); }

/* ----- RESPONSIVE ----- */
@media (max-width: 991px) {
  #mainNav.scrolled { padding: 0.75rem 0; }
}

@media (max-width: 767px) {
  #hero,
  #forest { background-attachment: scroll; }

  .about-photo,
  .workshop-img,
  .family-img { box-shadow: none; }

  .section-pad { padding: 4rem 0; }
}
