:root {
  --text: #111;
  --text-soft: #5a5a5a;
  --text-mute: #8a8a8a;
  --bg: #fafaf7;
  --bg-deep: #f0ece0;
  --bg-dark: #161413;
  --rule: #e3e0d8;
  --rule-strong: #111;
  --green: #009f3f;
  --green-dark: #006b29;
  --orange: #f29137;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--green-dark); }
img { display: block; max-width: 100%; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HEADER with real logo
   ============================================ */
header {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}
header.hidden {
  transform: translateY(-100%);
}
/* Push body content down to account for fixed header */
body {
  padding-top: 88px;
}
@media (max-width: 760px) {
  body { padding-top: 76px; }
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.logo-link {
  display: flex;
  align-items: center;
}
.logo-img {
  width: 175px;
  height: auto;
  max-height: 60px;
  display: block;
}
nav {
  display: flex;
  gap: 2.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  align-items: center;
}
nav a.phone {
  color: #fff;
  background: var(--green);
  padding: 0.6rem 1.15rem;
  border-radius: 2px;
  font-weight: 600;
}
nav a.phone:hover { background: var(--green-dark); color: #fff; }
@media (max-width: 760px) {
  nav { gap: 1.25rem; font-size: 0.85rem; }
  nav a:not(.phone) { display: none; }
  .logo-img { width: 130px; max-height: 44px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 5rem 0 5rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.028em;
  margin: 0 0 1.5rem;
}
.hero h1 .accent { color: var(--green); }
.hero .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 2rem;
  max-width: 50ch;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: all 0.15s;
  border-radius: 2px;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-ghost {
  border: 1.5px solid var(--text);
  color: var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--bg); }

/* Hero image */
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-right: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  z-index: -1;
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { order: -1; aspect-ratio: 4/3; }
}

/* ============================================
   SLOGAN BAR
   ============================================ */
.slogan-bar {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 1.1rem 2rem;
}
.slogan-bar p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.slogan-bar .accent {
  color: #ffd17a;
  font-style: italic;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1.5rem;
  display: inline-block;
}
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 0 0 3rem;
  max-width: 22ch;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--text);
  margin-top: 1rem;
}
.service {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid var(--rule);
}
.service:last-child { border-right: none; padding-right: 0; }
.service:nth-child(2) { padding-left: 2rem; }
.service:nth-child(3) { padding-left: 2rem; }
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: var(--green);
}
.service h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.015em;
}
.service p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}
@media (max-width: 760px) {
  .services { grid-template-columns: 1fr; }
  .service {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 2rem 0 !important;
  }
  .service:last-child { border-bottom: none; }
}

/* ============================================
   PERFORMANCE
   ============================================ */
.performance {
  background: #0d3320;
  color: #fff;
  border: none;
}
.performance .section-label { color: var(--orange); }
.performance .section-title { color: #fff; margin-bottom: 0.5rem; }
.performance-intro {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 4rem;
  max-width: 56ch;
}
.perf-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 3rem;
}
.perf-stat .num {
  font-size: clamp(2.5rem, 4.5vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.65rem;
  color: #fff;
}
.perf-stat .num .sup {
  font-size: 0.45em;
  color: var(--orange);
  margin-left: 0.05em;
  font-weight: 700;
  vertical-align: super;
}
.perf-stat .label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.perf-stat .period {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 760px) {
  .perf-stats { grid-template-columns: 1fr; gap: 2.5rem; }
  .perf-stat { text-align: center; }
  .perf-stat .num { font-size: 2.5rem; }
}

/* ============================================
   WRITING
   ============================================ */
.writing-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.writing-head .section-title { margin: 0; }
.all-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-dark);
  border-bottom: 1.5px solid var(--green);
  padding-bottom: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.all-link:hover { color: var(--green); }
.arrow-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.all-link:hover .arrow-icon,
.read-more:hover .arrow-icon { transform: translateX(3px); }

