/* =========================================================
   EeatDigital Theme — Main Stylesheet
   ========================================================= */

/* ---------------------------------------------------------
   0. CSS VARIABLES & RESET
--------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:          #0f0f0d;
  --ink-soft:     #2a2a26;
  --ink-muted:    #6b6b64;
  --ink-faint:    #a8a89e;
  --paper:        #faf9f6;
  --paper-warm:   #f3f1eb;
  --paper-card:   #ffffff;
  --accent:       #1a1a18;
  --highlight:    #d4f060;
  --highlight-dark:#b8d840;
  --border:       #e8e5dc;
  --border-dark:  #d0ccc0;
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background:   var(--paper);
  color:        var(--ink);
  font-family:  var(--font-body);
  font-size:    16px;
  line-height:  1.65;
  overflow-x:   hidden;
}

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

/* ---------------------------------------------------------
   1. NAVIGATION
--------------------------------------------------------- */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 70px;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.nav-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: -0.02em; color: var(--ink); text-decoration: none;
}
.nav-logo span, .custom-logo-link { color: var(--ink-muted); }
.custom-logo-link img { height: 42px; width: auto; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--ink-muted);
  text-decoration: none; letter-spacing: 0.01em; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links li.current-menu-item > a,
.nav-links a.active { color: var(--ink); }

.nav-links li:last-child a {
  background: var(--ink); color: var(--paper) !important;
  font-weight: 500; padding: 9px 20px; border-radius: 100px;
  transition: background 0.2s;
}
.nav-links li:last-child a:hover { background: var(--ink-soft); }

.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.3s;
}

/* ---------------------------------------------------------
   2. GLOBAL UTILITIES
--------------------------------------------------------- */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 14px; display: block;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink);
}
.section { padding: 100px 52px; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.section-desc { font-size: 15px; font-weight: 300; color: var(--ink-muted); line-height: 1.7; max-width: 340px; text-align: right; }

/* Buttons */
.btn-fill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: 100px; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.btn-fill:hover { background: var(--ink-soft); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-size: 14px; font-weight: 400;
  padding: 14px 28px; border-radius: 100px; text-decoration: none;
  border: 1.5px solid var(--border-dark); transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--ink); background: var(--paper-warm); }

.btn-highlight {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--highlight); color: var(--ink);
  font-size: 14px; font-weight: 600;
  padding: 15px 30px; border-radius: 100px; text-decoration: none;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.15s; position: relative; z-index: 1;
}
.btn-highlight:hover { background: var(--highlight-dark); transform: translateY(-2px); }

/* ---------------------------------------------------------
   3. PAGE HERO (inner pages)
--------------------------------------------------------- */
.page-hero {
  padding: 140px 52px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.page-hero.centered {
  grid-template-columns: 1fr; text-align: center;
  max-width: 760px; margin: 0 auto; display: block;
  padding-bottom: 60px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.0; color: var(--ink);
}
.page-hero h1 em { font-style: italic; color: var(--ink-muted); }
.hero-right-text { font-size: 17px; font-weight: 300; color: var(--ink-muted); line-height: 1.75; }
.hero-right-text strong { font-weight: 500; color: var(--ink); }

/* ---------------------------------------------------------
   4. HOME HERO
--------------------------------------------------------- */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 100px 52px 80px; gap: 60px;
  position: relative; overflow: hidden;
}
.hero-bg-el {
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,240,96,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 28px; border: 1px solid var(--border-dark);
  padding: 7px 16px; border-radius: 100px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--highlight); border-radius: 50%; flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.0;
  margin-bottom: 24px; color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--ink-muted); }
.hero-sub {
  font-size: 17px; font-weight: 300; color: var(--ink-muted);
  line-height: 1.75; max-width: 440px; margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; }

