@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Lora:wght@400;500;600&display=swap');

:root {
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  --font-serif: Lora, Georgia, Times, serif;
  --primary-green: #4A7C6B;
  --primary-green-light: #5D9A85;
  --primary-green-dark: #3D6B59;
  --accent-gold: #D4A84B;
  --accent-gold-light: #E8C170;
  --accent-gold-dark: #B8923D;
  --text-dark: #2D3748;
  --text-medium: #4A5568;
  --text-light: #718096;
  --color-light-gray: #e6e6e6;
  --bg-cream: #FAFAF8;
  --bg-white: #FFFFFF;
  --bg-light-green: #F0F7F4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --ghost-accent-color: #4A7C6B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-cream);
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GHOST-STYLE HEADER ===== */
.gh-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  background: var(--bg-white);
  z-index: 1000;
}

.gh-head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  border-bottom: 1px solid var(--color-light-gray);
}

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

.gh-head-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

.gh-head-logo img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.gh-head-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.gh-head-menu .nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.006em;
}

.gh-head-menu .nav a {
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.gh-head-menu .nav a:hover {
  opacity: 0.7;
}

.gh-head-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gh-search,
.gh-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gh-search:hover,
.gh-icon-btn:hover {
  background: rgba(0,0,0,0.05);
}

.gh-search svg,
.gh-icon-btn svg {
  width: 18px;
  height: 18px;
  color: var(--text-dark);
}

.gh-head-members {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gh-head-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.gh-head-link:hover {
  opacity: 0.7;
}

.gh-head-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: white;
  background: #1a1a1a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.gh-head-btn:hover {
  opacity: 0.9;
}

.gh-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.gh-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-green);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary-green);
  color: white;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light-green) 100%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero h1 {
  font-size: 52px;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 .highlight {
  color: var(--primary-green);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent-gold-light);
  opacity: 0.4;
  z-index: -1;
}

.hero p {
  font-size: 19px;
  color: var(--text-medium);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-illustration {
  position: relative;
}

.hero-illustration svg {
  width: 100%;
  max-width: 520px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 140px 0 60px;
  background: var(--primary-green);
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: white;
  font-size: 48px;
  position: relative;
  z-index: 1;
}

/* ===== PARTNERS ===== */
.partners {
  background: white;
  padding: 60px 0;
}

.partners h2 {
  text-align: center;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  align-items: center;
}

.partner-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  color: var(--primary-green);
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 32px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--accent-gold-light);
  line-height: 1;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-medium);
  font-size: 15px;
}

/* ===== SOLUTIONS ===== */
.solutions {
  background: var(--bg-light-green);
}

.solutions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.solution-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.solution-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-gold-dark);
}

.solution-item h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.solution-item p {
  font-size: 14px;
  color: var(--text-medium);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--primary-green);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.cta-banner .btn-secondary {
  background: var(--accent-gold);
}

.cta-banner .btn-secondary:hover {
  background: var(--accent-gold-dark);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-green-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand .logo-name {
  color: white;
  font-size: 24px;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  max-width: 280px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-gold);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

/* ===== SERVICES PAGE ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-category {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.service-category-header {
  padding: 32px;
  background: linear-gradient(135deg, var(--bg-light-green) 0%, white 100%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-category-header h3 {
  font-size: 24px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.service-category-header p {
  font-size: 15px;
  color: var(--text-medium);
}

.service-list {
  padding: 24px 32px;
}

.service-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-item h4 svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
}

.service-item p {
  font-size: 14px;
  color: var(--text-medium);
  padding-left: 28px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-light-green) 100%);
  padding: 100px 0;
}

.testimonial-card {
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--accent-gold-light);
  position: absolute;
  top: 20px;
  left: 40px;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 22px;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 32px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-gold-dark);
  font-size: 20px;
}

.testimonial-info h4 {
  font-size: 16px;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 600;
}

.testimonial-info p {
  font-size: 14px;
  color: var(--primary-green);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-light);
  opacity: 0.3;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--accent-gold);
  opacity: 1;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about-intro p {
  font-size: 17px;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.team-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold-dark);
}

.team-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 14px;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: var(--text-medium);
}

/* ===== CONTACT PAGE ===== */
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.contact-form {
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--text-medium);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label span {
  color: var(--accent-gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(74,124,107,0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 48px;
  background: var(--primary-green);
  border-radius: var(--radius-lg);
  color: white;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.contact-info-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--font-sans);
}

.contact-info-item p {
  font-size: 15px;
  opacity: 0.85;
}

/* ===== OFFERINGS ===== */
.offerings {
  background: linear-gradient(180deg, var(--bg-light-green) 0%, var(--bg-cream) 100%);
}

.offerings-intro {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
}

.offerings-intro p {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container,
  .solutions-content,
  .about-intro {
    grid-template-columns: 1fr;
  }
  
  .hero-illustration {
    order: -1;
    text-align: center;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gh-head-menu,
  .gh-head-members .gh-head-link {
    display: none;
  }
  
  .gh-burger {
    display: flex;
  }
  
  .gh-head {
    height: 72px;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .features-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .page-header {
    padding: 120px 0 40px;
  }
  
  .page-header h1 {
    font-size: 36px;
  }
}
