:root {
  --wood: #4a3728;
  --wood-light: #8b5e3c;
  --cream: #f9f5f0;
  --cream-dark: #eee8e0;
  --text: #2a201a;
  --border: rgba(74, 55, 40, 0.1);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo { font-family: 'Crimson Pro', serif; font-weight: 600; }
em { font-style: italic; font-weight: 400; color: var(--wood-light); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* CURSOR */
.cursor {
  position: fixed; top: 0; left: 0; width: 12px; height: 12px;
  background: var(--wood); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
}

/* NAV */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 90px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(249, 245, 240, 0.8);
  backdrop-filter: blur(10px);
}
.logo { font-size: 1.8rem; letter-spacing: -0.02em; color: var(--wood); }
.logo span { font-weight: 300; margin-left: 2px; color: var(--text); }

.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text); position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px;
  background: var(--wood-light); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.cta-wood {
  padding: 12px 28px; border: 1px solid var(--wood);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--wood);
  transition: all 0.3s;
}
.cta-wood:hover { background: var(--wood); color: var(--cream); }

/* HERO WIPE EFFECT */
.hero { padding-top: 90px; min-height: 100vh; display: flex; align-items: center; }
.hero-container {
  display: grid; grid-template-columns: 1.2fr 1fr;
  align-items: center; gap: 60px; padding: 0 5%; width: 100%;
}

.hero-image-wipe {
  position: relative; height: 70vh; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(74, 55, 40, 0.15);
}
.image-after, .image-before { position: absolute; inset: 0; }
.image-before { clip-path: inset(0 50% 0 0); z-index: 2; }
.wipe-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: var(--cream); z-index: 3; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
}
.wipe-handle span {
  background: var(--cream); color: var(--wood); font-size: 0.6rem;
  padding: 15px 5px; writing-mode: vertical-lr; font-weight: 700;
  letter-spacing: 0.2em; border-radius: 4px; border: 1px solid var(--border);
}

.hero-content h1 { font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1; margin-bottom: 30px; color: var(--wood); }
.hero-content p { font-size: 1.1rem; color: var(--text); max-width: 400px; margin-bottom: 40px; }
.btn-discover {
  display: inline-block; padding: 18px 40px; background: var(--wood);
  color: var(--cream); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; font-size: 0.8rem;
  transition: transform 0.3s;
}
.btn-discover:hover { transform: translateY(-5px); }

/* PHILOSOPHY */
.philosophy { padding: 150px 0; background: var(--cream-dark); }
.phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: var(--wood-light); display: block; margin-bottom: 20px; }
.phil-text h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 30px; }
.phil-text p { font-size: 1.1rem; opacity: 0.8; }

.phil-stats { display: flex; gap: 80px; }
.p-stat strong { font-size: 4rem; display: block; color: var(--wood); line-height: 1; }
.p-stat span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--wood-light); font-weight: 600; }

/* PROJECTS */
.projects { padding: 150px 0; }
.section-title { font-size: 3.5rem; text-align: center; margin-bottom: 80px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.project-item { cursor: pointer; }
.pi-img { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 25px; border-radius: 2px; }
.pi-img img { transition: transform 1.2s var(--ease); }
.project-item:hover .pi-img img { transform: scale(1.1); }
.pi-info h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pi-info p { font-size: 0.85rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.05em; }

/* ABOUT */
.about { padding: 100px 0; }
.about-container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.about-img-box { height: 600px; overflow: hidden; border-radius: 4px; }
.about-content { padding-right: 5%; }
.about-content h2 { font-size: 3.5rem; margin-bottom: 30px; line-height: 1.1; }
.about-content p { font-size: 1.1rem; margin-bottom: 20px; }
.link-more { display: inline-block; margin-top: 20px; font-weight: 600; color: var(--wood); border-bottom: 1px solid var(--wood); padding-bottom: 5px; }

/* CONTACT */
.contact { padding: 150px 0; }
.contact-card {
  background: var(--wood); color: var(--cream);
  padding: 100px 8%; border-radius: 4px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cc-bg { position: absolute; inset: 0; background: url('hero.jpg'); opacity: 0.1; filter: grayscale(1); }
.cc-content { position: relative; z-index: 1; max-width: 700px; }
.cc-content h2 { font-size: 4rem; margin-bottom: 25px; }
.cc-content p { font-size: 1.2rem; opacity: 0.8; margin-bottom: 50px; }
.cc-actions { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.btn-wood {
  padding: 20px 60px; background: var(--cream); color: var(--wood);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  font-size: 0.85rem; transition: transform 0.3s;
}
.btn-wood:hover { transform: scale(1.05); }

/* FOOTER */
.footer { padding: 50px 0; border-top: 1px solid var(--border); }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--wood-light); font-weight: 600; }
.f-brand { font-family: 'Crimson Pro', serif; font-size: 1.2rem; color: var(--wood); }
.f-copy a { border-bottom: 1px solid var(--wood-light); }

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-image-wipe { height: 50vh; order: -1; }
  .phil-grid, .about-container { grid-template-columns: 1fr; gap: 50px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .phil-stats { gap: 40px; }
  .phil-text h2, .about-content h2, .contact-card h2 { font-size: 2.8rem; }
}
