/* =====================================================
   Kuri Landscaping — styles
   Brand: dark-green / teal · Fraunces + Inter
   ===================================================== */

:root {
  --green-900: #102E22;
  --green-700: #1B4332;     /* primary */
  --green-500: #2A6E58;
  --teal-500:  #2A9D8F;     /* accent */
  --teal-600:  #248A7E;
  --light-green: #D8E2D2;
  --light-green-2: #E7EDE2;
  --off-white: #FAFAF7;
  --paper:     #F4F2EC;
  --black:     #0F0F0F;
  --ink-2:     #2A2D2B;
  --grey:      #5C6B66;
  --grey-2:    #8C958F;
  --line:      #E4E3DC;
  --line-dark: rgba(255,255,255,.14);

  --radius-s: 8px;
  --radius:   14px;
  --radius-l: 22px;

  --shadow-s: 0 1px 2px rgba(15,15,15,.04), 0 2px 6px rgba(15,15,15,.04);
  --shadow:   0 6px 20px -8px rgba(15,15,15,.18), 0 1px 3px rgba(15,15,15,.06);
  --shadow-l: 0 24px 60px -20px rgba(15,15,15,.30), 0 8px 24px -12px rgba(15,15,15,.18);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--black);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }

em { font-style: italic; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--green-700);
  color: var(--off-white);
  box-shadow: 0 6px 18px -8px rgba(27,67,50,.55);
}
.btn-primary:hover { background: var(--teal-600); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(250,250,247,.55);
}
.btn-ghost:hover { background: rgba(250,250,247,.12); border-color: var(--off-white); }

.contact .btn-ghost, .form-success .btn-ghost {
  color: var(--green-700);
  border-color: var(--green-700);
}
.contact .btn-ghost:hover { background: rgba(27,67,50,.06); }

/* ============ NAV ============ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 32px;
  background: rgba(250,250,247,.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(15,15,15,.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-700);
}
.brand-mark {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name-top {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--green-700);
}
.brand-name-sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { background: rgba(27,67,50,.08); color: var(--green-700); }

.nav-cta { padding: 10px 18px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--green-700);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px;
  }
  .nav.is-open .nav-links a { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav.is-open .nav-links a:last-child { border-bottom: 0; }
  .nav.is-open .nav-cta { display: inline-flex; margin: 10px 20px 14px; }
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--off-white);
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,46,34,.55) 0%, rgba(15,46,34,.35) 40%, rgba(15,46,34,.78) 100%),
    linear-gradient(90deg, rgba(15,46,34,.62) 0%, rgba(15,46,34,.1) 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(250,250,247,.14);
  border: 1px solid rgba(250,250,247,.25);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(42,157,143,.25);
}

.hero-title {
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 900px;
}
.hero-title em {
  font-style: italic;
  color: #C9E3D2;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  max-width: 620px;
  color: rgba(250,250,247,.92);
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(250,250,247,.18);
  max-width: 700px;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
}
.trust-item span {
  font-size: 13px;
  color: rgba(250,250,247,.75);
  letter-spacing: 0.02em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(250,250,247,.22);
}

/* ============ VERSE BAR ============ */

.verse-bar {
  background: var(--green-900);
  color: var(--off-white);
  padding: 28px 0;
  text-align: center;
}
.verse-bar .container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.verse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  max-width: 920px;
  line-height: 1.4;
  color: #EAE6D9;
}
.verse-open, .verse-close { color: var(--teal-500); font-size: 28px; line-height: 0; position: relative; top: 6px; }
.verse-cite {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,247,.6);
}

/* ============ SECTION HEAD ============ */

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.section-head h2 em { color: var(--green-700); font-style: italic; font-weight: 500; }
.section-lede {
  margin-top: 18px;
  font-size: 18px;
  color: var(--grey);
  line-height: 1.55;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 18px;
}
.eyebrow.light { color: #9BCFC4; }

/* ============ WHY ============ */

.why {
  padding: 100px 0;
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: auto auto -40px -40px;
  width: 120px;
  height: 120px;
  background: var(--light-green);
  border-radius: 50%;
  opacity: .5;
  transition: transform .4s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-card:hover::before { transform: scale(1.4); }
.why-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-600);
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 28px;
}
.why-num::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--teal-600);
  vertical-align: middle;
  margin-left: 12px;
}
.why-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  position: relative;
}
.why-card p {
  color: var(--grey);
  margin: 0;
  position: relative;
}

