@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --primary: #2E933C;
  --accent: #D4AF37;
  --bg: #fafaf8;
  --text: #1c1c1c;
  --text-muted: #6b6b6b;
  --border: #e8e8e4;
  --light-bg: #f4f4f0;
  --primary-light: #edf7ee;
  --accent-light: #fdf9ee;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 0.95rem;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.15;
  font-weight: 400;
}

h4, h5, h6 { font-family: var(--sans); }

a { color: var(--primary); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 48px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #1e6228;
  transform: translateY(-1px);
  opacity: 1;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover { background: #b8952d; opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  opacity: 1;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  opacity: 1;
}

/* Sections */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.nav-logo-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 1px;
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-menu a {
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-menu a:hover { color: var(--primary); opacity: 1; }

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.2s;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
}
.dropdown-menu a:hover { color: var(--primary); background: var(--primary-light); opacity: 1; }

.nav-cta { margin-left: 24px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 1px; background: var(--text); transition: all 0.3s; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 180px 80px 120px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--text);
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: var(--text-muted);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a4a20 0%, #2E933C 40%, #D4AF37 100%);
}

.hero-visual-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 50% 50%, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
}

.hero-stat-block {
  background: rgba(250,250,248,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 28px 32px;
  margin-bottom: 16px;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* TRUST STRIP */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.trust-icon { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; }

/* INTRO TEXT SECTION */
.intro-text-section { padding: 120px 0; }

.intro-pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.intro-pull-quote::before, .intro-pull-quote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 32px auto;
}

/* SERVICES - Editorial style */
.services-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-editorial-card {
  background: var(--bg);
  padding: 52px 40px;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.3s;
}

.service-editorial-card:hover { background: var(--light-bg); opacity: 1; }

.service-cardinal {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 28px;
  transition: color 0.3s;
}

.service-editorial-card:hover .service-cardinal { color: var(--accent); }

.service-editorial-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.service-editorial-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-editorial-arrow {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-editorial-arrow::after {
  content: '→';
  font-size: 1rem;
  letter-spacing: 0;
}

/* WHY US - Editorial style */
.why-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.why-editorial-visual {
  background: linear-gradient(160deg, #1c4a22, #2E933C);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.why-editorial-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(212,175,55,0.15) 0%, transparent 60%);
}

.why-large-stat {
  font-family: var(--serif);
  font-size: 7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: -20px;
}

.why-large-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.why-large-text {
  font-family: var(--serif);
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

.why-list-content {
  padding: 80px 80px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-editorial-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 24px;
}

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

.why-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.why-editorial-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.why-editorial-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* PROCESS - Elegant timeline */
.process-section { background: var(--light-bg); }

.process-editorial {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 80px;
}

.process-editorial::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--border);
}

.process-editorial-step {
  padding: 0 20px;
  position: relative;
}

.process-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin: 14px auto 32px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
}

.process-editorial-step h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
}

.process-editorial-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* CALCULATOR */
.calc-section { padding: 120px 0; background: var(--bg); }

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.calc-intro h2 { margin-bottom: 20px; }
.calc-intro p { color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }

.calc-form-block { background: var(--light-bg); border: 1px solid var(--border); padding: 48px; }

.calc-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.calc-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 28px;
}

.calc-input:focus { border-color: var(--accent); }

.calc-range {
  width: 100%;
  -webkit-appearance: none;
  height: 2px;
  background: var(--border);
  outline: none;
  margin-bottom: 28px;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--accent);
  cursor: pointer;
  border-radius: 0;
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.result-cell {
  background: var(--bg);
  padding: 28px 24px;
}

.result-cell.featured {
  grid-column: 1/-1;
  background: var(--primary);
}

