/* I.C. Garden Services LLC — colors & type from their Wix theme */
:root {
  --forest: #394737;
  --forest-deep: #262f25;
  --ink: #131812;
  --sage: #b9c7b7;
  --moss: #738f6f;
  --lime: #c9dd72;
  --lime-mid: #aeca31;
  --lime-pale: #e4eeb8;
  --paper: #f4f2ea;
  --cream: #faf8f2;
  --white: #ffffff;
  --line: rgba(57, 71, 55, 0.16);
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1120px;
  --pad: clamp(1.1rem, 4vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); }
a:hover { color: var(--moss); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lime);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.wrap {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

/* Utility bar */
.util {
  background: var(--ink);
  color: var(--sage);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.util .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  padding: 0.55rem 0;
  justify-content: space-between;
}
.util a { color: var(--lime-pale); text-decoration: none; }
.util a:hover { color: var(--lime); }

/* Header */
.site-header {
  background: var(--forest);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--white);
}
.brand em {
  font-style: normal;
  color: var(--lime);
}
.brand small {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.15rem;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}
nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav a:hover, nav a[aria-current="page"] { color: var(--lime); }
nav .btn { color: var(--ink); }
nav .btn:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.15rem;
  border: 2px solid var(--lime);
  border-radius: 2px;
}
.btn:hover { background: var(--lime-pale); border-color: var(--lime-pale); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover { background: var(--white); color: var(--forest); }
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: min(86vh, 760px);
  background: var(--forest-deep);
}
.hero-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
}
.hero-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(transparent, rgba(19,24,18,0.78));
  color: var(--lime-pale);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 5vw, 3.4rem);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(19,24,18,0.15), rgba(19,24,18,0.15)),
    var(--forest);
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 0.7rem;
  font-weight: 600;
}
.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.4vw, 3.7rem);
  line-height: 1.05;
  margin: 0 0 0.85rem;
  color: var(--white);
}
.hero-copy h1 span { color: var(--lime); display: block; }
.hero-copy .lede {
  font-size: 1.08rem;
  color: var(--sage);
  max-width: 38ch;
  margin: 0 0 1.4rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}
.aka {
  margin: 0;
  font-size: 0.78rem;
  color: var(--sage);
  letter-spacing: 0.03em;
}

/* Lime band */
.band {
  background: var(--lime);
  color: var(--ink);
}
.band .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding: 0.85rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.band span + span { position: relative; }
.band span + span::before {
  content: "·";
  position: absolute;
  left: -1.15rem;
  color: var(--forest);
}

/* Sections */
.section { padding: clamp(3rem, 8vw, 5.2rem) 0; }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head h2,
.israel-copy h2,
.contact-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  color: var(--forest-deep);
}
.lede { margin: 0; color: #3a4338; }

.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}
.quote-card {
  background: var(--forest);
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border-radius: 2px;
  position: relative;
}
.quote-card p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  margin: 0 0 1rem;
  color: var(--white);
}
.quote-card footer {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.mission p { margin: 0 0 1rem; }
.ask {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-left: 3px solid var(--lime-mid);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--forest);
}

/* Services */
.services { background: var(--white); }
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
}
.service-list li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.service-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--lime-mid);
  flex-shrink: 0;
  transform: translateY(-0.08rem);
}
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.feature {
  background: var(--cream);
  border: 1px solid var(--line);
}
.feature img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.feature .body { padding: 1.1rem 1.15rem 1.3rem; }
.feature h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 0 0 0.4rem;
  color: var(--forest-deep);
}
.feature p { margin: 0; font-size: 0.95rem; color: #3a4338; }

/* Israel strip */
.israel {
  background: var(--ink);
  color: var(--sage);
}
.israel-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.2rem;
  align-items: center;
}
.israel-copy h2 { color: var(--white); }
.israel-copy p { margin: 0 0 1rem; }
.israel-copy .years {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  color: var(--lime);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.texture {
  min-height: 280px;
  background:
    linear-gradient(rgba(19,24,18,0.25), rgba(19,24,18,0.35)),
    url("grass.jpg") center/cover no-repeat;
  border: 1px solid rgba(201,221,114,0.25);
}

/* Testimonials */
.words { background: var(--paper); }
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.review {
  background: var(--white);
  padding: 1.3rem 1.25rem 1.4rem;
  border-top: 4px solid var(--lime-mid);
  box-shadow: 0 1px 0 var(--line);
}
.stars {
  color: var(--forest);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin: 0 0 0.7rem;
}
.review blockquote {
  margin: 0 0 0.9rem;
  padding: 0;
  font-size: 0.98rem;
}
.review blockquote p { margin: 0; }
.review .reply {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: #3a4338;
}
.review .reply strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.25rem;
}
.note {
  margin: 1.4rem 0 0;
  font-size: 0.82rem;
  color: #5a6358;
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, rgba(19,24,18,0.72), rgba(19,24,18,0.82)),
    url("grass.jpg") center/cover no-repeat;
  color: var(--white);
}
.contact-copy { max-width: 36rem; }
.contact-copy h2 { color: var(--white); }
.contact-copy p { color: var(--sage); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.5rem;
}
.contact-list li { margin: 0 0 0.85rem; }
.contact-list a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
}
.contact-list a:hover { color: var(--lime-pale); }
.contact-list span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--sage);
  padding: 1.6rem 0 5.5rem;
  font-size: 0.86rem;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
}
.site-footer strong { color: var(--white); }
.site-footer a { color: var(--lime-pale); text-decoration: none; }

/* Mobile call bar */
.callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: var(--forest);
  border-top: 1px solid rgba(201,221,114,0.3);
}
.callbar a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.4rem;
  color: var(--lime);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.callbar a + a { border-left: 1px solid rgba(201,221,114,0.2); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--forest-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem var(--pad) 1.1rem;
    gap: 0.75rem;
  }
  .site-header.open nav { display: flex; }
  .hero,
  .about-grid,
  .israel-grid,
  .features,
  .reviews,
  .service-list { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-photo { min-height: 320px; max-height: 52vh; }
  .callbar { display: flex; }
  .site-footer { padding-bottom: 5.6rem; }
}

@media (max-width: 520px) {
  .band .wrap { gap: 0.35rem 0; flex-direction: column; }
  .band span + span::before { display: none; }
  .hero-copy h1 { font-size: 2.05rem; }
  .feature img { height: 180px; }
}