@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============ SERVICES ============ */

.services {
  padding: 100px 0;
  background: var(--paper);
  position: relative;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(42,157,143,.4);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--light-green);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.service-card > p {
  color: var(--grey);
  margin-bottom: 18px;
  font-size: 15.5px;
}
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-bullets li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
}
.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
}
.service-link {
  margin-top: auto;
  color: var(--green-700);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s ease;
}
.service-link:hover { gap: 10px; color: var(--teal-600); }

.services-also {
  margin-top: 40px;
  padding: 22px 28px;
  background: var(--off-white);
  border: 1px dashed rgba(27,67,50,.35);
  border-radius: var(--radius);
  text-align: center;
  color: var(--grey);
}
.services-also p { margin: 0; }
.services-also strong { color: var(--green-700); }

@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }

/* ============ GALLERY ============ */

.gallery {
  padding: 100px 0;
  background: var(--off-white);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.chip {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.chip:hover { border-color: var(--green-700); color: var(--green-700); }
.chip.is-active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--off-white);
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.project {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 40px;
  align-items: center;
}
.project.reverse .project-photo { order: 2; }
.project-photo {
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.project-photo:hover { box-shadow: var(--shadow-l); transform: translateY(-2px); }
.project-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.project-info {
  padding: 8px 0;
}
.project-info .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 14px;
  padding: 5px 12px;
  background: var(--light-green);
  border-radius: 999px;
}
.project-info h4 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  color: var(--green-700);
  line-height: 1.15;
}
.project-info > p {
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 22px;
}
.project-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 22px 28px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  justify-content: start;
}
.project-meta div { min-width: 0; }
.project-meta dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.project-meta dd {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--green-700);
  margin: 0;
}
.project.is-hidden { display: none; }
.gallery-empty { text-align: center; padding: 40px; color: var(--grey); }
.gallery-empty a { color: var(--green-700); font-weight: 600; }

.gallery-cta {
  text-align: center;
  margin-top: 56px;
  padding: 32px;
  background: var(--light-green-2);
  border-radius: var(--radius);
}
.gallery-cta p {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--green-700);
  font-weight: 500;
}

@media (max-width: 880px) {
  .project { grid-template-columns: 1fr; gap: 24px; }
  .project.reverse .project-photo { order: 0; }
  .project-meta { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 520px) {
  .project-meta { grid-template-columns: 1fr 1fr; }
}

/* ============ ABOUT ============ */

.about {
  padding: 100px 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-copy .lead {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.55;
}
.about-copy h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--green-700);
  margin: 32px 0 10px;
}
.about-copy p {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.65;
}
.about-cta { margin-top: 36px; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.stat {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--green-700);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.stat-num span {
  font-size: 18px;
  font-weight: 500;
  color: var(--teal-600);
  margin-left: 4px;
}
.stat-label {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--grey);
}

