:root {
  --primary: #0a3d34;
  --primary-light: #125c50;
  --accent: #c9a063;
  --accent-light: #e0bc85;
  --bg: #f9f7f2;
  --bg-alt: #ffffff;
  --bg-dark: #121417;
  --text: #1a1d21;
  --text-muted: #64748b;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.75);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(10, 61, 52, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(10, 61, 52, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(201, 160, 99, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}


a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layout */
.site-shell {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), var(--container-width));
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 12px;
  letter-spacing: 1px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.brand-copy span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-switch {
  display: flex;
  background: rgba(0, 0, 0, 0.05);
  padding: 4px;
  border-radius: 50px;
}

.page-link {
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--text-muted);
}

.page-link.is-active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.phone-btn {
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
}

.phone-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding-top: 180px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  max-width: 580px;
}

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

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

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

.btn-secondary:hover {
  background: rgba(10, 61, 52, 0.05);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  height: 580px;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-small {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 280px;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.floating-card {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  max-width: 260px;
  z-index: 2;
}

.floating-phone {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 12px 0;
}

.floating-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* Showcase Strip */
.showcase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.showcase-card {
  position: relative;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 61, 52, 0.8) 100%);
}

.showcase-copy {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  color: var(--white);
}

.showcase-copy .section-label {
  color: var(--accent-light);
  font-size: 0.7rem;
  margin-bottom: 8px;
}

.showcase-copy h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Services Section */
.services-section {
  padding: 100px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-card-wide {
  grid-column: span 2;
  display: flex;
}

.service-card-wide .service-media {
  flex: 1.2;
}

.service-card-wide .service-body {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-media {
  height: 240px;
  overflow: hidden;
}

.service-card-wide .service-media {
  height: auto;
}

.service-body {
  padding: 40px;
}

.service-number {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}

.service-body h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--bg-dark);
  border-radius: 60px;
  color: var(--white);
  margin: 40px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-copy h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.about-points article {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: var(--transition);
}

.about-points article:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about-points strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.about-points h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.about-points p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
}

.contact-banner {
  position: relative;
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 61, 52, 0.9) 0%, transparent 100%);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.contact-overlay h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-phone {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.contact-copy {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

/* Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-section, .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    height: 480px;
  }
  
  .showcase-strip, .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 16px;
  }
  
  .main-nav {
    display: none; /* Hide nav on mobile */
  }
  
  .hero-section {
    padding-top: 140px;
  }
  
  .hero-copy h1 {
    font-size: 2.8rem;
  }
  
  .showcase-strip, .service-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card-wide {
    flex-direction: column;
  }
  
  .contact-overlay {
    padding: 30px;
  }
  
  .contact-overlay h2 {
    font-size: 2.2rem;
  }
  
  .contact-phone {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
  }
}
