/* ============================================================
   Acreage Farming — vanilla CSS (acr- prefix)
   Derived from motionsites:acreage-farming-hero (MIT, Aayush Soam)
   ============================================================ */

:root {
  --acr-cream: #f5f0e8;
  --acr-forest: #0d1f0e;
  --acr-mid: #2d5a30;
  --acr-accent: #7dc47f;
  --acr-gold: #c9a84c;
  --acr-muted: #5a6b5c;
  --acr-portfolio-bg: #e8e0d0;
  --acr-white: #ffffff;
  --banner-h: 36px;

  --acr-serif: 'Playfair Display', 'Times New Roman', serif;
  --acr-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--acr-cream);
  color: var(--acr-forest);
  font-family: var(--acr-sans);
  font-size: 16px;
  line-height: 1.6;
  padding-top: var(--banner-h, 36px);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   DEMO BANNER
   ============================================================ */
.acr-demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--banner-h);
  background: linear-gradient(90deg, #c9a84c, #b08d35);
  color: #0d1f0e;
  font-family: var(--acr-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: var(--banner-h);
  z-index: 9999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 12px;
}

/* ============================================================
   SHARED — eyebrow / headings / buttons
   ============================================================ */
.acr-eyebrow {
  display: inline-block;
  font-family: var(--acr-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--acr-accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.acr-eyebrow-light { color: var(--acr-accent); }

.acr-h2 {
  font-family: var(--acr-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  color: var(--acr-forest);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.acr-h2-light { color: var(--acr-cream); }

.acr-body {
  font-size: 16px;
  color: var(--acr-muted);
  margin-bottom: 18px;
  max-width: 540px;
}

.acr-arrow { display: inline-block; transition: transform 0.3s ease; }

.acr-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--acr-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.acr-btn:hover .acr-arrow { transform: translateX(6px); }

.acr-btn-dark {
  background: var(--acr-forest);
  color: var(--acr-cream);
}
.acr-btn-dark:hover { background: #1a3a1d; }

.acr-btn-green {
  background: var(--acr-accent);
  color: var(--acr-forest);
  font-weight: 700;
}
.acr-btn-green:hover { background: #94d597; transform: translateY(-2px); }

.acr-btn-green-lg {
  background: var(--acr-accent);
  color: var(--acr-forest);
  font-weight: 700;
  padding: 18px 36px;
  font-size: 15px;
}
.acr-btn-green-lg:hover { background: #94d597; transform: translateY(-2px); }

.acr-btn-outline {
  border: 1.5px solid rgba(245, 240, 232, 0.45);
  color: var(--acr-cream);
  padding: 18px 36px;
  font-size: 15px;
}
.acr-btn-outline:hover {
  border-color: var(--acr-accent);
  color: var(--acr-accent);
}

.acr-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acr-forest);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.acr-link-arrow:hover { color: var(--acr-mid); }
.acr-link-arrow:hover .acr-arrow { transform: translateX(6px); }

/* ============================================================
   SECTION 1 — NAV
   ============================================================ */
.acr-nav {
  position: fixed;
  top: var(--banner-h);
  left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  padding: 22px 0;
}
.acr-nav.is-scrolled {
  background: rgba(13, 31, 14, 0.92);
  padding: 14px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.acr-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.acr-nav-logo {
  font-family: var(--acr-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--acr-cream);
  letter-spacing: -0.01em;
}
.acr-nav.is-scrolled .acr-nav-logo { color: var(--acr-cream); }
.acr-nav-links {
  display: flex;
  gap: 36px;
}
.acr-nav-links a {
  color: var(--acr-cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.acr-nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--acr-accent);
  transition: width 0.3s ease;
}
.acr-nav-links a:hover { color: var(--acr-accent); }
.acr-nav-links a:hover::after { width: 100%; }

.acr-nav-cta {
  background: var(--acr-accent);
  color: var(--acr-forest);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}
.acr-nav-cta:hover { background: #94d597; transform: translateY(-2px); }

.acr-burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 101;
}
.acr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--acr-cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.acr-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.acr-burger.is-open span:nth-child(2) { opacity: 0; }
.acr-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
.acr-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  margin-top: calc(-1 * var(--banner-h));
  padding-top: var(--banner-h);
}
.acr-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.acr-hero-video.loaded { opacity: 0.55; }
.acr-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(13,31,14,0.95) 0%, rgba(13,31,14,0.35) 60%, transparent 100%),
    linear-gradient(to right, rgba(13,31,14,0.55), rgba(13,31,14,0.05) 60%);
}
.acr-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 32px 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
.acr-hero-eyebrow,
.acr-hero-title,
.acr-hero-desc,
.acr-hero-badges {
  opacity: 0;
  transform: translateY(30px);
  animation: acrFadeUp 0.85s ease forwards;
}
.acr-hero-eyebrow { animation-delay: 0.2s; color: var(--acr-accent); margin-bottom: 24px; }
.acr-hero-title  { animation-delay: 0.4s; }
.acr-hero-desc   { animation-delay: 0.6s; }
.acr-hero-badges { animation-delay: 0.8s; }

@keyframes acrFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.acr-hero-title {
  font-family: var(--acr-serif);
  font-weight: 900;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.92;
  color: var(--acr-cream);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

.acr-hero-right { padding-bottom: 30px; }
.acr-hero-desc {
  color: rgba(245, 240, 232, 0.78);
  font-size: 17px;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 32px;
}
.acr-hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }

.acr-pill {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--acr-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
}
.acr-pill-gold { background: var(--acr-gold); color: var(--acr-forest); }
.acr-pill-glass {
  background: rgba(255,255,255,0.1);
  color: var(--acr-cream);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Scroll indicator */
.acr-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 40px;
}
.acr-scroll-indicator span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--acr-accent), transparent);
  animation: acrPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes acrPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.6); }
  50%      { opacity: 1;    transform: scaleY(1); }
}

