/* ===== Custom Properties ===== */
:root {
  --wood-900: #2d2418;
  --wood-800: #3a2e1f;
  --wood-700: #4a3728;
  --wood-600: #5c4633;
  --wood-500: #6e5540;
  --wood-400: #8b7355;
  --wood-300: #a89070;
  --wood-200: #c4ad8f;
  --wood-100: #dbc9af;
  --wood-50: #f0e6d6;

  --honey-600: #9a7209;
  --honey-500: #b8860b;
  --honey-400: #d4a24e;
  --honey-300: #e0b96e;
  --honey-200: #ecd08f;
  --honey-100: #f5e4b8;
  --honey-50: #faf1dc;

  --cream-100: #faf6f0;
  --cream-200: #f5eed9;
  --cream-300: #ede3c6;

  --forest-600: #2d5016;
  --forest-500: #3d6b1f;

  --whatsapp: #25D366;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--wood-900);
  background: var(--cream-100);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.header {
  background: var(--wood-900);
  position: sticky; top: 0; z-index: 40;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.logo {
  font-family: 'Playfair Display', serif;
  color: var(--cream-100); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.logo-icon {
  color: var(--honey-500); font-size: 22px;
}
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; color: var(--cream-200); font-weight: 500;
  font-size: 14px; border-radius: 8px; transition: all 0.3s;
}
.nav-link:hover { color: var(--honey-400); background: var(--wood-800); }
.nav-link.active { color: var(--honey-400); }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--honey-500); color: var(--wood-900);
  padding: 10px 24px; border-radius: 50px;
  font-weight: 700; font-size: 14px; transition: all 0.3s;
}
.header-cta:hover { background: var(--honey-400); box-shadow: 0 4px 12px rgba(184,134,11,0.3); }

/* Mobile menu toggle */
.menu-toggle {
  display: none; width: 32px; height: 24px;
  position: relative; padding: 0;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--cream-200); border-radius: 2px;
  position: absolute; left: 0; transition: all 0.3s;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.nav-mobile {
  display: none; background: var(--wood-900);
  border-top: 1px solid var(--wood-800);
  padding: 16px 20px;
  flex-direction: column;
}
.nav-mobile.active { display: flex; }
.nav-mobile .nav-link {
  display: block; padding: 12px 16px;
}
.nav-phone { color: var(--honey-400) !important; font-weight: 700; margin-top: 8px; border-top: 1px solid var(--wood-800); padding-top: 16px !important; }

