:root {
  --color-bg: #FDFBF7;
  --color-surface: #FFFFFF;
  --color-primary: #1E3F20;
  --color-secondary: #ffffff;
  --color-accent: #C47C5D;
  --color-accent-light: rgba(196, 124, 93, 0.1);
  --color-accent-hover: #A8654B;
  --color-text: #2D3748;
  --color-muted: #718096;
  --color-border: #E2E8F0;
  --shadow-soft: 0 2px 15px rgba(30, 63, 32, 0.06);
  --shadow-medium: 0 8px 30px rgba(30, 63, 32, 0.12);
  --shadow-large: 0 20px 60px rgba(30, 63, 32, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --container: 1200px;
  --space-section: clamp(40px, 5vw, 50px);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--space-section) 0;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center;
}

section[id] {
  scroll-margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 1024px) {
  .mobile-only { display: none !important; }
}
@media (max-width: 1023px) {
  .desktop-only { display: none !important; }
}

.accent-text { color: var(--color-accent); }
.muted-text { color: var(--color-muted); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-secondary);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.btn-full { width: 100%; }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  height: 80px;
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
}

.nav-logo-accent {
  color: var(--color-accent);
}

.nav-logo-icon {
  max-width: 84px;
  max-height: 84px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  color: var(--color-text);
  font-size: 15px;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link.nav-active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-primary);
}

.nav-phone svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.nav-cta {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background-color: var(--color-accent);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 9px; }
.nav-hamburger span:nth-child(3) { top: 18px; }

.nav-hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-surface);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.nav-mobile.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-link {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-primary);
}

.nav-mobile-cta {
  margin-top: 20px;
  background-color: var(--color-accent);
  color: var(--color-secondary);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 1023px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: block; }
}

/* --- HERO --- */
.hero {
  padding-top: clamp(100px, 12vh, 120px);
  padding-bottom: clamp(40px, 6vh, 80px);
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.hero-grid {
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--color-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--color-muted);
}

.hero-stat-divider {
  width: 1px;
  background-color: var(--color-border);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.hero-image-wrapper img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background-color: var(--color-surface);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.hero-float-card--badge {
  top: -18px;
  left: -20px;
}

.hero-float-card--bottom {
  bottom: -20px;
  right: -20px;
}

@media (max-width: 768px) {
  .hero-float-card--badge {
    top: 20px;
    left: 20px;
  }
  .hero-float-card--bottom {
    bottom: 20px;
    right: 20px;
  }
}

.hero-float-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

.hero-float-text {
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.hero-float-subtext {
  font-size: 13px;
  color: var(--color-muted);
}

/* --- STATS BAR --- */
.stats-bar {
  background-color: var(--color-primary);
  padding: 40px 0;
  color: var(--color-secondary);
}

.stats-item {
  text-align: center;
}

.stats-number {
  font-size: 40px;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 8px;
  color: var(--color-accent);
}

.stats-label {
  font-size: 16px;
  opacity: 0.9;
}

/* --- SECTION HEADER --- */
.section-header {
  margin-bottom: 36px;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.section-header.text-center p {
  margin: 0 auto;
}

/* --- SERVICES --- */
.services {
  background-color: var(--color-bg);
}

.service-card {
  background-color: var(--color-surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--color-muted);
  margin-bottom: 24px;
}

/* --- ABOUT --- */
.about {
  background-color: var(--color-surface);
}

.about-grid {
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-header {
  text-align: left;
}

.about-content .section-header p {
  margin: 0;
}

.about-features {
  list-style: none;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  background-color: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--color-accent);
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.about-image-badge h4 {
  color: var(--color-accent);
  font-size: 36px;
  margin-bottom: 4px;
}

/* --- GALLERY --- */
.gallery-grid {
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30,63,32,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption h4 {
  color: var(--color-secondary);
  font-size: 20px;
  margin-bottom: 4px;
}

.gallery-caption p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

/* --- CONTACT --- */
.contact {
  scroll-margin-top: 0;
}

.contact-info {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-large);
}

.contact-info h3 {
  color: var(--color-secondary);
  font-size: 32px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.contact-detail-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 16px;
  font-weight: 500;
}

.contact-detail-value a {
  transition: color 0.3s;
}

.contact-detail-value a:hover {
  color: var(--color-accent);
}

.contact-form-wrapper {
  padding: 24px 0;
}

/* --- FOOTER --- */
.footer {
  background-color: #122413;
  color: var(--color-secondary);
  padding: 80px 0 32px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-secondary);
}

.footer-logo-accent {
  color: var(--color-accent);
}

.footer-logo-icon {
  max-width: 76px;
  max-height: 76px;
}

.footer-heading {
  color: var(--color-secondary);
  font-size: 18px;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  display: block;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* --- LEGAL PAGE & PAGE HERO --- */
.page-hero {
  padding-top: clamp(140px, 16vh, 170px);
  padding-bottom: 40px;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.legal-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.legal-content h1 { margin-bottom: 24px; }
.legal-content h2 { margin-top: 40px; margin-bottom: 16px; font-size: 22px; color: var(--color-primary); }
.legal-content h3 { margin-top: 24px; margin-bottom: 12px; font-size: 18px; color: var(--color-primary); }
.legal-content p { margin-bottom: 16px; line-height: 1.6; }
.legal-updated { color: var(--color-muted); margin-bottom: 32px; font-style: italic; }
.legal-placeholder { color: var(--color-primary); font-weight: bold; }