/* ============================================================
   SECTION 3 — STATS BAR
   ============================================================ */
.acr-stats {
  background: var(--acr-forest);
  padding: 70px 32px;
}
.acr-stats-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.acr-stat {
  text-align: center;
  padding: 18px 24px;
  border-right: 1px solid rgba(245, 240, 232, 0.12);
}
.acr-stat:last-child { border-right: none; }
.acr-stat-num {
  font-family: var(--acr-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--acr-accent);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.acr-stat-label {
  font-family: var(--acr-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 232, 0.7);
  text-transform: uppercase;
}

/* ============================================================
   SECTION 4 — ABOUT
   ============================================================ */
.acr-about {
  background: var(--acr-cream);
  padding: 130px 32px;
}
.acr-about-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.acr-about-images {
  position: relative;
  aspect-ratio: 4/5;
}
.acr-about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(13, 31, 14, 0.12);
}
.acr-about-img-overlay {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 46%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 6px solid var(--acr-cream);
  border-radius: 6px;
  box-shadow: 0 24px 50px rgba(13, 31, 14, 0.18);
}
.acr-about-text { padding: 20px 0; }

/* ============================================================
   SECTION 5 — SERVICES
   ============================================================ */
.acr-services {
  background: var(--acr-white);
  padding: 130px 32px;
}
.acr-services-head {
  max-width: 1320px;
  margin: 0 auto 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.acr-services-head .acr-h2 { max-width: 620px; margin-bottom: 0; }
.acr-services-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.acr-service-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.acr-service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.acr-service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(13,31,14,0.92) 0%,
    rgba(13,31,14,0.55) 35%,
    rgba(13,31,14,0.05) 70%,
    transparent 100%);
  z-index: 1;
}
.acr-service-body {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 2;
  color: var(--acr-cream);
}
.acr-service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--acr-accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.acr-service-title {
  font-family: var(--acr-serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  color: var(--acr-cream);
  margin-bottom: 14px;
}
.acr-service-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.85);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.acr-service-card:hover img { transform: scale(1.05); }
.acr-service-card:hover .acr-service-desc { max-height: 200px; opacity: 1; }

/* ============================================================
   SECTION 6 — CINEMATIC VIDEO
   ============================================================ */
