/* Conner's Landscaping LLC · Ascenix demo · Poster Trade direction */

:root {
  --navy: #16395B;
  --navy-deep: #0E2A44;
  --navy-ink: #0A2138;
  --lime: #A2C93A;
  --lime-bright: #B7DC4E;
  --paper: #F5F7F2;
  --white: #FFFFFF;
  --steel: #A8BACB;
  --slate: #45586B;
  --hairline: rgba(255, 255, 255, 0.10);
  --safe-t: env(safe-area-inset-top, 0px);
  --radius: 14px;
  --shadow: 0 14px 40px rgba(10, 33, 56, 0.16);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--navy-deep);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; width: 0; height: 0; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-ink);
  background: var(--navy);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-display); font-style: italic; text-transform: uppercase; line-height: 0.95; }

h2 { font-weight: 800; font-size: clamp(2.3rem, 5.2vw, 3.6rem); letter-spacing: 0.01em; }

.container { width: min(1200px, 92vw); margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.9rem;
}

.accent { color: var(--lime); }
.accent-i { color: var(--lime); }

.section-head { margin-bottom: 3rem; max-width: 720px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 9px;
  padding: 0.85rem 1.6rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn:active { transform: scale(0.97); }
.btn .arrow { transition: transform 0.25s ease-out; }
.btn:hover .arrow { transform: translateX(5px); }

.btn-lime { background: var(--lime); color: var(--navy-ink); }
.btn-lime:hover { background: var(--lime-bright); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.92rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }

/* ---------- Topbar (fixed, first element in body, fills the iOS status strip) ---------- */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: var(--safe-t);
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.topbar.scrolled, .topbar.menu-open {
  background: rgba(14, 42, 68, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--hairline);
}

.topbar-inner {
  width: min(1300px, 94vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  gap: 1rem;
}

.brand { text-decoration: none; line-height: 1; justify-self: start; }
.brand-line1 {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.65rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand-line2 {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--lime);
  margin-top: 2px;
}

.nav { display: flex; gap: 2.1rem; justify-self: center; }
.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--lime); border-color: var(--lime); }

.topbar-actions { display: flex; align-items: center; gap: 1.1rem; justify-self: end; }
.topbar-actions .btn { min-height: 44px; }
.topbar-phone {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.topbar-phone:hover { color: var(--lime); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 4vw 1.4rem;
  background: rgba(14, 42, 68, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.mobile-nav.open { display: flex; }
.mobile-nav > a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 0.45rem 0;
}
.mobile-nav > a:hover { color: var(--lime); }
.mobile-nav .btn { justify-content: center; margin-top: 0.6rem; font-size: 1.05rem; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 112%; object-fit: cover; object-position: center 40%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(78deg, rgba(10, 33, 56, 0.93) 0%, rgba(10, 33, 56, 0.78) 34%, rgba(14, 42, 68, 0.30) 68%, rgba(14, 42, 68, 0.42) 100%),
    linear-gradient(0deg, rgba(14, 42, 68, 0.55) 0%, rgba(14, 42, 68, 0) 30%);
}

.hero-inner {
  position: relative;
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding: calc(8.5rem + var(--safe-t)) 0 9rem;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(4rem, 11vw, 8.6rem);
  color: var(--white);
  letter-spacing: 0.005em;
  margin: 0.2rem 0 1.4rem;
}
.hero-line { display: block; overflow: hidden; padding-right: 0.12em; margin-right: -0.12em; }
.hero-line > span { display: inline-block; }

.hero-sub { color: var(--steel); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 520px; margin-bottom: 2.2rem; }

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

.hero-trust { display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; list-style: none; }
.hero-trust li {
  color: var(--steel);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hero-trust li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

.swoosh { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; pointer-events: none; }
.swoosh svg { width: 100%; height: clamp(50px, 8vw, 110px); display: block; }

/* ---------- Services ---------- */

.services { background: var(--navy); padding: 5.5rem 0 6.5rem; color: var(--white); }
.services h2 { color: var(--white); }

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

.svc-card {
  background: var(--navy-deep);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.svc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(162, 201, 58, 0.55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.svc-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.svc-card:hover .svc-photo img { transform: scale(1.05); }

.svc-body { padding: 1.5rem 1.6rem 1.7rem; position: relative; }

.svc-icon {
  position: absolute;
  top: -26px;
  right: 1.4rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy-ink);
  display: grid;
  place-items: center;
  border: 4px solid var(--navy-deep);
  transition: transform 0.3s var(--ease-out);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card:hover .svc-icon { transform: rotate(-8deg) scale(1.06); }

.svc-body h3 {
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.svc-body p { color: var(--steel); font-size: 0.98rem; }

/* ---------- Tagline band ---------- */

.tagline-band {
  background: var(--paper);
  padding: 5.5rem 0;
  border-top: 6px solid var(--lime);
}

.tagline-big {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7.4vw, 5.6rem);
  line-height: 1.02;
  color: var(--navy);
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.8rem;
  margin-bottom: 3rem;
}
.tagline-big i { font-style: inherit; color: var(--lime); }

.tagline-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(22, 57, 91, 0.15);
  padding-top: 2.4rem;
}
.fact { display: flex; align-items: center; gap: 1.1rem; }
.fact-n {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 3.6rem;
  color: var(--navy);
  line-height: 1;
}
.fact-t {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Featured work ---------- */

.work { background: var(--paper); padding: 2rem 0 6.5rem; }

.work-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.work-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.work-photo img { width: 100%; height: 100%; object-fit: cover; }
.work-tag {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  padding: 0.5rem 0.95rem;
  border-radius: 7px;
  border-left: 4px solid var(--lime);
}

.work-copy h2 { color: var(--navy); margin-bottom: 1.2rem; }
.work-copy > p { color: var(--slate); margin-bottom: 1.6rem; max-width: 480px; }
.work-copy .btn { margin-top: 1.8rem; }

.check-list { list-style: none; display: grid; gap: 0.7rem; }
.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-weight: 500;
  color: var(--navy-ink);
}
.check-list li::before {
  content: "";
  width: 15px; height: 15px;
  flex-shrink: 0;
  transform: translateY(2px);
  background: var(--lime);
  clip-path: polygon(14% 44%, 0 62%, 40% 100%, 100% 18%, 84% 4%, 39% 71%);
}
.check-list.light li { color: var(--white); }

/* ---------- Process ---------- */

.process { background: var(--white); padding: 6rem 0 6.5rem; }
.process h2 { color: var(--navy); }

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 2.6rem;
}

.steps-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 8px;
}
.steps-line path { stroke-width: 6; fill: none; }
.steps-line-bg { stroke: rgba(22, 57, 91, 0.12); }
.steps-line-fg { stroke: var(--lime); }

.step-n {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--navy);
  margin-bottom: 0.9rem;
}
.step h3 { color: var(--navy); font-weight: 800; font-size: 1.6rem; margin-bottom: 0.55rem; letter-spacing: 0.02em; }
.step p { color: var(--slate); font-size: 0.98rem; max-width: 300px; }

/* ---------- About ---------- */

.about { background: var(--navy); color: var(--white); padding: 6rem 0; overflow: hidden; }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-art { position: relative; }
.about-art img {
  width: 100%;
  border-radius: var(--radius);
  -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
}

.about-copy h2 { color: var(--white); margin-bottom: 1.2rem; }
.about-copy > p { color: var(--steel); margin-bottom: 1.6rem; max-width: 520px; }

/* ---------- Quote ---------- */

.quote { position: relative; background: var(--navy-deep); color: var(--white); padding: 0 0 6.5rem; }
.quote .swoosh-quote { position: relative; inset: auto; transform: scaleY(-1); margin-bottom: 3.5rem; }
.quote .swoosh-quote svg path[fill] { fill: var(--navy); }

.quote-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.quote-copy h2 { color: var(--white); margin-bottom: 1.1rem; }
.quote-copy > p { color: var(--steel); max-width: 440px; margin-bottom: 2rem; }

.quote-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--lime);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.quote-phone:hover { color: var(--lime-bright); }
.quote-hours { color: var(--steel); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; margin-top: 0.7rem; }