@media (max-width: 1023px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: block; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px;
  font-weight: 700; font-size: 17px;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary { background: var(--honey-500); color: var(--wood-900); }
.btn-primary:hover { background: var(--honey-400); box-shadow: 0 8px 24px rgba(184,134,11,0.25); }
.btn-secondary { background: var(--wood-800); color: var(--cream-100); border: 2px solid var(--wood-600); }
.btn-secondary:hover { background: var(--wood-700); box-shadow: 0 8px 24px rgba(45,36,24,0.3); }
.btn-full { width: 100%; }
@media (max-width: 640px) {
  .btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--wood-900), var(--wood-800), var(--wood-900));
  position: relative; overflow: hidden;
  padding: 80px 0 100px;
}
.hero--with-bg {
  background-size: cover; background-position: center;
  min-height: 500px; display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(184,134,11,0.08), transparent 60%);
}
.hero--with-bg .hero-overlay {
  background: linear-gradient(135deg, rgba(45,36,24,0.85), rgba(58,46,31,0.75));
}
.hero-content { max-width: 700px; position: relative; z-index: 1; }
.hero-title { font-size: 48px; color: var(--cream-100); margin-bottom: 20px; }
.hero-subtitle { color: var(--wood-200); font-size: 18px; margin-bottom: 40px; max-width: 600px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .hero { padding: 48px 0 64px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-actions { flex-direction: column; }
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-cream { background: var(--cream-200); }
.section-dark { background: var(--wood-900); color: var(--cream-100); }
.section-cta-block {
  background: linear-gradient(135deg, var(--wood-900), var(--wood-800));
  padding: 80px 0;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; color: var(--honey-600); font-size: 13px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title { font-size: 36px; color: var(--wood-900); margin-bottom: 16px; }
.section-subtitle { color: var(--wood-500); font-size: 18px; max-width: 600px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 48px; }

@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 16px; }
}

/* ===== Page Hero ===== */
.page-hero {
  background: var(--wood-900); padding: 64px 0; text-align: center;
}
.page-title { font-size: 42px; color: var(--cream-100); margin-bottom: 16px; }
.page-subtitle { color: var(--wood-300); font-size: 18px; max-width: 600px; margin: 0 auto; }
@media (max-width: 640px) {
  .page-hero { padding: 40px 0; }
  .page-title { font-size: 32px; }
}

/* ===== Service Cards (Homepage) ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.service-card {
  background: #fff; border-radius: 16px; padding: 36px 32px;
  border: 1px solid var(--cream-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-icon {
  width: 52px; height: 52px; background: var(--honey-50);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.3s;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--wood-700); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon { background: var(--honey-100); }
.service-card h3 { font-size: 20px; color: var(--wood-900); margin-bottom: 12px; }
.service-card p { color: var(--wood-500); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--forest-600); font-weight: 600; font-size: 14px; transition: color 0.3s;
}
.service-link:hover { color: var(--forest-500); }

@media (max-width: 1023px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== Service Detail Cards (Services Page) ===== */
.services-detail-grid {
  display: flex; flex-direction: column; gap: 48px;
}
.service-detail-card {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  background: #fff; border-radius: 16px; padding: 40px;
  border: 1px solid var(--cream-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.service-detail-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.service-detail-icon {
  width: 80px; height: 80px; background: var(--honey-50);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.service-detail-content h2 { font-size: 24px; margin-bottom: 12px; }
.service-detail-content p { color: var(--wood-500); line-height: 1.8; margin-bottom: 16px; }
.service-features {
  list-style: none; margin-bottom: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.service-features li {
  color: var(--wood-600); font-size: 14px;
  padding-left: 20px; position: relative;
}
.service-features li::before {
  content: "\2713"; position: absolute; left: 0;
  color: var(--forest-600); font-weight: 700;
}

@media (max-width: 767px) {
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-icon { width: 64px; height: 64px; font-size: 28px; }
  .service-features { grid-template-columns: 1fr; }
}

/* ===== Portfolio ===== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  background: var(--cream-200); color: var(--wood-600);
  transition: all 0.3s; border: none; cursor: pointer;
}
.filter-btn:hover { background: var(--honey-100); color: var(--wood-900); }
.filter-btn.active { background: var(--honey-500); color: var(--wood-900); }

.portfolio-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.portfolio-item {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--cream-200); transition: all 0.3s;
}
.portfolio-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-4px); }
.portfolio-img {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background-color: var(--cream-200);
}
.portfolio-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-item:hover .portfolio-img img { transform: scale(1.05); }
.portfolio-placeholder { font-size: 3rem; color: var(--wood-300); }
.portfolio-info { padding: 24px; }
.portfolio-category {
  color: var(--honey-600); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.portfolio-info h3 { font-size: 18px; color: var(--wood-900); margin: 4px 0 8px; }
.portfolio-info p { color: var(--wood-500); font-size: 14px; margin-bottom: 12px; }
.portfolio-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.portfolio-meta span { color: var(--wood-400); font-size: 13px; }

@media (max-width: 767px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ===== Process Steps ===== */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.process-step { text-align: center; }
.step-number {
  width: 64px; height: 64px; background: var(--honey-500);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: var(--wood-900);
}
.process-step h3 { font-size: 18px; color: var(--cream-100); margin-bottom: 8px; }
.process-step p { color: var(--wood-300); font-size: 14px; }
.section-dark .process-step h3 { color: var(--cream-100); }

@media (max-width: 1023px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .process-steps { grid-template-columns: 1fr; } }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.testimonial-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid var(--cream-200);
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.testimonial-stars { color: var(--honey-400); font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text { color: var(--wood-600); font-size: 14px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author strong { display: block; color: var(--wood-900); font-family: 'Playfair Display', serif; }
.testimonial-author span { color: var(--wood-400); font-size: 13px; }

@media (max-width: 767px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ===== CTA Block ===== */
.cta-content { text-align: center; }
.cta-content .hero-actions { justify-content: center; }
.cta-content h2 { font-size: 36px; color: var(--cream-100); margin-bottom: 16px; }
.cta-content p { font-size: 18px; color: var(--wood-300); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
@media (max-width: 640px) {
  .cta-content h2 { font-size: 28px; }
}

/* ===== About Page ===== */
.about-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-text .section-tag { margin-bottom: 12px; }
.about-text h2 { font-size: 36px; color: var(--wood-900); margin-bottom: 24px; }
.about-text p { color: var(--wood-600); margin-bottom: 16px; line-height: 1.8; }
.about-image {
  aspect-ratio: 4/3; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 16px;
}
@media (max-width: 767px) {
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .about-text h2 { font-size: 28px; }
}

/* Stats */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-item { padding: 24px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: var(--honey-500); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--wood-500); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 36px; }
}

/* Values */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.value-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid var(--cream-200); text-align: center;
  transition: all 0.3s;
}
.value-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-4px); }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-card h3 { font-size: 20px; color: var(--wood-900); margin-bottom: 12px; }
.value-card p { color: var(--wood-500); font-size: 14px; line-height: 1.7; }
@media (max-width: 1023px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

/* Workshop Features */
.workshop-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center; margin-top: 48px;
}
.workshop-feature {
  padding: 24px; background: var(--wood-800); border-radius: 12px;
  border: 1px solid var(--wood-700);
}
.workshop-feature strong { display: block; color: var(--honey-400); font-size: 18px; margin-bottom: 4px; }
.workshop-feature span { color: var(--wood-300); font-size: 14px; }
@media (max-width: 767px) { .workshop-features { grid-template-columns: repeat(2, 1fr); } }

/* ===== Contact Page ===== */
.contact-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px;
}
@media (max-width: 1023px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-wrapper {
  background: #fff; border-radius: 16px; padding: 40px;
  border: 1px solid var(--cream-200);
}
.contact-form-wrapper h2 { font-size: 24px; margin-bottom: 8px; }
.contact-form-wrapper > p { color: var(--wood-500); font-size: 14px; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row .form-group { margin-bottom: 0; }
.form-group { margin-bottom: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--wood-700); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--cream-300); border-radius: 12px;
  background: #fff; color: var(--wood-900);
  font-family: inherit; font-size: 15px;
  transition: all 0.3s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--honey-500); box-shadow: 0 0 0 3px rgba(184,134,11,0.15); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--wood-300); }
.form-note { color: var(--wood-400); font-size: 12px; margin-top: 16px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid var(--cream-200);
}
.contact-card h3 { font-size: 18px; color: var(--wood-900); margin-bottom: 16px; }
.contact-card p { color: var(--wood-500); font-size: 14px; line-height: 1.7; }

.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 12px; border-radius: 12px;
  transition: background 0.3s;
}
.contact-method:hover { background: var(--cream-100); }
.contact-method-icon { font-size: 24px; color: var(--honey-500); flex-shrink: 0; }
.contact-method strong { display: block; color: var(--wood-900); font-size: 14px; }
.contact-method span { color: var(--wood-500); font-size: 13px; }