.acr-cine {
  position: relative;
  height: 60vh;
  min-height: 460px;
  overflow: hidden;
}
.acr-cine-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.acr-cine-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 14, 0.65);
  z-index: 1;
}
.acr-cine-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.acr-cine-quote {
  font-family: var(--acr-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.25;
  color: var(--acr-cream);
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.acr-cine-attrib {
  font-family: var(--acr-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--acr-accent);
  text-transform: uppercase;
}

/* ============================================================
   SECTION 7 — PORTFOLIO
   ============================================================ */
.acr-portfolio {
  background: var(--acr-portfolio-bg);
  padding: 130px 32px;
}
.acr-portfolio-head {
  max-width: 1320px;
  margin: 0 auto 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.acr-portfolio-head .acr-h2 { margin-bottom: 0; }
.acr-portfolio-watermark {
  font-family: var(--acr-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: rgba(13, 31, 14, 0.18);
  font-weight: 400;
}
.acr-portfolio-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 720px;
}
.acr-port-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}
.acr-port-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.acr-port-large { grid-row: span 2; }
.acr-port-caption {
  position: absolute;
  left: 26px; right: 26px; bottom: 26px;
  z-index: 2;
  color: var(--acr-cream);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.acr-port-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,14,0.85), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.acr-port-item:hover img { transform: scale(1.03); }
.acr-port-item:hover::after { opacity: 1; }
.acr-port-item:hover .acr-port-caption { opacity: 1; transform: translateY(0); }
.acr-port-loc {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--acr-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.acr-port-title {
  font-family: var(--acr-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--acr-cream);
}

/* ============================================================
   SECTION 8 — EVENT
   ============================================================ */
.acr-event {
  background: var(--acr-white);
  padding: 130px 32px;
}
.acr-event-card {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(13, 31, 14, 0.16);
  background: var(--acr-forest);
}
.acr-event-img { position: relative; min-height: 460px; }
.acr-event-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.acr-event-panel {
  background: var(--acr-forest);
  color: var(--acr-cream);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.acr-date-badge {
  align-self: flex-start;
  background: rgba(125, 196, 127, 0.16);
  color: var(--acr-accent);
  border: 1px solid rgba(125, 196, 127, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.acr-event-title {
  font-family: var(--acr-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--acr-cream);
  margin: 6px 0;
}
.acr-event-meta {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 0;
}
.acr-event-panel .acr-btn { align-self: flex-start; margin-top: 14px; }

/* ============================================================
   SECTION 9 — BLOG
   ============================================================ */
.acr-blog {
  background: var(--acr-cream);
  padding: 130px 32px;
}
.acr-blog-head {
  max-width: 1320px;
  margin: 0 auto 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.acr-blog-head .acr-h2 { margin-bottom: 0; }
.acr-blog-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.acr-blog-card {
  background: var(--acr-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(13, 31, 14, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.acr-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(13, 31, 14, 0.16);
}
.acr-blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.acr-blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.acr-blog-card:hover .acr-blog-img img { transform: scale(1.05); }
.acr-blog-body { padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.acr-blog-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--acr-mid);
  text-transform: uppercase;
}
.acr-blog-title {
  font-family: var(--acr-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--acr-forest);
}
.acr-blog-excerpt { color: var(--acr-muted); font-size: 15px; }
.acr-blog-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 31, 14, 0.08);
  font-size: 13px;
  color: var(--acr-muted);
}
.acr-blog-foot a {
  color: var(--acr-mid);
  font-weight: 500;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.acr-blog-foot a:hover .acr-arrow { transform: translateX(6px); }

/* ============================================================
   SECTION 10 — WHY US (glass cards on dark green)
   ============================================================ */
.acr-why {
  background: var(--acr-forest);
  padding: 130px 32px;
  position: relative;
  overflow: hidden;
}
.acr-why::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(125,196,127,0.12), transparent 60%);
  pointer-events: none;
}
.acr-why-head {
  position: relative;
  max-width: 980px;
  margin: 0 auto 70px;
  text-align: center;
}
.acr-why-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.acr-why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(125, 196, 127, 0.22);
  border-radius: 14px;
  padding: 44px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.acr-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 196, 127, 0.6);
  box-shadow: 0 24px 50px rgba(125, 196, 127, 0.18), 0 0 0 1px rgba(125, 196, 127, 0.18) inset;
  background: rgba(125, 196, 127, 0.08);
}
.acr-why-icon {
  display: inline-flex;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(125, 196, 127, 0.15);
  align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}
.acr-why-title {
  font-family: var(--acr-serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--acr-cream);
  margin-bottom: 14px;
}
.acr-why-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.72);
}

/* ============================================================
   SECTION 11 — CTA
   ============================================================ */
.acr-cta {
  position: relative;
  background: var(--acr-forest);
  padding: 140px 32px;
  overflow: hidden;
  isolation: isolate;
}
.acr-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}
.acr-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,31,14,0.55), rgba(13,31,14,0.85));
  z-index: -1;
}
.acr-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.acr-cta-title {
  font-family: var(--acr-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.08;
  color: var(--acr-cream);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.acr-cta-title em {
  font-style: italic;
  color: var(--acr-accent);
  font-weight: 700;
}
.acr-cta-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.78);
  max-width: 640px;
  margin: 0 auto 38px;
}
.acr-cta-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA particles */
.acr-cta-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.acr-leaf {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 0 100% 0 100%;
  background: var(--acr-accent);
  opacity: 0.45;
  animation: acrFloat 14s linear infinite;
}
.acr-leaf-1 { left: 8%;  top: 100%; animation-delay: 0s;   animation-duration: 16s; }
.acr-leaf-2 { left: 22%; top: 100%; animation-delay: 2s;   animation-duration: 13s; background: var(--acr-gold); }
.acr-leaf-3 { left: 40%; top: 100%; animation-delay: 5s;   animation-duration: 18s; }
.acr-leaf-4 { left: 58%; top: 100%; animation-delay: 1s;   animation-duration: 15s; }
.acr-leaf-5 { left: 76%; top: 100%; animation-delay: 7s;   animation-duration: 14s; background: var(--acr-gold); }
.acr-leaf-6 { left: 90%; top: 100%; animation-delay: 4s;   animation-duration: 17s; }
@keyframes acrFloat {
  0%   { transform: translateY(0) rotate(0deg)   scale(1);   opacity: 0; }
  10%  { opacity: 0.55; }
  100% { transform: translateY(-120vh) rotate(540deg) scale(0.6); opacity: 0; }
}