.founder-card {
  background: var(--green-700);
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.founder-photo {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  background: var(--green-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-initials {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--teal-500);
}
.founder-name { font-weight: 600; font-size: 16px; }
.founder-role { font-size: 13px; color: rgba(250,250,247,.7); margin-bottom: 8px; }
.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(250,250,247,.92);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ TESTIMONIALS ============ */

.testimonials {
  padding: 100px 0;
  background: var(--green-900);
  color: var(--off-white);
}
.testimonials .section-head h2 { color: var(--off-white); }
.testimonials .section-head h2 em { color: #9BCFC4; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.testimonial:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(42,157,143,.5);
  transform: translateY(-2px);
}
.testimonial.featured {
  grid-column: span 2;
  background: var(--green-700);
  border-color: var(--teal-500);
}
.stars {
  color: #F2C94C;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial blockquote {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(250,250,247,.92);
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
}
.testimonial.featured blockquote {
  font-size: 22px;
  line-height: 1.45;
  color: var(--off-white);
}
.testimonial footer {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #B7D8CD;
}

@media (max-width: 980px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial.featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial.featured { grid-column: auto; }
  .testimonial.featured blockquote { font-size: 18px; }
}

/* ============ CONTACT ============ */

.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-intro h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin: 8px 0 18px;
}
.contact-intro .lead {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 36px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info li {
  display: grid;
  grid-template-columns: 110px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-info li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-label {
  grid-row: 1 / span 2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  padding-top: 4px;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-700);
  text-decoration: none;
}
a.contact-value:hover { color: var(--teal-600); }
.contact-meta {
  font-size: 13.5px;
  color: var(--grey);
}

.contact-verse {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.5;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* form */

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.form-row { margin-bottom: 22px; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.field-label .req { color: var(--teal-600); }
.field-label .hint { color: var(--grey-2); font-weight: 400; font-size: 12px; }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-700);
  background: white;
  box-shadow: 0 0 0 3px rgba(42,110,88,.15);
}
.field input[type="file"] {
  font-size: 14px;
  color: var(--grey);
  border: 1px dashed var(--line);
  padding: 12px;
  border-radius: 10px;
  background: var(--off-white);
}

.service-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.pick {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--off-white);
  cursor: pointer;
  font-size: 14.5px;
  transition: border-color .15s ease, background .15s ease;
}
.pick:hover { border-color: var(--green-700); }
.pick input { accent-color: var(--green-700); width: 16px; height: 16px; }
.pick:has(input:checked) {
  background: var(--light-green);
  border-color: var(--green-700);
  color: var(--green-700);
  font-weight: 600;
}

.field-error {
  display: none;
  color: #B7404A;
  font-size: 13px;
  margin-top: -2px;
}
.field.is-invalid .field-error,
.form-row.is-invalid > .field-error { display: block; }
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #C9697A;
  background: #FCF4F4;
}

.form-foot {
  text-align: center;
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--grey);
}

.form-success {
  position: absolute;
  inset: 0;
  background: white;
  border-radius: var(--radius-l);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  animation: fadeIn .35s ease;
}
.success-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--off-white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.form-success h3 {
  font-size: 28px;
  color: var(--green-700);
}
.form-success p { color: var(--grey); max-width: 380px; }
.form-success a { color: var(--green-700); font-weight: 600; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px; }
  .form-row.two { grid-template-columns: 1fr; }
  .service-picker { grid-template-columns: 1fr; }
}

/* ============ CLOSING CTA ============ */

.closing-cta {
  padding: 100px 0;
  background: var(--green-700);
  color: var(--off-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(42,157,143,.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(42,157,143,.25) 0%, transparent 60%);
}
.closing-cta .container { position: relative; }
.closing-cta h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 14px;
}
.closing-cta p {
  font-size: 18px;
  color: rgba(250,250,247,.85);
  margin-bottom: 32px;
}
.closing-cta .btn-primary {
  background: var(--off-white);
  color: var(--green-700);
}
.closing-cta .btn-primary:hover { background: var(--teal-500); color: var(--off-white); }

/* ============ FOOTER ============ */

.footer {
  background: var(--green-900);
  color: rgba(250,250,247,.78);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 48px;
}
.footer .brand-name-top { color: var(--off-white); }
.footer .brand-name-sub { color: rgba(250,250,247,.55); }
.footer .brand-mark { background: transparent; width: 48px; height: 48px; }
.footer .brand-mark img { filter: brightness(1.7) saturate(.55); }
.footer-tag {
  margin-top: 18px;
  font-size: 14.5px;
  color: rgba(250,250,247,.72);
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h4 {
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a, .footer-col span {
  color: rgba(250,250,247,.78);
  text-decoration: none;
  font-size: 14.5px;
}
.footer-col a:hover { color: var(--teal-500); }
.footer-verse p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(250,250,247,.6);
  margin: 0;
}
.footer-base {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
}
.footer-base .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(250,250,247,.5);
  letter-spacing: 0.02em;
}
.powered-by {
  color: rgba(250,250,247,.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.powered-by strong {
  color: var(--teal-500);
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ FLOATING CTA (mobile) ============ */

.floating-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 60;
  background: var(--green-700);
  color: var(--off-white);
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-l);
  display: none;
}
.floating-cta:hover { background: var(--teal-500); }

@media (max-width: 880px) {
  .floating-cta { display: inline-flex; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15,15,15,.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: fadeIn .25s ease;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  background: rgba(250,250,247,.12);
  color: var(--off-white);
  border: 1px solid rgba(250,250,247,.3);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: rgba(250,250,247,.22); }
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--off-white);
  font-size: 14px;
  background: rgba(15,15,15,.6);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}