.contact-hours { list-style: none; }
.contact-hours li {
  display: flex; justify-content: space-between;
  padding: 8px 0; font-size: 14px; color: var(--wood-500);
  border-bottom: 1px solid var(--cream-200);
}
.contact-hours li:last-child { border-bottom: none; }
.contact-hours li strong { color: var(--wood-900); }

/* ===== Footer ===== */
.footer { background: var(--wood-900); color: var(--cream-200); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-col p { color: var(--wood-300); font-size: 14px; margin-top: 16px; line-height: 1.7; }
.footer-logo {
  font-family: 'Playfair Display', serif; color: var(--cream-100);
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.footer-logo .logo-icon { color: var(--honey-500); }
.footer-col h4 { color: var(--honey-400); font-size: 18px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: var(--wood-200); font-size: 14px; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--honey-400); }

.footer-hours li {
  display: flex; justify-content: space-between;
  font-size: 14px; color: var(--wood-200); margin-bottom: 8px;
}
.footer-hours li span:last-child { color: var(--cream-100); }

.footer-bottom {
  margin-top: 48px; padding: 24px 0;
  border-top: 1px solid var(--wood-800); text-align: center;
}
.footer-bottom p { color: var(--wood-400); font-size: 12px; }

@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Floating FAB ===== */
.fab-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 50; display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.fab {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.3s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.fab-whatsapp { background: var(--whatsapp); }
.fab-phone { background: var(--honey-500); }

@media (max-width: 640px) {
  .fab { width: 64px; height: 64px; }
  .fab svg { width: 28px; height: 28px; }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.revealed { opacity: 1; transform: translateY(0); }