.result-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.result-cell.featured .result-num { color: #fff; font-size: 2.2rem; }
.result-cell.featured .result-lbl { color: rgba(255,255,255,0.7); }

.result-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* COUNTERS */
.counters-section {
  padding: 100px 0;
  background: var(--text);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.counter-item {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.counter-item:last-child { border-right: none; }

.counter-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.counter-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* TESTIMONIALS */
.testimonials-slider { display: flex; gap: 32px; animation: scroll-left 36s linear infinite; width: max-content; margin-top: 80px; }
.testimonials-slider:hover { animation-play-state: paused; }

@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.testimonial-card {
  width: 440px;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 48px;
}

.testimonial-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 4px; margin-bottom: 20px; }

.testimonial-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.testimonial-name {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-role { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 80px;
}

.project-card {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.project-card:hover { transform: scale(1.02); }

.project-card:nth-child(1) { background: linear-gradient(160deg, #1a3a1a, #2E933C); }
.project-card:nth-child(2) { background: linear-gradient(160deg, #2a2a0a, #4a3a0a); }
.project-card:nth-child(3) { background: linear-gradient(160deg, #0a1a2a, #1a3a4a); }
.project-card:nth-child(4) { background: linear-gradient(160deg, #1a1a2a, #2E933C); }
.project-card:nth-child(5) { background: linear-gradient(160deg, #2a1a0a, #D4AF37); }
.project-card:nth-child(6) { background: linear-gradient(160deg, #0a2a0a, #1a4a1a); }
.project-card:nth-child(7) { background: linear-gradient(160deg, #1a0a0a, #3a1a1a); }
.project-card:nth-child(8) { background: linear-gradient(160deg, #0a0a1a, #1a1a3a); }

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.project-kw { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: #fff; }
.project-type { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* FAQ */
.faq-list { margin-top: 60px; max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; color: var(--text); padding: 28px 0; font-family: var(--serif); font-size: 1.05rem; font-weight: 400; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 28px; color: var(--text-muted); line-height: 1.8; font-size: 0.9rem; }
.faq-item.active .faq-answer { max-height: 400px; }

/* MAP / CONTACT */
.map-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.map-embed { border: 1px solid var(--border); height: 440px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.contact-info-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-detail-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.contact-detail-value { font-size: 0.95rem; color: var(--text); }

/* FOOTER */
.footer { background: var(--text); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 20px; line-height: 1.8; }
.footer-logo-title { font-family: var(--serif); font-size: 1.2rem; color: rgba(255,255,255,0.9); }
.footer-logo-sub { font-size: 0.6rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s; text-decoration: none; }
.social-link:hover { background: rgba(212,175,55,0.2); border-color: var(--accent); color: var(--accent); opacity: 1; }
.footer-col h4 { font-size: 0.65rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 36px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* STICKY */
.sticky-quote { position: fixed; bottom: 40px; right: 40px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.sticky-btn { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.sticky-btn-main { background: var(--primary); color: #fff; width: auto; padding: 0 20px; gap: 8px; font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.sticky-btn-main:hover { background: #1e6228; transform: translateY(-2px); opacity: 1; }
.sticky-btn-wa { background: #25d366; color: #fff; }
.sticky-btn-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.3); transform: translateY(-2px); opacity: 1; }

/* POPUP */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 20px; }
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box { background: var(--bg); max-width: 560px; width: 100%; position: relative; transform: scale(0.95); transition: transform 0.3s; padding: 60px; }
.popup-overlay.active .popup-box { transform: scale(1); }
.popup-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; background: var(--light-bg); border: none; cursor: pointer; font-size: 1rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.popup-close:hover { background: var(--border); }
.popup-title { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin-bottom: 8px; }
.popup-title em { font-style: italic; color: var(--primary); }
.popup-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; background: var(--light-bg); border: 1px solid var(--border); color: var(--text); font-family: var(--sans); font-size: 0.875rem; outline: none; transition: border-color 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: var(--text-muted); }
.form-check input { margin-top: 2px; accent-color: var(--accent); }
.form-check a { color: var(--primary); }
.form-msg { font-size: 0.85rem; margin-top: 12px; padding: 12px 16px; display: none; }
.form-msg.success { background: #dcfce7; color: #16a34a; border-left: 3px solid #16a34a; display: block; }
.form-msg.error { background: #fee2e2; color: #dc2626; border-left: 3px solid #dc2626; display: block; }
.popup-wa-alt { text-align: center; margin-top: 16px; font-size: 0.78rem; color: var(--text-muted); }
.popup-wa-alt a { color: #25d366; font-weight: 600; }

/* PAGE HERO */
.page-hero { padding: 160px 0 80px; background: var(--light-bg); border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.65rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); opacity: 1; }
.breadcrumb span { color: var(--accent); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 400; color: var(--text); }
.page-hero h1 em { font-style: italic; color: var(--primary); }
.page-hero p { font-size: 1rem; color: var(--text-muted); margin-top: 20px; max-width: 600px; line-height: 1.8; }

/* SERVICE PAGE */
.service-content { padding: 100px 0; }
.service-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: start; }
.service-body h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; margin: 60px 0 20px; }
.service-body h2:first-child { margin-top: 0; }
.service-body p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; font-size: 0.9rem; }
.service-body ul { list-style: none; margin-bottom: 20px; }
.service-body ul li { padding: 8px 0 8px 20px; position: relative; color: var(--text-muted); font-size: 0.9rem; }
.service-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

.service-sidebar { position: sticky; top: 100px; }
.sidebar-cta { background: var(--primary); padding: 40px; margin-bottom: 24px; color: #fff; }
.sidebar-cta h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; color: #fff; }
.sidebar-cta p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 24px; }

.sidebar-services { background: var(--light-bg); border: 1px solid var(--border); padding: 28px; }
.sidebar-services h4 { font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.sidebar-services ul { list-style: none; }
.sidebar-services li { margin-bottom: 4px; }
.sidebar-services a { display: block; padding: 10px 12px; color: var(--text-muted); font-size: 0.8rem; letter-spacing: 1px; text-decoration: none; transition: all 0.2s; border-left: 2px solid transparent; }
.sidebar-services a:hover { color: var(--primary); border-left-color: var(--primary); background: var(--primary-light); opacity: 1; }
.sidebar-services a.active { color: var(--primary); border-left-color: var(--accent); background: var(--primary-light); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.blog-card { background: var(--bg); text-decoration: none; color: inherit; display: block; transition: background 0.3s; }
.blog-card:hover { background: var(--light-bg); opacity: 1; }
.blog-thumb { height: 240px; position: relative; display: flex; align-items: center; justify-content: center; }
.blog-thumb-1 { background: linear-gradient(160deg, #1a4a20, #2E933C); }
.blog-thumb-2 { background: linear-gradient(160deg, #2a2a0a, #D4AF37); }
.blog-thumb-3 { background: linear-gradient(160deg, #0a1a2a, #1a3a4a); }
.blog-category { position: absolute; top: 20px; left: 20px; font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.blog-body { padding: 36px; }
.blog-date { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.blog-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; line-height: 1.3; margin-bottom: 12px; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* BLOG POST */
.blog-post-content { padding: 100px 0; }
.blog-post-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; }
.post-body h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; margin: 50px 0 20px; }
.post-body h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin: 36px 0 14px; color: var(--primary); font-style: italic; }
.post-body p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; font-size: 0.9rem; }
.post-body ul, .post-body ol { padding-left: 20px; margin-bottom: 16px; }
.post-body li { color: var(--text-muted); line-height: 1.8; margin-bottom: 8px; font-size: 0.9rem; }
.post-sidebar { position: sticky; top: 100px; }

/* ABOUT */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; padding: 120px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 60px; }
.team-card { background: var(--bg); padding: 40px; text-align: center; }
.team-avatar { width: 80px; height: 80px; margin: 0 auto 20px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.5rem; font-style: italic; }
.team-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; margin-bottom: 4px; }
.team-role { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-top: 4px; }

/* CONTACT PAGE */
.contact-form-wrap { background: var(--light-bg); border: 1px solid var(--border); padding: 48px; }

/* PRIVACY */
.privacy-content { padding: 80px 0; max-width: 760px; margin: 0 auto; }
.privacy-content h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin: 48px 0 16px; }
.privacy-content p, .privacy-content li { color: var(--text-muted); line-height: 1.9; margin-bottom: 12px; font-size: 0.9rem; }
.privacy-content ul { padding-left: 20px; }

/* 404 */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-code { font-family: var(--serif); font-size: 12rem; font-weight: 400; color: var(--border); line-height: 1; }
.error-title { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin-bottom: 16px; }
.error-sub { color: var(--text-muted); margin-bottom: 40px; }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* LOGO ANIMATION */
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.logo-glow { animation: glow-pulse 3s ease-in-out infinite; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 400px; }
  .services-editorial { grid-template-columns: 1fr 1fr; }
  .why-editorial { grid-template-columns: 1fr; }
  .calc-wrapper { grid-template-columns: 1fr; }
  .map-contact { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-editorial { grid-template-columns: repeat(3, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-post-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .services-editorial { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .process-editorial { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 140px 24px 80px; }
  .calc-results { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-quote { bottom: 16px; right: 16px; }
  .popup-box { padding: 32px; }
}


/* ============================================================
   RESPONSIVE & NAV FIX PACK  (appended 2026-05-30, rev2)
   Fixes: mobile horizontal scroll/zoom, dropdown menus not
   opening, header menu overflow, service section misalignment.
   This block is intentionally last so it overrides earlier rules.
   ============================================================ */

/* --- Global horizontal-overflow guard (no more sideways drag on mobile) --- */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }
img, svg, video, iframe { max-width: 100%; }
*, *::before, *::after { box-sizing: border-box; }

/* --- Responsive tables: wide service/spec tables scroll inside instead of
       breaking the whole page width on phones --- */
.service-body table,
.extended-content table,
.extended-supplement table,
.post-body table,
.privacy-content table,
.service-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* --- Align BOTH appended sections to the SAME width/padding as the page body
       (were 1280px / 2rem vs body 1200px / 24px -> caused the "shift") --- */
.extended-content,
.extended-supplement {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box;
}

/* --- Desktop dropdown: guaranteed on EVERY site (some were missing it) --- */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(15,15,26,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1001;
}
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown.open > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* --- Raise the mobile breakpoint to 992px so the full horizontal menu only
       shows when it actually fits; otherwise use the hamburger --- */
@media (max-width: 992px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    gap: 2px;
    background: rgba(15,15,26,0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 14px 20px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  .hamburger { display: flex !important; }
  .nav-cta { display: none; }

  /* Mobile dropdown turns into an inline collapsible list */
  .nav-dropdown > .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 2px 0 6px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: none;
  }
  .nav-dropdown.open > .dropdown-menu { display: block; }
  .nav-menu a { padding: 12px 14px; font-size: 1rem; }
}

/* --- Small phones: tighten paddings, prevent edge clipping --- */
@media (max-width: 600px) {
  .container, .container-wide { padding-left: 16px; padding-right: 16px; }
  .extended-content,
  .extended-supplement { padding-left: 16px !important; padding-right: 16px !important; }
  .section { padding: 56px 0; }
  .hero { padding: 110px 0 60px; }
  .popup-box { padding: 32px 20px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
}

/* --- Animate hamburger into an X when open --- */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Professional SVG icons (replaced the old emoji). Default scales with the
       container font-size so it matches whatever the emoji used to be. --- */
.svg-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex-shrink: 0; }
/* fixed-size flex icon boxes: fill ~55% of the box regardless of per-site px size */
.contact-detail-icon .svg-icon,
.advantage-icon .svg-icon,
.trust-badge-icon .svg-icon,
.pricing-icon .svg-icon,
.investment-icon .svg-icon,
.feature-icon .svg-icon,
.benefit-icon .svg-icon,
.value-icon .svg-icon,
.step-icon .svg-icon,
.process-icon .svg-icon,
.why-icon .svg-icon,
.card-icon .svg-icon { width: 55%; height: 55%; }
/* inline label icons a touch larger than text */
.icon .svg-icon,
.nav-cta .svg-icon,
.btn .svg-icon { width: 1.2em; height: 1.2em; }
/* decorative blog thumbnails: centered, subtle */
.blog-thumb .svg-icon,
.blog-icon-overlay .svg-icon { width: 38%; height: 38%; opacity: .55; }
.icon-badge .svg-icon { width: 32px; height: 32px; }