/* ============================================================
   SEO-redesign additions: hero byline, At-a-glance, process,
   FAQ — added 2026-05-16
   ============================================================ */

/* Hero byline */
.hero-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: -8px 0 30px;
  padding: 10px 16px 10px 10px;
  background: rgba(15,46,34,.45);
  border: 1px solid rgba(250,250,247,.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.byline-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
}
.byline-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.byline-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--off-white);
}
.byline-meta {
  font-size: 12px;
  color: rgba(250,250,247,.7);
  letter-spacing: .01em;
}

/* At-a-glance */
.glance {
  padding: 80px 0 60px;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.glance-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.glance-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 12px 0;
}
.glance-head p {
  color: var(--grey);
  font-size: 16.5px;
  margin: 0;
}
.glance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: white;
}
.glance-grid > div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.glance-grid > div:nth-child(3n) { border-right: 0; }
.glance-grid > div:nth-last-child(-n+3) { border-bottom: 0; }
.glance-grid dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 6px;
}
.glance-grid dd {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 500;
  color: var(--green-700);
  margin: 0;
  line-height: 1.35;
}
.glance-grid dd a { color: var(--green-700); text-decoration: none; border-bottom: 1px solid rgba(27,67,50,.25); }
.glance-grid dd a:hover { border-color: var(--teal-500); color: var(--teal-600); }

@media (max-width: 880px) {
  .glance-grid { grid-template-columns: repeat(2, 1fr); }
  .glance-grid > div:nth-child(3n) { border-right: 1px solid var(--line); }
  .glance-grid > div:nth-child(2n) { border-right: 0; }
  .glance-grid > div:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .glance-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 520px) {
  .glance-grid { grid-template-columns: 1fr; }
  .glance-grid > div { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .glance-grid > div:last-child { border-bottom: 0 !important; }
}

/* How we work */
.process {
  padding: 100px 0;
  background: var(--off-white);
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--light-green);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}
.step-body h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--green-700);
}
.step-body p {
  color: var(--ink-2);
  font-size: 15.5px;
  margin: 0 0 10px;
  line-height: 1.55;
}
.step-meta {
  font-size: 13px;
  color: var(--grey);
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: auto !important;
}
.step-meta strong { color: var(--teal-600); }
@media (max-width: 980px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--paper);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: rgba(42,157,143,.45);
  box-shadow: var(--shadow-s);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  color: var(--green-700);
  letter-spacing: -0.005em;
}
.faq-toggle {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  position: relative;
  border-radius: 50%;
  background: var(--light-green);
  transition: background .2s ease, transform .25s ease;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--green-700);
  border-radius: 1px;
  left: 50%; top: 50%;
}
.faq-toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 2px; height: 12px; transform: translate(-50%, -50%); transition: transform .25s ease; }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item[open] .faq-toggle { background: var(--teal-500); }
.faq-item[open] .faq-toggle::before { background: var(--off-white); }
.faq-body {
  padding: 0 26px 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}
.faq-body p { margin: 0 0 12px; }
.faq-body p:last-child { margin: 0; }
.faq-numbered, .faq-bullets {
  margin: 8px 0 12px;
  padding-left: 22px;
}
.faq-numbered li, .faq-bullets li {
  margin-bottom: 8px;
}
.faq-numbered li::marker, .faq-bullets li::marker {
  color: var(--teal-600);
  font-weight: 700;
}

@media (max-width: 600px) {
  .faq-item summary { padding: 18px 20px; }
  .faq-item summary h3 { font-size: 17px; }
  .faq-body { padding: 0 20px 20px; }
}

/* Footer h3 (was h4) styling override */
.footer-col h3.card-title {
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

/* Gallery card-title sizing (project info) */
.project-info h3.card-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  color: var(--green-700);
  line-height: 1.15;
}

/* Hero tweaks for SEO copy */
.hero-title {
  max-width: 880px;
}
.hero-sub strong { color: #C9E3D2; font-weight: 600; }
