/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #0d1f0d;
  --green-mid:   #1a3a1a;
  --green-light: #2d5a2d;
  --gold:        #c9a84c;
  --gold-light:  #e4c97a;
  --cream:       #f8f5ef;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #555;
  --border:      rgba(201,168,76,0.2);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
em { font-style: italic; color: var(--gold); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Container ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

.section { padding: 6rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; text-align: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(13,31,13,0.97);
  padding: 0.85rem 0;
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--white);
  text-decoration: none;
}
.logo-v { color: var(--gold); font-weight: 500; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,31,13,0.92) 0%, rgba(26,58,26,0.85) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.03) 40px,
      rgba(201,168,76,0.03) 41px
    );
  background-color: var(--green-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 6rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--green-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.35rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── About ── */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.image-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.image-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
}
.about-svg { width: 100%; height: auto; display: block; background: var(--green-dark); }

/* ── Strategy ── */
.strategy { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.strategy-card {
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  transition: border-color 0.3s, transform 0.3s;
}
.strategy-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}
.card-icon svg { width: 100%; height: 100%; }

.strategy-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.strategy-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ── Portfolio ── */
.portfolio { background: var(--cream); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s;
}
.portfolio-card:hover { transform: translateY(-6px); }

.portfolio-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.portfolio-img-1 {
  background-color: var(--green-mid);
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 18px,
    rgba(201,168,76,0.07) 18px, rgba(201,168,76,0.07) 19px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 18px,
    rgba(201,168,76,0.07) 18px, rgba(201,168,76,0.07) 19px
  );
}
.portfolio-img-2 {
  background-color: #1e3030;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 12px,
    rgba(201,168,76,0.06) 12px, rgba(201,168,76,0.06) 13px
  );
}
.portfolio-img-3 {
  background-color: #2a2a1e;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 12px,
    rgba(201,168,76,0.06) 12px, rgba(201,168,76,0.06) 13px
  );
}

.portfolio-body { padding: 1.75rem; }

.portfolio-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 0.3rem 0.75rem;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.portfolio-body h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.portfolio-body p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

.portfolio-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Why ── */
.why { background: var(--green-dark); color: var(--white); }
.why .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0.5rem;
}
.why-list li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.why-icon {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  min-width: 2.5rem;
}
.why-list strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.why-list p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

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

.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 300px;
}
.why-card {
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.why-card:hover { border-color: var(--gold); }
.wc1 { margin-left: 0; }
.wc2 { margin-left: 2rem; }
.wc3 { margin-left: 4rem; }

.wc-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.wc-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
}

/* ── Contact ── */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-title { font-size: 2.6rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.form-success {
  display: none;
  color: var(--green-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 0.75rem;
  background: rgba(45,90,45,0.08);
  border: 1px solid rgba(45,90,45,0.2);
}
.form-success.show { display: block; }

/* ── Footer ── */
.footer {
  background: var(--green-dark);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo { display: block; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.65; max-width: 280px; }

.footer-links h4,
.footer-legal-block h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-links ul,
.footer-legal-block ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a,
.footer-legal-block a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-legal-block a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { display: none; }
  .strategy-grid,
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .wc2 { margin-left: 1rem; }
  .wc3 { margin-left: 2rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--green-dark);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 101; }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .stats-inner { gap: 1rem; }
  .stat { padding: 0.5rem 1.5rem; }
  .stat-divider { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .hero-cta { flex-direction: column; align-items: flex-start; }

  .why-card-stack { max-width: 100%; }
  .wc2, .wc3 { margin-left: 0; }
}