/* Hero Visual Card */
.hero-visual { position: relative; }
.hero-card-main {
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius-xl); padding: 44px;
  position: relative; overflow: hidden;
}
.hero-card-main::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212,240,96,0.15) 0%, transparent 70%);
}
.hcm-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(250,249,246,0.4); margin-bottom: 32px;
}
.hcm-services { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.hcm-service-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: rgba(255,255,255,0.06);
  border-radius: 12px; font-size: 14px; font-weight: 400;
}
.hcm-service-row span:first-child { color: rgba(250,249,246,0.8); }
.hcm-service-dot { width: 8px; height: 8px; background: var(--highlight); border-radius: 50%; }
.hcm-stat { display: flex; align-items: baseline; gap: 6px; }
.hcm-stat-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 900;
  letter-spacing: -0.03em; color: var(--paper);
}
.hcm-stat-label { font-size: 13px; color: rgba(250,249,246,0.5); }
.hero-float-tag {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--highlight); color: var(--ink);
  border-radius: 16px; padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.hft-num {
  font-family: var(--font-display); font-size: 28px; font-weight: 900;
  letter-spacing: -0.03em; line-height: 1;
}
.hft-label { font-size: 11px; font-weight: 500; margin-top: 2px; color: var(--ink-soft); }

/* ---------------------------------------------------------
   5. STATS BAR
--------------------------------------------------------- */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 56px 52px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--paper-warm);
}
.stat-cell { text-align: center; padding: 0 20px; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 44px; font-weight: 900;
  letter-spacing: -0.04em; color: var(--ink); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--ink-muted); font-weight: 300; margin-top: 6px; }

/* ---------------------------------------------------------
   6. SERVICES GRID
--------------------------------------------------------- */
.services-home-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}
.svc-card { background: var(--paper); padding: 40px 36px; transition: background 0.3s; }
.svc-card:hover { background: var(--paper-warm); }
.svc-icon { font-size: 28px; margin-bottom: 24px; display: block; }
.svc-num { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: 10px; }
.svc-name {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px; line-height: 1.2;
}
.svc-desc { font-size: 14px; font-weight: 300; color: var(--ink-muted); line-height: 1.7; margin-bottom: 28px; }
.svc-link {
  font-size: 13px; font-weight: 500; color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border-dark); padding-bottom: 2px; transition: border-color 0.2s;
}
.svc-link:hover { border-color: var(--ink); }

/* Full services page cards */
.services-full-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 60px;
}
.service-full-card {
  background: var(--paper-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px; transition: transform 0.2s, box-shadow 0.2s;
}
.service-full-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.sfc-icon { font-size: 36px; margin-bottom: 20px; }
.sfc-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px;
}
.sfc-desc { font-size: 15px; font-weight: 300; color: var(--ink-muted); line-height: 1.75; margin-bottom: 24px; }
.sfc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sfc-list li { font-size: 13px; font-weight: 400; color: var(--ink-muted); display: flex; align-items: center; gap: 8px; }
.sfc-list li::before { content: ''; width: 6px; height: 6px; background: var(--highlight); border-radius: 50%; flex-shrink: 0; }

/* ---------------------------------------------------------
   7. WHY US
--------------------------------------------------------- */
.why-section { padding: 100px 52px; background: var(--ink); color: var(--paper); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.why-left .h2 { color: var(--paper); }
.why-left .eyebrow { color: var(--highlight); }
.why-left p { font-size: 16px; font-weight: 300; color: rgba(250,249,246,0.6); line-height: 1.75; margin-top: 20px; }
.why-items { display: flex; flex-direction: column; gap: 0; }
.why-item { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 20px; align-items: flex-start; }
.why-item:first-child { padding-top: 0; }
.why-item-num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--highlight); flex-shrink: 0; margin-top: 4px; }
.why-item-title { font-size: 17px; font-weight: 500; color: var(--paper); margin-bottom: 6px; }
.why-item-desc { font-size: 14px; font-weight: 300; color: rgba(250,249,246,0.55); line-height: 1.65; }