.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.featured-post-image { aspect-ratio: 16/10; position: relative; }
.featured-post-image .ph {
  background: var(--bg-dark);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.featured-post-image .ph-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.featured-post-image .ph-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.featured-post .meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.featured-post h3 {
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.featured-post p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 1.5rem;
}
.featured-post .read-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1.5px solid var(--green);
  padding-bottom: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.featured-post .read-more:hover { color: var(--green-dark); }
@media (max-width: 760px) {
  .featured-post { grid-template-columns: 1fr; gap: 1.5rem; }
}

.other-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.other-post .meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.75rem;
}
.other-post h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 0.85rem;
}
.other-post p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}
.other-post:hover h3 { color: var(--green-dark); }
@media (max-width: 760px) { .other-posts { grid-template-columns: 1fr; } }

/* ============================================
   TEAM
   ============================================ */
.team-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 3.5rem;
  max-width: 56ch;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
.team-photo {
  aspect-ratio: 3/4;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 4px;
  background: var(--green);
  z-index: 2;
}
.team-card:nth-child(2) .team-photo::after { background: var(--orange); }
.team-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  letter-spacing: -0.015em;
}
.team-card .role {
  font-size: 0.8rem;
  color: var(--text-mute);
  margin: 0 0 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.team-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}
@media (max-width: 760px) {
  .team-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   VIDEO
   ============================================ */
.video-section {
  background: var(--bg-deep);
  border: none;
}
.video-section .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  align-items: center;
}
.video-section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 0 0 1rem;
  max-width: 20ch;
}
.video-section p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
  max-width: 38ch;
}
.video-embed {
  aspect-ratio: 16/9;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 760px) {
  .video-section .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-left .section-title { margin-bottom: 1.5rem; }
.contact-left p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 2.5rem;
  max-width: 32ch;
}
.contact-info dl { margin: 0; }
.contact-info dt {
  font-size: 0.72rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.contact-info dd {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.contact-info dd:last-child { margin-bottom: 0; }
.contact-info dd a:hover { color: var(--green-dark); }

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid var(--rule);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--rule);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 2px;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0.95rem 2rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.15s;
}
.form-submit:hover { background: var(--green-dark); }
@media (max-width: 860px) {
  .contact .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s;
  z-index: 99;
}
.floating-call.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.floating-call:hover {
  background: var(--green-dark);
  color: #fff;
  transform: scale(1.05);
}
.floating-call svg {
  width: 26px;
  height: 26px;
}
@media (max-width: 760px) {
  .floating-call {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0d3320;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  border: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .footer-logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer-brand .logo-img {
  width: 200px;
  height: auto;
  max-height: 70px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  max-width: 36ch;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--orange); }
.footer-post {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-post:last-child { border-bottom: none; }
.footer-post a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-post .date {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-brand .footer-logo-link { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================
   ARTICLE (blog post page)
   ============================================ */
.article-wrap { max-width: 720px; margin: 0 auto; }
.article-head {
  padding: 1rem 0 2.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}
.article-head .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1.25rem;
  display: inline-block;
}
.article-head h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.025em;
  margin: 0;
}
.article-banner { margin: 0 auto 3rem; }
.article-banner img { width: 100%; height: auto; display: block; }
.article p {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.article h2 {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 2.75rem 0 1rem;
}
.article h3 {
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 2.1rem 0 0.85rem;
}
.article h4 { font-size: 1.05rem; font-weight: 700; margin: 1.8rem 0 0.75rem; }
.article ul, .article ol { margin: 0 0 1.5rem; padding-left: 1.35rem; }
.article li { font-size: 1.08rem; line-height: 1.7; margin-bottom: 0.6rem; }
.article a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.article a:hover { color: var(--green); }
.article strong { font-weight: 700; }
.article em { font-style: italic; }
.article img { width: 100%; height: auto; margin: 2rem 0; }
.article figure { margin: 2rem 0; }
.article figure img { margin: 0; }
.article hr { border: none; border-top: 1px solid var(--rule); margin: 2.75rem 0; }
.article blockquote {
  border-left: 3px solid var(--green);
  padding-left: 1.25rem;
  margin: 2rem 0;
  color: var(--text-soft);
}
.article-foot {
  max-width: 720px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.article-foot a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.article-foot a:hover { color: var(--green); }
.article-foot .back-icon { width: 14px; height: 14px; }