.quote-form {
  background: var(--navy);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}
.quote-form label { display: grid; gap: 0.4rem; }
.quote-form label span {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
}
.quote-form input, .quote-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: var(--navy-deep);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s;
  resize: vertical;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(168, 186, 203, 0.55); }
.quote-form input:focus, .quote-form textarea:focus { outline: none; border-color: var(--lime); }
.quote-form .btn { justify-content: center; margin-top: 0.3rem; }
.form-note { font-size: 0.82rem; color: var(--steel); text-align: center; }

/* ---------- Footer ---------- */

.footer { background: var(--navy-ink); color: var(--white); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.2rem 0 2.6rem;
  align-items: center;
}

.footer-brand { display: flex; align-items: center; gap: 1.1rem; }
.footer-mark {
  width: 84px;
  border-radius: 10px;
  flex-shrink: 0;
}
.footer-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.05;
}
.footer-name span { display: block; color: var(--lime); font-size: 0.95rem; letter-spacing: 0.18em; font-weight: 700; }
.footer-tag { color: var(--steel); font-size: 0.9rem; margin-top: 0.35rem; }

.footer-services {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.4rem;
  font-size: 0.93rem;
  color: var(--steel);
}

.footer-contact { justify-self: end; text-align: right; }
.footer-phone {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--lime);
  text-decoration: none;
}
.footer-phone:hover { color: var(--lime-bright); }
.footer-contact p { color: var(--steel); font-size: 0.9rem; margin-top: 0.3rem; }

.footer-legal { border-top: 1px solid var(--hairline); }
.footer-legal-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.1rem 0;
  font-size: 0.84rem;
  color: var(--steel);
}
.footer-legal a { color: var(--steel); }
.footer-legal a:hover { color: var(--lime); }

/* ---------- Reveal defaults (JS enhances; page fully readable without it) ---------- */

.rv { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .nav { gap: 1.4rem; }
  .topbar-phone { display: none; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .topbar-inner { grid-template-columns: auto 1fr; height: 66px; }
  .topbar-actions { gap: 0.8rem; }

  .svc-grid { grid-template-columns: 1fr 1fr; }
  .work-split, .about-split, .quote-split { grid-template-columns: 1fr; }
  .about-art { max-width: 460px; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-contact { justify-self: start; text-align: left; }

  .steps { grid-template-columns: 1fr; gap: 2.2rem; padding-top: 0; }
  .steps-line { display: none; }
  .step { border-left: 4px solid var(--lime); padding-left: 1.3rem; }
  .step p { max-width: 460px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .tagline-facts { grid-template-columns: 1fr; gap: 1.2rem; }
  .hero-inner { padding: calc(7.5rem + var(--safe-t)) 0 7rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .btn-sm { padding: 0.5rem 0.85rem; font-size: 0.85rem; }
  .brand-line1 { font-size: 1.4rem; }
  .quote-form { padding: 1.4rem; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