/* ---------------------------------------------------------
   8. PROCESS
--------------------------------------------------------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; background: var(--border); margin-top: 60px;
}
.process-step { background: var(--paper); padding: 36px 28px; transition: background 0.3s; }
.process-step:hover { background: var(--paper-warm); }
.ps-num {
  font-family: var(--font-display); font-size: 40px; font-weight: 900;
  color: var(--border-dark); letter-spacing: -0.04em; margin-bottom: 20px; line-height: 1;
}
.ps-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.ps-desc { font-size: 13px; font-weight: 300; color: var(--ink-muted); line-height: 1.65; }

/* ---------------------------------------------------------
   9. TESTIMONIALS
--------------------------------------------------------- */
.testi-section { padding: 100px 52px; background: var(--paper-warm); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.testi-card {
  background: var(--paper-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.testi-stars { color: #f0a500; font-size: 13px; letter-spacing: 2px; margin-bottom: 20px; }
.testi-quote { font-family: var(--font-display); font-size: 17px; font-style: italic; font-weight: 400; color: var(--ink); line-height: 1.65; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 13px; flex-shrink: 0; }
.av-a { background: #d4f060; color: var(--ink); }
.av-b { background: #ffd6a5; color: var(--ink); }
.av-c { background: #c4b5fd; color: var(--ink); }
.testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--ink-muted); font-weight: 300; }

/* ---------------------------------------------------------
   10. CTA SECTION
--------------------------------------------------------- */
.cta-section { padding: 0 52px 80px; }
.cta-inner {
  background: var(--ink); border-radius: var(--radius-xl);
  padding: 72px 80px; display: flex; justify-content: space-between;
  align-items: center; position: relative; overflow: hidden;
}
.cta-inner::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(212,240,96,0.12) 0%, transparent 70%);
}
.cta-title { font-family: var(--font-display); font-size: 42px; font-weight: 900; letter-spacing: -0.03em; color: var(--paper); line-height: 1.1; }
.cta-title em { font-style: italic; color: var(--highlight); }
.cta-sub { font-size: 15px; color: rgba(250,249,246,0.5); font-weight: 300; margin-top: 10px; }

/* ---------------------------------------------------------
   11. PROJECTS
--------------------------------------------------------- */
.projects-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  font-size: 13px; font-weight: 500; padding: 9px 20px; border-radius: 100px;
  border: 1.5px solid var(--border-dark); background: transparent;
  color: var(--ink-muted); cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.project-card {
  background: var(--paper-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.project-thumb {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  background: var(--paper-warm); display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.project-body { padding: 28px 28px 32px; }
.project-cat { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 10px; }
.project-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }
.project-desc { font-size: 13px; font-weight: 300; color: var(--ink-muted); line-height: 1.65; margin-bottom: 20px; }
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.project-tag { font-size: 11px; font-weight: 500; padding: 4px 12px; background: var(--paper-warm); border-radius: 100px; color: var(--ink-muted); }
.project-result { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--ink); }
.project-result::before { content: '↑'; color: var(--highlight-dark); font-weight: 700; }

/* ---------------------------------------------------------
   12. PACKAGES / PRICING
--------------------------------------------------------- */
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.pkg-card {
  background: var(--paper-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.pkg-card.featured {
  background: var(--ink); border-color: transparent;
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--highlight); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 18px; border-radius: 100px;
}
.pkg-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 6px; }
.pkg-card.featured .pkg-name { color: var(--paper); }
.pkg-desc { font-size: 13px; font-weight: 300; color: var(--ink-muted); margin-bottom: 28px; }
.pkg-card.featured .pkg-desc { color: rgba(250,249,246,0.55); }
.pkg-price {
  font-family: var(--font-display); font-size: 52px; font-weight: 900;
  letter-spacing: -0.04em; color: var(--ink); line-height: 1; margin-bottom: 4px;
}
.pkg-card.featured .pkg-price { color: var(--highlight); }
.pkg-period { font-size: 13px; font-weight: 300; color: var(--ink-muted); margin-bottom: 32px; }
.pkg-card.featured .pkg-period { color: rgba(250,249,246,0.4); }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 32px; }
.pkg-features li { font-size: 14px; font-weight: 300; color: var(--ink-muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pkg-card.featured .pkg-features li { color: rgba(250,249,246,0.7); }
.pkg-features li::before { content: '✓'; color: var(--highlight-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pkg-card.featured .pkg-features li::before { color: var(--highlight); }

/* ---------------------------------------------------------
   13. ABOUT PAGE
--------------------------------------------------------- */
.story-section { padding: 80px 52px; background: var(--paper-warm); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.story-left h3 { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 20px; }
.story-left p { font-size: 15px; font-weight: 300; color: var(--ink-muted); line-height: 1.8; margin-bottom: 16px; }
.story-right { display: flex; flex-direction: column; gap: 24px; }
.story-metric { background: var(--paper-card); border: 1px solid var(--border); border-radius: 18px; padding: 28px; }
.sm-num { font-family: var(--font-display); font-size: 44px; font-weight: 900; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.sm-label { font-size: 13px; font-weight: 300; color: var(--ink-muted); margin-top: 4px; }
.sm-desc { font-size: 13px; font-weight: 300; color: var(--ink-faint); margin-top: 8px; line-height: 1.6; border-top: 1px solid var(--border); padding-top: 12px; }
.story-metric.featured { background: var(--ink); border-color: transparent; }
.story-metric.featured .sm-num { color: var(--highlight); }
.story-metric.featured .sm-label, .story-metric.featured .sm-desc { color: rgba(250,249,246,0.55); }
.story-metric.featured .sm-desc { border-top-color: rgba(255,255,255,0.08); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 60px; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-warm); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.team-role { font-size: 13px; font-weight: 300; color: var(--ink-muted); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.value-card { background: var(--paper-warm); border-radius: var(--radius-md); padding: 32px; }
.value-icon { font-size: 28px; margin-bottom: 16px; }
.value-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.value-desc { font-size: 14px; font-weight: 300; color: var(--ink-muted); line-height: 1.7; }

/* ---------------------------------------------------------
   14. CONTACT PAGE
--------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; padding: 40px 52px 100px; }
.contact-info h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 16px; }
.contact-info p { font-size: 15px; font-weight: 300; color: var(--ink-muted); line-height: 1.75; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon { width: 44px; height: 44px; background: var(--paper-warm); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.cd-label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.cd-value { font-size: 15px; font-weight: 400; color: var(--ink); }

/* Contact Form */
.contact-form { background: var(--paper-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 52px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: 14px; font-weight: 300;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(15,15,13,0.06); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b64' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-notice { font-size: 12px; font-weight: 300; color: var(--ink-muted); margin-bottom: 28px; }
.form-message { font-size: 14px; font-weight: 400; padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; display: none; }
.form-message.success { background: rgba(212,240,96,0.2); color: #3a5c00; border: 1px solid rgba(212,240,96,0.5); display: block; }
.form-message.error { background: rgba(220,50,50,0.1); color: #7a1010; border: 1px solid rgba(220,50,50,0.2); display: block; }

/* ---------------------------------------------------------
   15. FOOTER
--------------------------------------------------------- */
#site-footer { padding: 64px 52px 36px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.footer-brand p { font-size: 14px; font-weight: 300; color: var(--ink-muted); line-height: 1.7; margin-top: 14px; max-width: 240px; }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; font-weight: 300; color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 13px; font-weight: 300; color: var(--ink-faint); }
.social-links { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; background: var(--paper-warm); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--ink-muted); text-decoration: none; transition: background 0.2s, color 0.2s; }
.social-link:hover { background: var(--ink); color: var(--paper); }

/* ---------------------------------------------------------
   16. ANIMATIONS
--------------------------------------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.7s ease both; }
.hero-eyebrow { animation: fadeUp 0.6s ease 0.1s both; }
.hero h1     { animation: fadeUp 0.7s ease 0.2s both; }
.hero-sub    { animation: fadeUp 0.7s ease 0.32s both; }
.hero-actions{ animation: fadeUp 0.7s ease 0.42s both; }
.hero-visual { animation: fadeUp 0.9s ease 0.25s both; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------
   17. RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero, .page-hero { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero-visual { display: none; }
  .services-home-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .pkg-card.featured { transform: none; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #site-nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-mobile-toggle { display: flex; }
  .hero, .section, .why-section, .testi-section, .cta-section, .contact-layout { padding-left: 24px; padding-right: 24px; }
  .stats-bar { padding: 40px 24px; grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; gap: 32px; text-align: center; padding: 52px 36px; }
  .services-home-grid { grid-template-columns: 1fr; }
  .testi-grid, .packages-grid, .values-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .story-section { grid-template-columns: 1fr; padding: 60px 24px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-cell:last-child { border-bottom: none; }
}