/* ============================================================
   SECTION 12 — FOOTER
   ============================================================ */
.acr-footer {
  background: var(--acr-forest);
  color: var(--acr-cream);
  padding: 90px 32px 40px;
  position: relative;
}
.acr-footer-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acr-accent) 30%, var(--acr-gold) 70%, transparent);
}
.acr-footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}
.acr-footer-logo {
  display: inline-block;
  font-family: var(--acr-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--acr-cream);
  margin-bottom: 18px;
}
.acr-footer-tag {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.65);
  max-width: 380px;
  margin-bottom: 28px;
}
.acr-socials { display: flex; gap: 10px; }
.acr-social {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.22);
  align-items: center; justify-content: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--acr-cream);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.acr-social:hover {
  background: var(--acr-accent);
  border-color: var(--acr-accent);
  color: var(--acr-forest);
}
.acr-footer-h {
  font-family: var(--acr-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acr-accent);
  margin-bottom: 22px;
}
.acr-footer-col ul li { margin-bottom: 12px; font-size: 14px; }
.acr-footer-col ul a {
  color: rgba(245, 240, 232, 0.78);
  transition: color 0.3s ease;
}
.acr-footer-col ul a:hover { color: var(--acr-accent); }
.acr-footer-contact li {
  color: rgba(245, 240, 232, 0.78);
  line-height: 1.6;
}
.acr-footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.acr-copyright {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 232, 0.55);
}
.acr-footer-watermark {
  font-family: var(--acr-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: rgba(125, 196, 127, 0.12);
  letter-spacing: -0.01em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* ============================================================
   GLOBAL — fade-up / fade-left / fade-right
   ============================================================ */
.acr-fade-up,
.acr-fade-left,
.acr-fade-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.acr-fade-up    { transform: translateY(40px); }
.acr-fade-left  { transform: translateX(-40px); }
.acr-fade-right { transform: translateX(40px); }
.acr-fade-up.is-visible,
.acr-fade-left.is-visible,
.acr-fade-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger children inside grids */
.acr-services-grid .acr-fade-up:nth-child(2) { transition-delay: 0.1s; }
.acr-services-grid .acr-fade-up:nth-child(3) { transition-delay: 0.2s; }
.acr-blog-grid     .acr-fade-up:nth-child(2) { transition-delay: 0.1s; }
.acr-blog-grid     .acr-fade-up:nth-child(3) { transition-delay: 0.2s; }
.acr-blog-grid     .acr-fade-up:nth-child(4) { transition-delay: 0.3s; }
.acr-why-grid      .acr-fade-up:nth-child(2) { transition-delay: 0.1s; }
.acr-why-grid      .acr-fade-up:nth-child(3) { transition-delay: 0.2s; }
.acr-portfolio-grid .acr-fade-up:nth-child(2) { transition-delay: 0.08s; }
.acr-portfolio-grid .acr-fade-up:nth-child(3) { transition-delay: 0.16s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .acr-hero-content { grid-template-columns: 1fr; gap: 30px; padding: 130px 28px 80px; align-items: end; }
  .acr-about-inner { grid-template-columns: 1fr; gap: 60px; }
  .acr-portfolio-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .acr-port-large { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/8; }
  .acr-event-card { grid-template-columns: 1fr; }
  .acr-event-img { min-height: 320px; }
  .acr-event-panel { padding: 44px 36px; }
  .acr-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .acr-stat:nth-child(2) { border-right: none; }
  .acr-stat:nth-child(odd) { border-right: 1px solid rgba(245,240,232,0.12); }
  .acr-stat:nth-child(1), .acr-stat:nth-child(2) { border-bottom: 1px solid rgba(245,240,232,0.12); padding-bottom: 32px; }
  .acr-stat:nth-child(3), .acr-stat:nth-child(4) { padding-top: 32px; }
  .acr-footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .acr-footer-col-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }

  .acr-nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--acr-forest);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 36px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 100;
  }
  .acr-nav-links.is-open { transform: translateX(0); }
  .acr-nav-links a { font-size: 22px; font-family: var(--acr-serif); }
  .acr-burger { display: flex; }
  .acr-nav-cta { display: none; }

  .acr-hero { min-height: 560px; }
  .acr-hero-title { font-size: clamp(3.4rem, 14vw, 5.5rem); }
  .acr-hero-content { padding: 100px 22px 70px; gap: 22px; }
  .acr-hero-right { padding-bottom: 0; }

  .acr-stats { padding: 50px 20px; }
  .acr-stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 0; }

  .acr-about, .acr-services, .acr-portfolio, .acr-event, .acr-blog, .acr-why, .acr-cta { padding: 80px 20px; }

  .acr-services-head, .acr-portfolio-head, .acr-blog-head { flex-direction: column; align-items: flex-start; gap: 20px; }

  .acr-services-grid, .acr-blog-grid, .acr-why-grid, .acr-portfolio-grid { grid-template-columns: 1fr; }
  .acr-port-large { grid-column: span 1; aspect-ratio: 4/3; }
  .acr-port-item { aspect-ratio: 4/3; }

  .acr-about-img-overlay { right: 0; bottom: -20px; width: 50%; border-width: 4px; }

  .acr-event-panel { padding: 36px 26px; }

  .acr-cta { padding: 90px 20px; }
  .acr-cta-actions .acr-btn { width: 100%; justify-content: center; }

  .acr-footer { padding: 70px 22px 30px; }
  .acr-footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
  .acr-footer-col-wide { grid-column: span 1; }
  .acr-footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .acr-footer-watermark { font-size: 2.2rem; }

  .acr-service-desc { max-height: 200px; opacity: 1; }
}

@media (max-width: 480px) {
  .acr-demo-banner { font-size: 10px; padding: 0 8px; }
  .acr-pill { font-size: 15px; padding: 11px 20px; }
  .acr-h2 { font-size: 1.9rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .acr-hero-eyebrow, .acr-hero-title, .acr-hero-desc, .acr-hero-badges,
  .acr-fade-up, .acr-fade-left, .acr-fade-right { opacity: 1; transform: none; }
  .acr-hero-video { opacity: 0.55; }
  .acr-leaf, .acr-scroll-indicator span { animation: none !important; }
}
